hello, i want to apply soap to post a form of customer details using php.could you please help me how do i start to do it..(the steps that i need to apply)thanks..
Hello
I have a problem with "CFDataRef.
I get the "data" field from a "kCFSocketDataCallBack.
"data" should correspond to a string received on the socket.
How do I convert, for example, in a NSString so I can put my text in a textbox??
Thank you very much
static void
AcceptDataCallback(CFSocketRef s,
CFSocketCallBackType type, CFDataRef
address, const void *data, void *info)
{
//my code for the textBox
}
Hello, In MS SQL Server is there a way to detect whether a database has had its isolation level set via the T-SQL command ALTER DATABASE <database> SET READ_COMMITTED_SNAPSHOT ON;
I cannot find a simple way to detect this in either T-SQL or via the Management Studio's GUI.
TIA
Hello Guys,
I want to implement registration module in my android application.
Can anyone please let me know the procedure.
I mean, how can I use HttpRequestHandlerRegistry, SQLite connectivity etc
Thanks in advance.
Regards,
serenity.
Hello,
this is actually an problem question from project euler site
http://projecteuler.net/index.php?section=problems&id=3
Anyway I'm not out after the solution, but I probably guess you will know what my approach is. To my question now, how do I handle numbers exceeding unsigned int?
Is there a mathematical approach for this, if so where can I read about it?
hello !
languages table(languagename,languagecode(pk),part);
parts table(subjectype,part(pk));
I want to access only perticular subject type into drop downs...
How can i do this.
Hello!
I have a problem that I want to insert and delete some chars in the middle of a file. fopen() and fdopen() just allow to append at the end.
Is there any simple method or existing library that allow these actions? Thanks in advance.
Hello, Im searching for ideas to solve the following problem:
I'm loading an URL (any for that matter) into an iFrame, and then block (server side) all image tags, o object tags before sending the page to the client.
--
What I was thinking to do is: fetching the URL, and then manipulating the fetched content using a Java library (any recomendation on that matter?). And after that, send the modify content to que client.
Would that be the best approach to solve this problem? suggestions are wellcome :)
Hello,
R offers max and min, but I do not see a really fast way to find the another value in the order apart from sorting the whole vector and than picking value x from this vector.
Is there a faster way to get the second highest value (e.g.)?
Thanks
Hello people, this is my first question, so i do not know if i am doing it ok...
I would like to know what is the meaning of ".foo{}"
It is placed at the beggining of a css stylesheet i have been modifying.
Regards.
tomano
Hello all. I am a newbie to PHP and I've gotten my first project, but I don't have any designer with me. How can I manage the project without a designer? Please help.....
Hello all
im to find good and affective way to parse xml data structure that different API calls are returning
the problem is that each time i need different data and each time im getting different xml structure
now what is the best way to use the SAX approach or The DOM approach and how does QT 4.6
recommends to implement such scenario ?
Thanks
Hello,
I am just wondering would it be better to do this:
if((fd = open(filename, O_RDWR)) == -1)
{
fprintf(stderr, "open [ %s ]\n", strerror(errno));
return 1;
}
or this
fd = open(filename, O_RDWR);
if(fd == -1)
{
fprintf(stderr, "open [ %s ]\n", strerror(errno));
return 1;
}
Many thanks for any suggestions,
Hello
Can anybody suggest some good resource/book on Database high availability techniques?
Moreover, High-availability of system software like Intrusion Prevention system or Web servers.
I am considering high-availability is global term which covers clustring, cloud computing, replication, replica management, distributed synchronization for cluster.
Thanks in advance!
Hello, I would like to create a new dataset where the following for conditions are all met.
rowSums(is.na(UNCA[,11:23]))<12
rowSums(is.na(UNCA[,27:39]))<12
rowSums(is.na(UNCA[,40:52]))<12
rowSums(is.na(UNCA[,53:65]))<12
Thanks!
Hello,
nowadays I have this piece of code:
#import "C:\Users\Public\SoundLog\DLLs\ForPython\SoundLogDLL.tlb" named_guids
but I want to substitute the C:\Users\Public part by the %PUBLIC% environment variable.
How can I do this ?
In PHP there are different short tags like <? ................... ?>, <?=$hello;?>.
But I wanted to know, if they should be avoided as much as possible? and Why?
Hello,
when we connect a machine to AD, user will be able to log into the machine with their AD user-name and password, at home they can do that ( when they are not on the work network) which fine and good
we need to have a program Auto-start when the user login BUT only when they are at work and in our network!
how can I achieve that? (I can build a checking program in c#)
but not sure where to start!
cheers
Hello,
I'd like to know if the executing thread is the one that created a given control instance (to prevent cross-thread if it's not).
Is that possible ?
Thx.
Hello!
I want to automate service myshows.ru. People on it must manually put information about movies that watched.
I want to write program on c++, that get titles of movies in video players and put it to account on service.
What libraries i can use for this work?
P.S Sorry for my english
Hello,
I have a Win7 PC in use as part of an experiment control system. The experiment in question uses 4 windows simultaneously, and I would like to find away to open, position and size these 4 windows with a script.
The script would run at start up, so that the newly booted PC presents the user with the four windows as default.
Obviously I can use a batch file in the startup folder to open windows and run applications, but is there a way to specify the layout of these windows?
Many thanks
Si
hello ,
I'm a little bit confused about it .
it seems that it is integrated with Google web kit tools to build Google web apps .
but can i use to build a Gui for standard java app , (like netbeans) ??
i know it sounds silly but i spend a lot of time to know if is it possible or not but i couldn't know.
notice that i am a mac user , ( WindowBuilder on mac seems not fully supported ) .
thanks in advance .
Hello,
I have a yes no classification problem, and false positive is worse than false negative. Is there a way how to implement this fact into neural network especially in Matlabs Neural Network Toolbox?
Thanks