Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
57% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
2 Commented Posts
0 Endorsements
Ranked #4K
Member Avatar for AndyPants

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 …

Member Avatar for Begginnerdev
0
170
Member Avatar for AndyPants

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?

Member Avatar for Ancient Dragon
0
111
Member Avatar for AndyPants

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 …

Member Avatar for LastMitch
0
83
Member Avatar for AndyPants

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 …

Member Avatar for diafol
0
180
Member Avatar for AndyPants

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.

Member Avatar for M.Waqas Aslam
0
132
Member Avatar for AndyPants

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 …

Member Avatar for GeekByChoiCe
0
662
Member Avatar for AndyPants

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 …

Member Avatar for Revan1985
0
185
Member Avatar for AndyPants

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 …

Member Avatar for AndyPants
0
1K
Member Avatar for AndyPants

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 …

Member Avatar for gusano79
0
379
Member Avatar for AndyPants

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, …

Member Avatar for GeekByChoiCe
0
2K
Member Avatar for AndyPants

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 …

Member Avatar for AndyPants
0
153
Member Avatar for AndyPants

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 …

Member Avatar for AndyPants
0
177
Member Avatar for crankyslap

I am using the following to send a string to the application on the foreground. But it's no good, as it for some reason only accepts numbers, and letters in uppercase. But I also need to send letters in lowercase, and slashes and backslashes etc. Can anyone help me achieve …

Member Avatar for crankyslap
0
1K
Member Avatar for markdean.expres

Guys I just want to inquire if it's possible to create a program that can lock not only the application but the whole system(PC)? What I want is that, if my application wasn't used within a specified time frame, it will automatically o\lock the whole computer and it can only …

Member Avatar for NetJunkie
0
127
Member Avatar for AndyPants

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 …

Member Avatar for AndyPants
0
179
Member Avatar for AndyPants

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 …

Member Avatar for AndyPants
0
450
Member Avatar for kheijhei

can someone help me connecting ms access 2010 to visual basic 2008, this is the error of my program every time I run it "The 'Microsoft.ACE.Oledb.12.0' provider is not registered on the local machine." here is my code for the provider Imports System Imports System.Data Imports System.Data.OleDb Public Class Form1 …

Member Avatar for AndyPants
0
213
Member Avatar for acepeda

Hey guys, Im having a little problem with adding textbox.Im generating unique key with OrderNumber+ProductId+Series. OrderNumber:18501 ProductId:2100 SeriesNumber:01 Series starts at "01" and gets added one everytime I hit button1,so next time I press button1,it will be "02".When I add them up this is the result I get: Result:18501-2100-1 But …

Member Avatar for Unhnd_Exception
0
115
Member Avatar for AndyPants

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 …

Member Avatar for AndyPants
0
449