Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #3K
~12.4K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

10 Posted Topics

Member Avatar for KenSquare

I worked on a program a few years ago that takes data from a series of text files and loads an Access database. I added to the code from a program started by someone else, so I did not write the imports and declarations. They used an ADODB.recordset, addnew and …

Member Avatar for KenSquare
0
301
Member Avatar for sam.escott4

Hmmm... I ran your code and had no problem! I get 3.4225. Are you using a font that might not show the decimal or it is too small to see? Try putting a msgbox to test the value after the calculation: `MsgBox(height & " " & heightSquared)`

Member Avatar for KenSquare
0
368
Member Avatar for أبو_1

It looks like you are adding the record *before* you check the count. Move the update into an Else clause of your If...Then statement and it will only occur if the record does not exist. I think it should look like: Dim sure As String = " select * from …

Member Avatar for KenSquare
0
718
Member Avatar for Mafiamanandre

You can use the Tag property of the textboxes to specify that they are to be part of the sum and then loop through the controls. I used a button, but the same thing will work by handeling the textchange. Also, I did one column, but if I used 2 …

Member Avatar for Reverend Jim
0
957
Member Avatar for saintrenz

Here is an example of a way to create a countdown timer. You should be able to use your existing timer. Public Class Form1 Dim endTime As Date Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim span As New TimeSpan(0, 300, 0) endTime = Now() …

Member Avatar for KenSquare
0
1K
Member Avatar for Ahmed.C

Try this from a form event: `lblYourLable.Text = Microsoft.VisualBasic.Mid(lblYourlable.Text, 11, 2)` The lable will change to the 2 characters starting with the 11th character. Good Luck!

Member Avatar for KenSquare
0
103
Member Avatar for KenSquare

I am an amateur programmer that helps build some solutions for my company. I have an application that I did not originally create, but I have done a lot of modification. I think it was originally built VB 2005 and converted to VB 2010 where I have done most of …

Member Avatar for Ancient Dragon
0
626
Member Avatar for smellon

I cannot help with specific code as I use VB.Net, not 4/5/6, but I would create an array of the Hangman word by looping through the word, using "Mid" to isolate each letter of the word and assign each letter to the array. Then I would put these individual letters …

Member Avatar for KenSquare
0
219
Member Avatar for mattwagner

I think you are close too. [CODE]SQLstr = "INSERT INTO Users (Username, Password) VALUES (" & txtUsername.Text & ", " & txtPassword.text & ")"[/CODE] Also, try to get the exception to appear in your message box - not just the word error.

Member Avatar for adam_k
0
7K
Member Avatar for NetJunkie

My first program was in the mid-1970's. High school had a Wang computer. Cassette tape for storage! I was not allowed to take the only programming class offered because my math was not strong enough, but I would go into the computer lab and play. I learned to write some …

Member Avatar for Reverend Jim
0
969

The End.