- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
I have an array with a couple of webpages that need to be sent some information. I have a thread function that gets the link in the parameter and visits that page. I would dont want my application to wait for the page to load each time. So, would it … | |
I just built a new computer and I am trying to keep it as "clean" as possible. I have the purchaised version of VisualStudio 2008 but I dont know wether I should install that, or the latest express version? | |
This php code: <?php $video_id = 'k3VevYjjwQk'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'http://gdata.youtube.com/feeds/api/videos/'.$video_id); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($ch); curl_close($ch); if ($response) { $xml = new SimpleXMLElement($response); $title = (string) $xml->statistics->attributes()->viewCount; echo $title; } else { // Error handling. } ?> returns: Warning: main(): Node no longer … | |
Hello, I currently am running a gameing server and found some php code to send RCON commands to my game server. I am completly new to PHP, but not new to code. I would appreceate if someone could fix these 2 lines of code. On my XAMPP server I have … | |
Hello, I would like to know if it's possible to get the webpage that is being loaded or currently being shown, edit it, then show the edited webpage. | |
Ever scince I saved my project yesterday, when I try to debug my application I get this: > An error occurred creating the form. See Exception.InnerException for details. The error is: Value '0' is not a valid value for Interval. Interval must be greater than 0. > Parameter name: Interval … | |
Hello... I've been a VB.NET developer for quite some time, but I decided to start making games. I bought a book called "Begginig C# game development" by Ron Penton... I've read the first half of the book that's about how C# works and stuf, but in the second half we … | |
Hello... I'm working on an application that contains a "BackgroundWorker", the "BackgroundWorker" worked fine but after I started to change some stuff it gives me an error ("Exception has been thrown by the target of an invocation.")... I used a breakpoint to see where it happens, the exception gets thrown … | |
Hello... I'm working on a program that gets some info about a certain web page. But one of the features is it needs to find all the links to other webpages on THE SAME site (I think its called an internal link... not sure). I already figured out how to … | |
hello, im working on a file transfer program but a cant figure out how to make the main function work, i have spent hours on Google trying to find a solution... but i cant. Now, as you probably have guessed: the main function is to transfer files over the internet, … | |
I've been searching for a long time for a way to make an iphone app... but I do have some limitations... I can't buy anything (free versions of stuff wil work fine for me)... I'm NEVER gonna get a Mac. I'm an advanced vb.net programmer and I was wondering if … | |
Hello, im working on a project that works with an access database but i dont know how to edit an existing record... here is the code that i use for reading the database: [CODE]Public Function ask() Dim dt As New DataTable Dim ds As New DataSet ds.Tables.Add(dt) con.Open() Dim da … | |
Re: this is the right way to do it: [CODE]System.Windows.Forms.SendKeys.Send("Your Text Here!")[/CODE] | |
Re: its not really possible with a vb.net form application 'cause anyone could just Alt+F4 out of it or Ctrl+Alt+Delete | |
hello I'm NOT new to vb.net but i have never used a UserControl in the following manner: In need to make a UserControll that can be put in a list of them depending on how many the user chooses and then if there are more than 4 to have a … | |
Hello, i was wondering how would i make a search kind of thing, for example if string1 contains all the words in string2 words. like a search(not just if string1 contains string 2). it should work something like this: If string1 is "an apple" and if string2 is "djsjfsfg apple … | |
Re: umm... I would try setting the target processor higher | |
Re: Try this: [code] dim SeriesNumber_in as string dim SeriesNumber_out as int dim mi as int SeriesNumber_in="Put SeriesNumber Here" mi=SeriesNumber_in.lenght if mi = 1 then SeriesNumber_out = 0 + mi End If [/code] SeriesNumber_out should give you the answer, for example if you input a 2 it will give you a … | |
Hello, I'm currently working on an advanced 4x4 multilayer tic tac toe(will include servers, and accounts with levels and xp). Now the problem i have is that i have a image (.png) of a piece(representing X or O) and I want the button that you click to place your X … |