Forum: VB.NET 4 Days Ago |
| Replies: 5 Views: 293 OKAY GUYS
i did some reading and got some help and listened to ya'll and finally got this done.
the below code is what worked for me. i hope it helps anyone who may be in my same position.
... |
Forum: VB.NET 14 Days Ago |
| Replies: 5 Views: 293 okay adatapost,
i chose option #2 that you showed me.
this is what i have now... VS isn't fussing with the coding anymore but it isn't sending records to the db.
am i placing and/or... |
Forum: VB.NET 14 Days Ago |
| Replies: 5 Views: 293 with these queries... am i replacing my "myCommand" line, or am i removing my "myCommand" line and placing this code you showed me somewhere else? |
Forum: VB.NET 14 Days Ago |
| Replies: 5 Views: 293 hey all,
I'm using a form to throw info straight into a database. i know it isn't the best way but i'm new and all other implementations have confused me (i've been reading and watching tutorials... |
Forum: VB.NET Sep 30th, 2009 |
| Replies: 4 Views: 292 |
Forum: VB.NET Sep 30th, 2009 |
| Replies: 4 Views: 292 okay, sounds cool.
what i'm working with now is
<Serializable()> _
Public Class Course
Implements System.ComponentModel.INotifyPropertyChanged
Private mStringRep As String =... |
Forum: VB.NET Sep 30th, 2009 |
| Replies: 4 Views: 292 hey all,
i'm working on a code that i want to start creating new classes with but i want to know if there's a more direct way to send the variables used in the form to a new class for storage.
... |
Forum: VB.NET Sep 6th, 2009 |
| Replies: 4 Views: 339 thanx babbu and geek.
i got that working great.
now, with the new form that loads... how do i edit it? you know, add text boxes, labels buttons, etc.?
any suggestions? |
Forum: VB.NET Sep 6th, 2009 |
| Replies: 4 Views: 339 hey all,
I have a form where a user selects from a couple radio buttons. once THAT button is selected i want a new form to load where the user has to fill out personal info and submit.
what's... |
Forum: VB.NET Aug 27th, 2009 |
| Replies: 3 Views: 279 thanx guys for the responses. i guess i'll just keep my eyes open.
thanx |
Forum: VB.NET Aug 26th, 2009 |
| Replies: 3 Views: 279 Yeah... the semester is on! lol
but anyway, i'm trying to find a solution manual for my text and wonder where you guys get 'em? i'm a decent googler and haven't came up on anything yet.
my... |
Forum: VB.NET May 5th, 2008 |
| Replies: 8 Views: 990 well i changed this:
If textlength2 <= 6 Then
length(2) = "short"
ElseIf textlength2 > 6 And textlength <= 10 Then
length(2) = "standard"
ElseIf... |
Forum: VB.NET May 5th, 2008 |
| Replies: 8 Views: 990 finally got it!
this works. don't ask me what made this code any better than what was originally down but whatever
textlength = namepart(0).Length
If textlength <= 6 Then
... |
Forum: VB.NET May 5th, 2008 |
| Replies: 8 Views: 990 i know this seems like the dumbest thing on the planet but this works:
If textlength2 > 10 Then
length(2) = "long"
ElseIf textlength2 > 6 And textlength <= 10 Then... |
Forum: VB.NET May 5th, 2008 |
| Replies: 8 Views: 990 thanx. now it's weird b/c it won't work if the length is standard. like if the length is standard, nothing shows in the blank i've set for it |
Forum: VB.NET May 5th, 2008 |
| Replies: 8 Views: 990 great news! i've figured it all down to 1 thing... the last word is not displaying the length correctly... any help, my logic's gotta be wrong at the last piece of the message in the label
... |
Forum: VB.NET May 5th, 2008 |
| Replies: 8 Views: 990 hey guys. i've got this code where i've gotta separate a full name and tell the user which is which (meaning "this name is first, this name is middle, and this is your last name" type stuff). Well... |
Forum: VB.NET May 5th, 2008 |
| Replies: 2 Views: 1,006 hey all. the program is for Chapter 8 Lesson C in the Visual Basic 2005
below is code where i have to create a program that allows the user to enter a 4-digit number that identifies whether the... |
Forum: VB.NET May 4th, 2008 |
| Replies: 4 Views: 1,742 cool, working except with the word "ant" to "ant-way" |
Forum: VB.NET May 4th, 2008 |
| Replies: 4 Views: 1,742 okay, i've got the first part working but I've still got problems with the second part outlining words that start with cons.
here's the new code.
Private Sub xTranslateButton_Click(ByVal... |
Forum: VB.NET May 4th, 2008 |
| Replies: 4 Views: 1,742 Hey all,
I've got this program where I have to translate a word from English to Pig Latin. I'm sorta on the brink but I'm missing something.
the test words are "ant" and "chair" but they should... |
Forum: VB.NET Apr 19th, 2008 |
| Replies: 4 Views: 627 Actually i don't understand your program. please explain more detail what you want to do.[/QUOTE]
well i'll take the statement straight from the book.
"In this exercise, you create an... |
Forum: VB.NET Apr 17th, 2008 |
| Replies: 4 Views: 627 not really an error but just nothing. the application locks up and then i have to restart it |
Forum: VB.NET Apr 16th, 2008 |
| Replies: 4 Views: 627 Hey all, got a syntax and run prob with a program I'm working with that takes in rainfall amounts and then shows the total rainfall amount and then gives an average of. I then end up displaying those... |
Forum: VB.NET Apr 14th, 2008 |
| Replies: 3 Views: 644 okay...just solved this myself...
lol, this forum is very therapeutic haha.
Option Explicit On
Option Strict On
Public Class MainForm
'show the random number |
Forum: VB.NET Apr 14th, 2008 |
| Replies: 3 Views: 644 okay,
forget the above. I got it working with this except:
Private Sub xCalcButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles xCalcButton.Click
'show the... |
Forum: VB.NET Apr 14th, 2008 |
| Replies: 3 Views: 644 hey all,
i've got a new issue with a program that allows the user to enter a number and then that number is checked against a random number that the PC chooses. Here's the code:
Private... |