id

Getting connected USB info with Delphi on Vista

Hello, How can I get 'connected usb info'(device instance id, driver key name ..) from Registry in Vista or Windows 7 by using delphi? Where is this information in Windows Registry? I have a code it's working on XP but not in Vista.(code: http://www.delphipraxis.net/post991546.html) Why the code is not working on Vista? I'm really stack...

get current focused window id using objective c

hi developers, how can i get current focused window id using objective c, the return value should be an int, help is highly appreciated! I just need to get the following line working CGImageRef windowImage = CGWindowListCreateImage(CGRectNull, kCGWindowListOptionIncludingWindow, winNum, kCGWindowImageBoundsIgnoreFraming); but no matte...

add id to li a using jquery

Hi all, I'm looking for something that will allow me to add an id tag to the 9th li a tag in my list.. I'm not even sure if it's possible? Here's the code: <ul id="p7menubar"> <li><a href="#" class="trigger">Home</a></li> <li><a href="#" class="trigger">About Us</a></li> <li><a href="#" class="trigger">Collections</a></li> <l...

Grails: JSONP callback without id and class in JSON file

Hi, I am working on a REST based interface where people get a json file. The client needs to access the file from another Domain. I use jsonp which works so far. My problem is the rendering in Grails. At the moment I use the 'as JSON' to marshalling the object: render "${params.jsoncallback}(${user as JSON})" The Json file getting to...

asp.net mvc id not being pulled from route?

I'm not doing any fancy route patterns yet, just the basic controller, action, id style. However, my actions never seem to be passed the id. When I stick a breakpoint in any one of my actions, the value of the id parameter is null. What gives? Global.asax.cs: public class MvcApplication : System.Web.HttpApplication { public static...

Android: View.setID(int id) programmatically - how to avoid ID conflicts?

I'm adding TextViews programmatically in a for-loop and add them to an ArrayList. How do I use TextView.setId(int id)? What Integer ID do I come up with so it doesn't conflict with other IDs? ...

NSXMLParser ignores element named <id>

Hi there, I'm using Wordpress's XML-RPC framework in my project. Now I have a situation where in the XML response there is a tag named which contains user data and by the time the response has been parsed and returned as some array format, that tag and it's value are gone. I have traced this down to NSXMLParser's parse method. Anyone ...

JavaScript innerchild?

I have the following example HTML: <div id="target"> <div id="targetText"></div> </div> and I'm using the following code to get the inner div: $('#targetText'); instead, I was wondering if I could drop the id of the inner element, and somehow match the #target's child? I have like hundreds of inner children, so, it does not make s...

php session help

Ok so my main page has a session. I am using the session id to query the database. Now when I post to a page I have session_start() at the top but when I echo the session_id() on the main page and on the page that was posted to they are 2 different values. Why is it changing the session_id()? Is there a way to make it keep the original...

remove last character in id attribute

I am trying to remove the last character from a div id using jquery. Currently I have; <div id="foo/"></div> But I need ; <div id="foo"></div> The character is always a '/' and is generated automatically (re:annoyingly) by the cms I am using, having the '/' there is messing up some javascript linking I am trying to do. Any...

Use Live Client ID SDK in ASP.NET application to use OfficeLive webservices.

Dears I want to connect to an officelive webservice from my custom external ASP.NET Application and I found that it would be possible to use the Live ID Client SDK to authenticate Windows based to use Office Live webservices. In fact, I tried to use the Live ID Client SDK in my webapplication but I ran into a threading problem while I ...

SQL: Auto Increment question

I have a table with an auto_increment field and sometimes rows get deleted so auto_increment leaves gaps. Is there any way to avoid this or at the very least write an sql query that a) alters the auto_increment value to be the max(current value) + 1 and b) return the new auto_increment value? I know how to write part a and b but can I ...

Why use (id) in a method signature when (NSObject *) would be more precise?

Whenever I implement a method in my own code that can accept or return objects of more than one class, I always try to use the most specific superclass available. For example, if I were going to implement a method that might return an NSArray * or an NSDictionary * depending on its input, I would give that method a return type of NSObje...

How to count same Id in a column in a table and based on count perform concatenation.

I have a table in below format ID Name 1 Amit 2 Mohit 2 Nahar My reqiurement is to get a query that will update this table to below format ID Name 1 Amit 2 Mohit OR NAHAR Is there any query in SQL that can solve this purpose? ...

html helper syntax ?

hello all, please tell me how to give the id to the html textbox my html tag looks like this <%=Html.TextBox("username")%> please help me Thanks Ritz ...

What is the best way to implement strong security standards for $_GET id's?

I am seeking the strongest security measure for people changing the IDs in the URL for comments, blogs, inbox etc... Any suggestions? ...

Dynamics AX 2009 - Duplicate IDs

We are in the process of merging projects from different AX Servers into source control on the same AX server. However, a few object IDs are common between projects, so Dynamics throws an error when synchronizing: e.g. "BaseEnum ABC_123 can not be imported because XYZ_546 already has ID 30001" What is the best/correct way to change ...

Migrating Rails app to Grails - Can I easily use an int for the ID field of all the domain classes?

If so how do I do it? I tried just using a declaration id type: 'int' but it got an error when calling Find on the class. ...

Caller ID in Cocoa

I can't believe this has proven sooo ellusive to find even a single example of ANYWHERE (I have googled the CRAP out of this!) but can anyone show me how to do basic Caller ID detection in a Mac app? ...preferrably Cocoa but will be willing to go Carbon if I must? Now I'm not looking for a full-on telephony API example although again, ...

jQuery: Get ids from class

Hi, I have a lot of div's and I want to fade this one who is hovered. How i can get the id of the hovered div? Is there anyway to do that except calling function(and sendind the id) with "onmouseover"? Thanks! ...