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...
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...
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...
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:...
________________________________ From: helpwithvb@yahoogroups.com [mailto:helpwithvb@yahoogroups.com] On Behalf Of Steve Manser Sent: Monday, October 31, 2005...
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 ...
... 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...
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:...
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...
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...
... 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 =...
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, 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...
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....
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...
... 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...
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...
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? ...
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...
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...
... I can be so stupid sometimes < g > Thanks. Good To Hear From You Mike, Steve ... From: helpwithvb@yahoogroups.com [mailto:helpwithvb@yahoogroups.com] On...
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...
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...
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...
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...
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...
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)...