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: *

  • Users: HydraNL
  • Order by date
  1. HydraNL

    Sliding Form with timer

    ah. stupid. stupid. stupid. Me.Height = Me.Height + ..... etc. Thanks for the info. Little questionn left. It there a way to slow down the sliding less then 1? I mean: Private Sub Timer1_Timer() Timer1.Interval = 1 '<-- Is there a way to make the scrolling more slow? Me.height =...
  2. HydraNL

    Sliding Form with timer

    Hi, I am trying to slide, make the form bigger, with a button. but each time it freezes. can someone help me out? This is one of the codes I tried. Option Explicit Private Sub Form_Load() Timer1.Enabled = False End Sub Private Sub Command1_Click() Timer1.Enabled =...
  3. HydraNL

    Highlight last added row datagrid

    What is the Bookmark? Getting "External name not defined" Greetings J. Radjesh Klauke (Netherlands)
  4. HydraNL

    Highlight last added row datagrid

    Hi, anyone can tell me how to do that? Search on the net didn't help. Greetings J. Radjesh Klauke (Netherlands)
  5. HydraNL

    ComboBoxData, change Capital to non-Capital

    The code of HarleyQuinn works fast. But both of you deserve a shiny. Thank you both for the effort. Greetings J. Radjesh Klauke (Netherlands)
  6. HydraNL

    ComboBoxData, change Capital to non-Capital

    Thanks guys. Works fine. One question remains. How do I make onlythe first letter Capital and the rest LCase? Greetings J. Radjesh Klauke (Netherlands)
  7. HydraNL

    ComboBoxData, change Capital to non-Capital

    Hi, How do I change the text in the ComboBox from Capital to non-capital? The ComboBox is filled on Form_Load() Do Until rs.EOF Combo1.AddItem rs!TEST rs.MoveNext Loop Greetings J. Radjesh Klauke (Netherlands)
  8. HydraNL

    Remove or hide double items in listbox

    THANK YOU!!!!! Have a shiny. So simple, yet so elegant. Greetings J. Radjesh Klauke (Netherlands)
  9. HydraNL

    Remove or hide double items in listbox

    Didn't work. But I think I gave to little info. There are also 2 textboxes filled with data from the recordset. This is the full code: Private Sub Combo1_Click() List1.Clear Set rs = New Recordset rs.Open "SELECT * FROM POSTCODE WHERE GEMEENTE = '" & Combo1.Text & "'", cn...
  10. HydraNL

    Remove or hide double items in listbox

    Hi, Got a small problem (I hope) Can Anyone tell me how to remove or hide double items from a listbox? This is what I already have: Private Sub Combo1_Click() List1.Clear Set rs = New Recordset rs.Open "SELECT DISTINCT * FROM POSTCODE WHERE GEMEENTE = '" & Combo1.Text & "'", cn...
  11. HydraNL

    SmartMenuXP - Disable Checkbox when other clicked

    Thanks man.... I already had the demo-project... ;)
  12. HydraNL

    Data control database name

    I always "hard-code" the App.Path. It's not the best way, but I never encountered problems 'cause my setup makes sure that the user cannot change the installationpath. If the user relocates the folder... then he's in trouble... ;)
  13. HydraNL

    New line included in msgbox

    Do you mean vbCrLf? You can also use vbNewLine instead of vbCrlf. Or do you want something else?
  14. HydraNL

    SmartMenuXP - Disable Checkbox when other clicked

    Thanx Hypetia... Perhaps i have to read more carefull the next time.. hihihi. Do you know where to find some kind of help or more samples working with SMXP?
  15. HydraNL

    SmartMenuXP - Disable Checkbox when other clicked

    Thanks for the reply Hypetia. The first thing i already used. It works fine. I tried your code without any result. To bad. this is the code I already had: .Add "mnuExtra", "options", , "Change Skin" '(31) .Add "options", "mSkin1", smiCheckBox, "Aisi", , , , smiChecked '(32)...
  16. HydraNL

    SmartMenuXP - Disable Checkbox when other clicked

    No-one uses SmartmenuXp??
  17. HydraNL

    SmartMenuXP - Disable Checkbox when other clicked

    I understand what to do..., but not how to implement that in the coding of SmartXP. An example would help more.
  18. HydraNL

    Check what button opened a form

    On the Click_Event() send a msg to a TextFile/ MsgBox/TextBox whatever. Just a simple example: Private Sub Command1_Click() ' write to msgbox msgBox "You clicked CommandButton 1" ' write to textbox Text1.Text = "You clicked Command 1 & vbCrlf Text1.Text = "" ' write...
  19. HydraNL

    SmartMenuXP - Disable Checkbox when other clicked

    Hi, I hope someone has used or is using SmartMenuXP en could help me out. I have a menu with several captions. When I click on a caption the checkbox gets checked... So far so good... What I want is; When I click on another caption I want the 1st caption to be unchecked... an so on...
  20. HydraNL

    Cannot Install MS-Office 'cause of the DEP-protection

    Ok.... I'll try that.

Part and Inventory Search

Back
Top