Search the web
Sign In
New User? Sign Up
helpwithvb · A group for those who need help with Visual Basic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 17405 - 17434 of 22583   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
17405
Hello All, I'm unable to remember the syntax in the Default Value for today's date, when creating a table in Design View in Access. I've tried: Date (Date) and...
geoff Smith
sabin3647
Offline Send Email
Nov 1, 2005
2:26 pm
17406
It can be Now() which will post the date AND time. it can also be Date() which will post just the date (although I don't know if it IS the current date- I'm...
duckygroups@...
fuzzduckie
Offline Send Email
Nov 1, 2005
6:59 pm
17407
If you don;t mind getting the current date and TIME, then it's =Date() If someone recalls how to set ONLY the Date part in this field (without the fractional...
Neiger, Bruce D
thezorch
Offline Send Email
Nov 1, 2005
10:23 pm
17408
Oh... Right Date is just the date. and Now() is all of it. Memory... my computer has a lot of it. Why won't it share? ________________________________ From:...
Neiger, Bruce D
thezorch
Offline Send Email
Nov 1, 2005
10:31 pm
17409
________________________________ From: helpwithvb@yahoogroups.com [mailto:helpwithvb@yahoogroups.com] On Behalf Of Steve Manser Sent: Monday, October 31, 2005...
Neiger, Bruce D
thezorch
Offline Send Email
Nov 1, 2005
10:44 pm
17410
hehehe! I need some of it....its really bad when your mind disappears faster than your mother's and aunt's (who are twins) NC Chris ... From: Neiger, Bruce D ...
duckygroups@...
fuzzduckie
Offline Send Email
Nov 2, 2005
1:24 am
17411
... integers." Now, I know I'm not the sharpest of the knives in the drawer, and I don't really know that much about Random Numbers, but it does seem that...
Steve Manser
tileguy2929
Offline Send Email
Nov 2, 2005
5:08 am
17412
Public Sub Timer1_Timer() txtDate.Text = Format(Now, "M/D/YYYY") gvNOW = txtDate.Text txtTime.Text = Format(Now, "HH:mm") End Sub ... From: Neiger, Bruce D To:...
Dwight Norris
choroid_45
Offline Send Email
Nov 2, 2005
1:36 pm
17413
Hello All, Thank you, all those of you who have responded to my question. The help has been grately appreciated. Smiling all round. Geoff...
geoff Smith
sabin3647
Offline Send Email
Nov 2, 2005
2:22 pm
17414
Steve, With all due respect, and that is many heaping tablespoons of respect, I do believe you are missing the boat. Here's a simple viewpoint. With either of...
Neiger, Bruce D
thezorch
Offline Send Email
Nov 2, 2005
4:01 pm
17415
Hello All, I'm attempting to make a choice from a ListBox, using the property - Style: 1 CheckBox to move the multiple selections to a TextBox, but some how, I...
geoff Smith
sabin3647
Offline Send Email
Nov 3, 2005
1:25 pm
17416
Good Morning Geoff, I was going to whip-up a quickie project, but guess what ? A List-Box with the Style Property set to "Check Box" may only be...
Steve Manser
tileguy2929
Offline Send Email
Nov 3, 2005
1:44 pm
17417
... I can get the Item number selected, but not the item name, into the TextBox." To get the selected single line of text into the text box: txtBox.Text =...
Steve Manser
tileguy2929
Offline Send Email
Nov 3, 2005
1:58 pm
17418
Hello Steve, Yes. I can do that, that isn't the problem. It is working with a multiple selection from the listbox and moving the checked items to the TB. ...
geoff Smith
sabin3647
Offline Send Email
Nov 3, 2005
2:10 pm
17419
Geoff, You missed the important part of my e-mail: We are not allowed to do a multi-select on a List Box which has the Check Box Style. We can make our own...
Steve Manser
tileguy2929
Offline Send Email
Nov 3, 2005
2:21 pm
17420
Hello Steve, This looks like a possible solution. Is this a standard ListBox you're using? I admit, I've never bothered with a listbox Item Checked before....
geoff Smith
sabin3647
Offline Send Email
Nov 3, 2005
2:25 pm
17421
hello Steve, Aah! I've got you. The checked listbox doesn't look like the solution. The array of controls is a possible solution, and I can manage that, but I...
geoff Smith
sabin3647
Offline Send Email
Nov 3, 2005
2:44 pm
17422
... I had a solution ? < g > I've forgotten what it was. Using the 'Normal' list box ? I am down on my Bios this week, so I'm taking things slowly. ( I use...
Steve Manser
tileguy2929
Offline Send Email
Nov 3, 2005
3:58 pm
17423
Load the selected listbox items into an array, and you can parse the array and separate each element with vbCrLf (vbNewLine) charaters when you display it into...
Richard
alienwebmaster
Offline Send Email
Nov 3, 2005
9:26 pm
17424
Hi all, Long time reader and lurker with a question. Is there a way in VB.NET to remove a certain number of items from a listbox, starting at the bottom? ...
Larry Goff
larryg5298026
Offline Send Email
Nov 3, 2005
9:51 pm
17425
Hi Geoff, Steve Of course you can :-) If a listbox is checked then it acts as a Multi-select listbox (But with the checks taking the place of the highlighted...
Mike Bouffler
mikebouffler
Offline Send Email
Nov 4, 2005
10:38 am
17426
Hello All, My thanks to Steve, Mike and others for their help. All suggestions have been very welcome and appreciated. I've got my listbox populated, and I've...
geoff Smith
sabin3647
Offline Send Email
Nov 4, 2005
1:21 pm
17427
Hello again, Here is the Save code I've used: ' ========== ========== ========== Public Sub SaveRecord() Dim blnMoveLast As Boolean With...
geoff Smith
sabin3647
Offline Send Email
Nov 4, 2005
1:33 pm
17428
... I can be so stupid sometimes < g > Thanks. Good To Hear From You Mike, Steve ... From: helpwithvb@yahoogroups.com [mailto:helpwithvb@yahoogroups.com] On...
Steve Manser
tileguy2929
Offline Send Email
Nov 4, 2005
1:38 pm
17429
Hi geoff, Don't have much to contribute lately but... I remember having this error a long time ago and not 100% sure but I think I solved it with a combination...
Bryan Schulz
bryan4772002
Offline Send Email
Nov 4, 2005
7:05 pm
17430
Hello Brian, I have actually solved it... I've been stupid. Groan. I have checked the bound DataField and found that I had it matching the wrong field in the...
geoff Smith
sabin3647
Offline Send Email
Nov 4, 2005
7:32 pm
17431
Hello Steve and All, I've been having a look at the VBDateTimePicker program on the Group's File section. May be this is a dumb question, but, I'm wondering if...
geoff Smith
sabin3647
Offline Send Email
Nov 6, 2005
10:44 am
17432
Good Morning Geoff, The Date Time Picker Control is a good way to have your User provide a Date. ( Read my notes at the bottom, because there is something...
Steve Manser
tileguy2929
Offline Send Email
Nov 6, 2005
1:34 pm
17433
Been wrecking my brain on trying to figure out how to sort each number numerically, lowest to highest like a real lottery. Not sure howto approach the...
Acadian Man
holmeskcmcm
Offline Send Email
Nov 6, 2005
5:05 pm
17434
I haven't been following this thread closely.but couldn't you do a simple bubble sort on each number draw stored in your array? Assuming you have: arrLotto(5)...
Tim Rupp
timrupp804
Offline Send Email
Nov 6, 2005
6:01 pm
Messages 17405 - 17434 of 22583   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help