hi all, i want to experiment with the list control and have changed the style property to show the square for a checkmark at the left side of each item. i got...
hi, i will read that. i didn't know it was this simple: Private Sub Command1_Click() List1.RemoveItem List1.ListIndex End Sub now to adapt a condition to...
... Set the control to invisible. Loop through the control's contents, inspecting each entry to see if it is checked. If it is checked, remove the entry Else,...
I wanted to let you know that I am teaching a course on Oracle SQL and PL/SQL for developers beginning on Monday, April 6th. I don't know how many of you are...
Anyone, IN VB6: Is the API Function Sleep the same as a pause statement? If not, please explain. Joseph Wasko Pannier Corporation Software Engineer P:...
Supporting Information about my Pause Statement mentioned earlier... I have a long standing way of pausing my applications for a period of time. This routine...
Good Evening, So..., you are worried about this new virus, the latest variant of the Conficker Thingie. You've done the Windows Updates, the same with all of...
thanks alot. that won't tell me sh if you're blind. do appreciate the info thou. Bryan Schulz The BEST Solution www.best-acts.com ... From: Steve Manser To:...
hi all, does anyone have a sample of how to change the case of a name entered? if you type joe blow, what code will make the j upper case and keep oe lower...
Oops, sorry, my bad. Didn't think far enough ahead. Steve ________________________________ From: helpwithvb@yahoogroups.com [mailto:helpwithvb@yahoogroups.com]...
VB-6 has the StrConv() built-in function. Hope this helps a bit. URL: http://www.devx.com/vb/Article/10633 On this page there is some code you can put into ...
Bryan, I've attached a text file which has their code made into a Public function, but I did add some bits of code to cover 1st Names of 'Mac' and 'Van'. ...
hi, no problem, i can get a relative to help. Bryan Schulz The BEST Solution www.best-acts.com ... From: Steve Manser To: helpwithvb@yahoogroups.com Sent:...
hi, that's pretty handy. thanks, there's always someone that can pop something out of their head that we didn't know about. Bryan Schulz The BEST Solution ...
... The Sleep function pauses execution, including event handling. ie. it is not the same as the Pause function presented in your other post. Adelle....
hi, i'd appreciate some database advice. with this sample code, it creates a table and fills in three records. Private Sub Command1_Click() Dim db_file As...
Your SQL command "CREATE TABLE" would be used to make the table using the input from a text box to name the table. What ID are you referring to? Your question...
hi, yes, i've gotten that far but run into errors. dim strPlayerTable as string strPlayerTable = txtPlayerName create table strPlayerTable results in a table...
You may need to execute a procedure to make this happen.something akin to this: DECLARE @ExecSQL NVARCHAR(300) SET @ExecSQL = "CREATE TABLE @TableName ..." ...
hi, sorry i didn't say each player has 64 recordswith fields being game_code, team_chosen, loser, winner, and points_earned so there is no way i would want to...
Bryan, Database tables contain millions of records and when properly designed do it quite efficiently. Perhaps the best reference for learning database design...
Steve's example is pretty good. If that's apropos to your needs, great. If you like, I have a VBA (will run in VB6) approach. At the core is a homemade...
Rod Stephens has this simple function on his website for converting Proper Case... ' Convert the text into proper case. Function ProperCase(ByVal txt As...