Hi Guys
I what know gcc compile time. gcc have any command or option for calculate compile time?
[example] I have file hello.c and then compile.I what know spent time to compile
I know this is somewhat of a newb question but I am running into a deadline and 3 days of Drupal experience will just not cut it...
$form['gender'] = array('#type' = 'select', '#title' = t('Gender: *'), '#options' = array(t('Male'), t('Female')), '#required' = TRUE, '#weight' = 2, );
How do I assign values to select values ? For example Male - 'm' and Female- 'f'. Also how do I give the select box a default caption "please select gender..."
Thanks guys
Hey guys, was wondering how do i use the NSXML parser.
so lets say given i have a simple xml file with elements like
1/1/1000
14:15:16
How could i use the NSXMLParser to parse the XML File(Its on locally btw, desktop), check through each element and store each of them in an array either to be displayed/used later?
I was looking through some documentation about it and i absolutely have no idea on how to use the parser
i know that there are 3 methods(or more ,please correct me if im wrong) that can be overridden
-..etc didStartElement
-..etc didEndElement
-..etc foundCharacters
I'm looking for a good 3rd party host for Team Foundation Server. Have any of you had good or bad experiences in the past?
Will be working on a small .NET project with several other guys in different locations.
Are there any performance problems or any other "gotchas" with 3rd party hosting?
Hi I'm a PHP programmer and I'm wondering how do I make a simple utility that blacks out another PC in a network? What tools/languages would youguys suggest that I use to create this? (obviously not PHP). The platform is Windows XP.
Hi guys
Just wondering how you would go about creating the effect as seen in the following image:
Image
The part i'd like to attempt to recreate is the gradient within the text field itself along with the line border surrounding the text box.
Thanks.
Hey guys,
I have a xml file on my server like the one below :
www.myWebSite.com/myXmlFile.xml
which is used by my iphone application.
In case the address of my xml file changes to
www.myOtherWebsite.com/myXmlFile.xml
How can I make my app to work anyway ? What kind of PHP server-side code do I need to write ? Is NSURLConnection supporting reirections ?
Thanks for any incomings ;)
Gotye.
Hi guys,
I need to know how to pull feeds using SOAP::Lite.
I have something like this now...
my $service = SOAP::Lite
- uri("https://securews.mcvalue.com/rlws/rlws.asmx")
- on_action( sub { join '/', 'http://tempuri.org', 'AllActiveRestaurantHours' })
- proxy("https://securews.mcvalue.com/rlws/rlws.asmx");
my $result = $service-result();
print "\nRESULT===>$result\n";
Any help will be greatly appreciated.
Thanks!
Hey Guys
Im looking for a jquery or ajax file uploader, Im currently using the FancyUploader which worked great until Flash brought out their update making all flash progress bars absolete, now whenever I try to upload large files... it will fill the progress bar to 100% in a matter of seconds even though the actual upload finished minutes after. So im now looking for a new uploading script that DOESNT require flash but can still display the progress.
Any suggestions?
Hi guys,
I think there should a control like databound list control of vb6 in vb.net windows form application too which can show up data from database.
I have confused and staring my database applications in vb.net....
so can you suggest which control can be used?
Hello there,
Do youguys know if there is an application that enables me to use GET, PUT, DELETE HTTP methods in a simple way?
I want to run it against Google's BigTable.
Thanks a lot.
Hi guys,
I have a problem with jqGrid when I'm using the options specified. Seems that nothing happens when I click 'Find'.
From jqGrid documentation I understand that sorting and searching is done locally when using loadonce option. Sorting is fine but search not, should it work locally or just server side, if so how to do that?
Thanks
Ovidiu
Hi guys,
I have noticed that in most google maps you can not drag the marker icon into your address bar and see or download the icon .png file itself. Rather then you hover your cursor over the marker, you can see javascript:void(0).
How is that achieved? Thanks!
Hi guys:
I got some elements whose style is dynamically modified by a JS. However, I hope one of which would not be modified.
How could I specify its style, which is static, not to be overriden anyway. Thanks.
Hai guys,
I ve developed a salary calculating software using vb.net.... Its working fine and i ve converted it to an exe file... My drawback is it can be copied and pasted in another system very easily... I want to generate a key for the exe file and while installing the key should be used and when installation is completed ,the key should not be used again... Is this ya secured one or give me some ideas how it can be done....
Hey guys, is there a way to load XML Data Cross-Domain with JQuery (= client side)?
$.get('http://otherdomain.com/data.xml', function(xml) { }
The above doesn't work - do I have to rely on JSONP, or is there a way to load XML?
Hey guys,
I tried searching the forums on this one, but I wasn't able to find anything on my problem.
To describe my problem, everytime my location changes, it redraws the center maker on the map.... Only catch is that it doesn't delete the previous one. I can get it to delete the previous one when the location is changed, but I have no idea how to pass the original overlay in-between classes.
Also, pastebin here
Thanks in advance,
hwrd
Hi guys,
Is there currently a way to programatically determine from within a Silverlight app the maximum number of concurrent connections that the browser will allow? I know I can do this on the server then pass it as a parameter, but I would like to know if its possible in Silverlight.
This is for all versions of Silverlight including Silverlight 4 RC.
Hello Guys,
I am working some ObservableCollection converting to lembda it will give me error
this is my actual code .
foreach (var item in Query)
{
userDetail.Add(new UserDatail(item.ID,item.Name, item.Address, item.City, item.Pin, item.Phone));
}
and I am try to add as lembda
Query.ToList().ForEach(x => userDetail.Add(x.ID,x.Name,x.Address,x.City,x.Pin,x.Phone));
This will give me error.
Thanks..