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 bkrike 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: jajinder
  • Content: Threads
  • Order by date
  1. jajinder

    Trigger code Combo_Ckick() with "Enter-Key"

    Hi, Got me a Combo1_Click() event. When I press the down-arrow the code executes. Is it possible to do that also with the "Enter-Key"? I thought that it would be possible to write the code under a KeyPress Event, but then nothing happened. --------------------------------------- This will be...
  2. jajinder

    Copy contents of a Locked TextBox

    Hi, How can I copy the contents of a TextBox that is locked? I could set the .locked = false on the click-event and .locked = true on the lost_focus, but is there an other way? --------------------------------------- This will be the day when all of God’s children will be able to sing with a...
  3. jajinder

    Hide duplicated records Combo

    Hi, How do I hide duplicated records in a ComboBox? --------------------------------------- This will be the day when all of God’s children will be able to sing with a new meaning, “My country, ‘tis of thee, sweet land of liberty, of thee I sing. Land where my fathers died, land of the...
  4. jajinder

    Combo1-->SearchDataBase-->Result in Text1

    Hi... Newbee question. After a long search with a lot of abused language.. hèhè.. I finaly got the values from a database in a Combo. After much, much, much more filthy language I hope someone can help me out with this: I created an AccesDatabase: (Example) Row1 (Fieldname: Postcode) = 1,2,3,4...
  5. jajinder

    Text1 = Member Items Combo1

    Hi... newbee question... Created a Acces-Database and a connection. I got the values of a row in a Combo. Furthermore 2 TextBoxes. If I select a value from the Combo I want to have the value in a Text of the other row (the row next to) I hope u understand what I am trying te say. Code for the...
  6. jajinder

    Create a XPPROLite CD

    Hi, Does someone know how to create a full working cd of XP Pro, without the "bullshit". I mean a cd that only installs the Windows without the not needed drivers and options? Only the necessary. I found a version, but it was not a legal one. I want to create one from my own cd...
  7. jajinder

    International Seperator

    Hi, In Holland (and other countries ofcourse) we use the "," to seperate the decimals in stead of the "." (1.000,00) Have me a textbox where users can add a value using the ",". Now they want to use the "." to have the same "value" as the "," Example: When I type 10.0 then it should be 10,0...
  8. jajinder

    auto - Format values txt

    Hi... Got me a form with several txt's. The user is allowed to enter a value (numbers only). If one fills 5000 in a txt, the value in the txt should be, for instance, 5000,00. I tried Me.txtBla = format(txtBla, "0,00") (and several other) But it does not work. Someone has a solution? Perhaps...
  9. jajinder

    Staring with other form

    Hi...... Jajinder made his first steps in the world of VB6 today and already in trouble. I know it is a very nooby question, but after a long search I got tired. I hope you guys can tell me how to solve this (tiny) problem. Ceated 3 forms. After creating an executable the programm starts with...
  10. jajinder

    Color cel when entering other cel

    Hi... In the endless search on the net I got tired and frustrated, so I hope one of you can help me. Question: When I click on Cell(C1) I want that Cell(A1)colors. Please help me. Greets Jajinder
  11. jajinder

    Sorting items ListBox

    Hi, Have an UserForm with a ListBox (Excel) containing unique values from colmn B. I cannot do that manually, because it is linked with colmn A (leading). How do I sort the values in the ListBox? Mij code so far: i = 1 With ComboBox2 Do Until Sheets("DB").Cells(i, 1).Value = Empty...
  12. jajinder

    Icon UserForm in the Windows-Taskbar

    Hi, Saw in FormFun that it is possible to show the UserForm-Icon in the Windows-Taskbar. But I'm not that good programmer. Can someone please help me out? What code do I need to do so? Greets Jajinder
  13. jajinder

    Excel: Show UserForm Icon in Windows-Taskbar

    Hi, Saw in FormFun that it is possible to show the UserForm-Icon in the Windows-Taskbar. But I'm not that good programmer. Can someone please help me out? What code do I need to do so? Greets Jajinder
  14. jajinder

    Hyperlink in TextBox

    Hi, Question already exsist, but the answer is not available anymore. How do I format the text in an TextBox as a Hyperlink? This is what I have, but does not work. Private Sub TextBox19_Click() ActiveCell.Hyperlinks.Add ActiveCell, TextBox19.Value, , , "Click to activate!" End Sub This...

Part and Inventory Search

Back
Top