VS 2010 [RESOLVED] Isn't this how you SAVE settings after you change them?
Code: Private Function RunFolder(FolderToProcess As String) As Boolean Dim rtnStatus As Boolean = False My.Settings.Item("FolderToProcess") = FolderToProcess & "xxx"...
View ArticleCreate a desktop application that acts like a web service?
I would like to create a desktop application that can handle post/get requests, similar to what a web service can do. But it MUST be a .NET desktop application. I am not sure how to go about this? The...
View ArticleOutOfMemoryException
In one of my vb.net application i am getting error while running the application.This error does not come always.So i am not able to reproduce the error also.No exact sequence also to reproduce the...
View ArticleAutoRedraw Form?
This question coincides with a previous question regarding keeping a child form within the boundaries of a Parent Form. I have since figured the latter out but now my issue is when a user hits any edge...
View ArticleProgram running in IE
I saw this software and got me curious and i will like to ask questions I visited a company last Monday and saw that the software they use runs in an Internet Explorer The user just type an IP address...
View Article[RESOLVED] [VB2010] - why the ElseIf is ignored?:(
Code: Module mdlConvertCode Public Function ExtendedSplit(ByVal strInputString As String) As String() Dim i As Integer Dim objRegExp Dim objMatch Dim colMatches...
View Article[VB2010] - how execute a program with ShellExecute()?
heres how i declare the ShellExecute() API function: Code: Private Declare Function ShellExecute Lib "shell32" _ Alias "ShellExecuteA" (ByRef hwnd As Integer, ByVal Operation As String,...
View ArticleMust declare the scalar variable "@tid".
I have a basic SQL table and trying to update records. I am using the following code: Code: Private Sub updaterecord() Dim Query As String Dim con As SqlConnection = New...
View ArticleVS 2010 Read and split strings from a text file
Hello everyone i am making an account follower so i have made a program creates accounts and writes the login details in a textfile in this format loginid:pass so i need help in reading the text file...
View ArticleParsing Commands from 3rd party dlls/classes....
So heres basically what I would like to do.... I will have a rich textbox that will allow people to write in commands on each line...so for example Code: Browse [url] [time] Delay [5] Click...
View ArticleVS 2010 Copy text from webpage in (unseen) web browser - help please?
I'm looking to load a simple Google search query into a web browser that is not displayed on screen, and then get the text of the page (similar to Ctrl-A, Ctrl-C from the keyboard) to work with. With...
View ArticleHow to begin coding a brain for a similar to 8-puzzle game to calculate least...
I managed to solve this problem with a brute force with RNG it takes around 4-5 seconds to find the best solution even though the working grid is a 3x3. I want to know how do I make it possible to...
View ArticleYou Wrote It! Why Can't You Read It? (Xml Serialization)
What started as a gentle little stroll in paths I don't usually walk has me entangled in briars! I cannot for the life of me work out why ... vb.net Code: Public Class Form1 Dim dt As New...
View ArticleVS 2012 VB.NET WebBrowser Control Problem (Object reference not set to an...
Hello all, I'm working on a project where I have a WebBrowser control which needs to have a custom user-agent set, then go to Google and fill out the search box, click the search button, then click a...
View ArticleVS 2010 How to make subtitles
Hi, I am using a windows media player control in my program and am trying to show subtitles with a transparent background over it. I tried creating a transparent form with a transparency key and...
View ArticleDns.GetHostEntry Error: No such host is known.
Dim ip As Net.IPHostEntry = Dns.GetHostEntry("http://www.example.com") Throwing run time error "No such host is known." Pinging via cmd.exe is successful and shows the servers IP. :(
View ArticleIncorrect tab order in input window
I've ran into a quirky issue and I can't seem to find a solution. Working on an textbook assignment. It's basically done, but I got one bug. Basically, I have popup window where the user enter's a...
View ArticleAdding blank lines to http header?
Hi everyone, have a unique issue I believe someone on here could help me on. I am using the HTTP POST API of a service, which is intended for programmers to utilize. However, the way their server...
View ArticleVS 2012 Updating Access databse through visual basic
I have connected my visual basic application with an access database. Showing, editing, adding of the data in a datagirdview work just fine. When I try to save the data I just edited in the database it...
View ArticleVS 2008 Return a exception
Hi, basically what i want to do is to return to the code that is in "Catch ex As Exception" when some string has for example value of 1 and etc... So i have this code (iam making a game, theres a file...
View Article