Any good VB.Net Code Generators out there?
I was wondering if anyone could suggest a quality VB code generator (free preferably, though if it's worth it, I'd buy one)...
View ArticleTimer for Stock Market Game - Please help me!
For my college computing project, I am making a stock market simulation game. For this, I need to use a timer to progress the game. I have two labels, one which shows the Day( lblDay) and one which...
View ArticleFrom elements not displaying properly
Alright, so I have a form that has a background image within a panel (Panel1) and a panel within that panel (Panel2). There a bunch of labels, textboxes, etc inside Panel 2 and when they are displayed...
View ArticleCalculate the Number of Spaces in a Text Box
I'm trying to write a program to count the number of spaces in a text box. I got it to write the number of characters, but need it to count the number of spaces instead. Private Sub...
View ArticleName Parsing
I am completely stumped on how to even start writing a program that parses a persons first and last name into two different labels. Any ideas? I know I'm supposed to give what I got, but I really have...
View ArticleSquared Sum
Write a program that displays the sum of the squares given the range of integers by the user. This is what I got. The problem is that it won't display anything. Private Sub btnAnswer_Click(sender As...
View Articlecheckbox help
What i'm trying to do is, when i check a checkbox (which are the toppings for my pizza, im making online pizza menu) I want them to show up in a large label next to it. What i produce is when i select...
View ArticleVS 2013 Downloading an http file with no caching
I am downloading an http file from an ftp server of mine. This file holds the version number for my application, and as such is updated when a new version of my application is released to the public....
View ArticleVS 2013 Multiple EnableDesignMode controls??
I am using the ControlDesigner class and want to know how to use .EnableDesignMode for a heap of controls ... For one control per property it works fine... But what if I want a collection of controls,...
View Article50 Textboxes
Hi guy's I am thinking about writing a programme for work. But it will require the user to input about 50 inputs. Do I have to put 50 Textboxes on the form or is there a better way, say like a grid...
View ArticleExcel Connection String
Hi, I developed a .Net Application and on my laptop had Microsoft Excel2003 installed and it worked fine. I have an excel connection as shown; Code: Namespace ExcelConnectionGPRD Public Class...
View ArticleVS 2010 Picking categories from text files
How do I pick a word from this text file such as INSECT and then letting the program choose a word beneath it at random such as CRICKET? "HOUSE" "PORCH" "STAIRS" "KITCHEN" "BATHROOM" "CLOSET" "INSECT"...
View ArticleVB.net Sybase 12 SAadapter commands
This is the code I am using to connect to my sybase database: Code: Dim DefConn As New SAConnection("UID=" + SQLUser + ";PWD=" + SQLPass + ";ENG=" + Database_Txt.Text + ";LINKS=tcpip(host=" +...
View ArticleVS 2012 Copy & Paste through RemoteApp
I'm trying to copy and paste files between RemoteApp by using Code: Dim data As IDataObject = Clipboard.GetDataObject If data.GetDataPresent(DataFormats.FileDrop) Then For Each s As String In...
View ArticleVS 2010 Need help Getting some "Text" or Numbers from a Webpage - My Source...
Hi everyone.. I am trying to get the "Numbers" only showen in the Image Above, from a Webpage and into a Listbox. But I simply cant make it work. :confused: .I tried to use regex but did not really...
View ArticleVS 2010 Reading from My.Settings
By the title it sounds simple, but here are some details: I used this code to write to the settings: Code: For Each A_Word In MainForm.LBoxBadWords.Items...
View ArticleVS 2013 Web Browser and popups stop the msgbox
If this is in the wrong forum then tell me where it should be. I am still a hobbyist and am not a programmer where I work but I am a network administrator and was asked if I could make this KIOSK. I...
View ArticleDataGridView row selection
I'm working on a film manager program. The below code works when I have it in the PictureBox's method (I've moved it out to the DataGridView's code as you can see), so that when I click the PictureBox,...
View Article[RESOLVED] Trouble with tab indexes
Wrapped up my project except cosmetics and I'm finding myself spending hours on the tab indexes. Given I don't understand what I'm seeing but if set the tab order via the tab order view or set the tab...
View ArticleNothing vs ""
Dim MyString as string = "" MyString="X" mystring=replace(mystring,"X","") ' mystring is now equal to "" mystring=replace(mystring,"X","") ' mystring is now equal to nothing ' which breaks if...
View Article