address

How to make a WCF named pipe address equal to a WinApi one?

I noticed that WCF's named pipe address net.pipe://localhost/mynamedpipe and Windows API's \\.\pipe\mynamedpipe don't collide. Why is that? How can I make them point to the same pipe? ...

Valid format for "Address Line 1" in iTunes Contract info

Hello. iTunes connect requires tax contract for Paid Application. I do have one. I've passed the procedure of joining to Apple Developer Program, Apple's accepted my credit card. Now my first app is in status of "pending contract" and when i'm trying to submit my contract request the system displays message: The address entered appears ...

C pointers - Different address

I'm trying to learn about C pointers but I cannot understand somethings... The following code: #include <stdio.h> void foo(int *x, int *y); void foo(int *x, int *y) { printf("x = %p\ny = %p\n", &x, &y); *x = 5; *y = 6; } int main(void) { int a, b; printf("a = %p\nb = %p\n", &a, &b); foo(&a, &b); return 0; ...

Delphi Self-Pointer usage

I need to get pointer to my class instance inside this instance. I can't use "Self" directly, I need store pointer for future usage. I tried next code: type TTest = class(TObject) public class function getClassPointer: Pointer; function getSelfPointer: Pointer; end; class function TTest.getClassPointer: Poin...

Adding new feature in address book in android

Hi is it possible to add new feature in existing address book?? What i am trying to do is i want to add my application shortcut just like there is a shortcut for sms into every contact, whenever user opens any contact he can see my application option there, he taps to it and my application will launch with that contact information is it...

using jQuery address plug in and window.location update without executing address.change twice

I have two events that need to be executed in this order: tabs toggled into/out of view the browser navigating to a hash tag as it would normally (jumping down the page to the anchor) And I need it to work with the back button. I wrote my own function gotoanchor() which accomplishes the first two and because I am navigating to the p...

how to hide broweser address bar using javascript on client side using java script in onload function of body

how to hide broweser address bar using javascript on client side using java script in onload function of body ...

Client to client through firewall

Hello all, A broad question. We have a client application that currently talks to a web service to exchange data between two clients. The first client stores data on the service and other clients poll the service to collect it at some later time. We are looking to change this infrastructure a little in that clients will Connect() to t...

Google maps like auto-complete or auto-suggest API for postal addresses

Hi, I'm part of a project that requires auto-complete or auto-suggest feature for postal addresses (something similar to what google maps has). As the user starts to type in the number and then the street google starts to suggest valid options. I would like to know if there is an api (even commercial) available in the market. Note: I'm...

C# - Outlook 2003: A way to launch address book and select email recipients

My requirement is, From my Win Forms application, I want to launch outlook address book (and/or global address list - exchange server), Choose recipients and then populate a textox with all the email addresses (or) distribution list. Any clues? I searched several forums, but no one addresses this scenario. ...

Why would connect() give EADDRNOTAVAIL?

I have in my application a failure that arose which does not seem to be reproducible. I have a TCP socket connection which failed and the application tried to reconnect it. In the second call to connect() attempting to reconnect, I got an error result with errno == EADDRNOTAVAIL which the man page for connect() says means: "The specifie...

How to create Browse File Button functionality in Android

Hi guys, I have a RadioButton that is when clicked, it will bring to a popup window. Currently, I am planning to make the popup window to contain a browse Button with TextEdit left of it. What it does is, when a user click on browse Button, a window explorer (something like that) will appear and let the user to traverse the phone's pri...

Jquery Address Plugin Post Problem

Hi I am learning to use the Jquery Address plugin, and am using the tutorial over here So here is the html <a href="test1.html" rel="address:/test1">Test 1</a><br /> <a href="test2.html" rel="address:/test2">Test 2</a> Load Area: <br /> <div id="area"></div> And here is the Jquery code function loadURL(url) { $("#area").loa...

Asual Jquery Address plugin - problem on Google chrome

I have recently used the Asual Jquery Address v.1.3 and it workes successfully with Firefox but I found the following problem in the Chrome: it can't fire the ExternalChangeFunction envent and there is no alternative from using this event because document.ready fires again when trying to change the address by this script plugin $.addres...

How can I use Google's Geocoding to normalize addresses without violating the terms of service?

I'm working on a API that will accept addresses in searches. We would like to use Google's geocoding service to normalize the addresses before submitting the search criteria to our search engine. This caught my attention: http://code.google.com/apis/maps/documentation/geocoding/index.html#Limits "Note: the Geocoding API may only be u...

How could I change window's location without reloading and # hack?

At first I thought that hash hack is a requirement, however judging from the recent updates from facebook, I am thinking otherwise. The original hash hack (I am not sure if this is the correct term) is that by changing location.hash, one may save a state in the URL without refreshing the page. That is extensively used by Google's apps, ...

Object address in Ruby

Short version: The default inspect method for a class displays the object's address.* How can I do this in a custom inspect method of my own? *(To be clear, I want the 8-digit hex number you would normally get from inspect. I don't care about the actual memory address. I'm just calling it a memory address because it looks like one. ...

How to check if an address is a business or residential address

Hi all, I have a dataset that contains many addresses (60,000-ish entries). I want to classify these addresses into either residential or business addresses. Does anyone know a good API/Service to get started doing this? -I don't think the google maps geocoder can do this at this time. -Fedex and UPS both seem to have API's but the...

Java recognizing address information and breaking it apart into variables (no regex)

Hello, Does anyone have a recommended pseudo-algorithm for, given a string containing an address: Break apart the address apart into a Street variable, a City variable, a State variable, and a Zip variable The address string may be formatted in a number of different ways. For example, it may be comma separated or it may be separated b...