Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rombosiaj

    Mouse Up, Mouse Down...

    Hi, Try putting that code in click event so that the tooltip text is shown just when the listview is clicked. Put the code 'LV1.ToolTipText = ""' in the MouseMove event so that it stops displaying text when the mouse starts moving. That can solve the 'always showing text' problem. Regards...
  2. rombosiaj

    Nope, DestroyWindow doesn't work on non-NTs

    Hi, I mean, on our good ol' win98(probably 95 & ME too) I've used the Destroywindow API function but nothing has happened. The closewindow one only minimises it. How can I destroy a window on these OP systems?
  3. rombosiaj

    Automating Drive, file or folder properties

    Hey, Is it possible to change properties like sharing levels or the read only, such properties of drives, files and folders during runtime? If is is please lemme know how. Thanks.
  4. rombosiaj

    Property setting in Design time Or Run time

    Hi, I'm not very sure about the difference in execution speeds but this is what I do. I normally set the settings the way I need them to be as the program or the form shows for the first time on the properties window. When there's a situation during runtime that needs the change in...
  5. rombosiaj

    Try this one

    Hi guys, put this code on a command button and run it. if your Database won't be 49 Mb++ tell me the references you used coz mine is that big.Just re-align the lines below. Here goes: Private Sub Command1_Click() Dim intger As Integer Dim cat As New ADOX.Catalog Dim tabl As New ADOX.Table Dim...
  6. rombosiaj

    Can VB execute code line-by-line

    Hi tek-tip pals, Is there any way for VB to execute code line-by-line like in the compiler languages? I mean, if, for example I have a form with a command button and a label then I apply this code to the command_click function: For t = 0 To 20000 myLabel.Caption=Cstr(t) Next t The only...
  7. rombosiaj

    ADO automation dissapointment

    I am using ADO automation to insert data into an access database but the result is a very big database. when I insert the same manually the database is thice as smaller. Any ideas? Joshua.

Part and Inventory Search

Back
Top