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 SkipVought 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. keeyean

    .EXE file questions..

    what if i don't want to zip the file.. how do i save into 2 disk??
  2. keeyean

    .EXE file questions..

    i have 2 questions regarding make project to .exe file 1.before i make my project to .EXE file.. the file size is 1.02M.. but after i made it to exe file, the file size change to 1.7M.. is that normal?? 2. how do i save the exe file into 2 disks?? or how do i minimize the exe file??
  3. keeyean

    SaveAs problem..

    Below are the codes of Save and SaveAs ... but once i open a file(to input data in the program)... when i select SaveAs... a save dialog will pop up.. but when i select "cancel"... a error msg "Cancel was selected" will pop up... am i missing something in the code?? Public...
  4. keeyean

    highlighted problem..

    where should i put this code... if i want the Text1(0) will be highlighted when i open Form1?? Form1.Text1(0).SelLength = Len(Form1.Text1(0).Text)
  5. keeyean

    comboboxes problem....urgent...:-(

    i have checked all the comboboxes... they are in setting 0.. and the highlighted problem is only occur when i use window2000 to run the program.. but if i run in windowNT.. then it will not happen...why??
  6. keeyean

    comboboxes problem....urgent...:-(

    have several comboboxes in several forms in my program... everytime when i open a file(input the data in to the program)... some of the comboboxes will be highlighted... but.. all the comboboxes setting are same... for example, when i open a file... these is what will happen.. Form1... all...
  7. keeyean

    combobox highlighted problem again..:(

    i have several comboboxes in several forms in my program... everytime when i open a file(input the data in to the program)... some of the comboboxes will be highlighted... but.. all the comboboxes setting are same... for example, when i open a file... these is what will happen.. Form1... all...
  8. keeyean

    list in combobox problem...

    hmm .. what i'm trying to explain at here is... i have 7 selections in a combobox... can i make it to.. case1, only 3 alternatives can be selected, but the other 2 alternatives are locked... case2, only 5 alternatives can be selected and case3, all 7 alternatives can be selected...
  9. keeyean

    list in combobox problem...

    i have 3 selections in a combobox... can i make it to.. case1, only the first alternative can be selected, but the other 2 alternatives are locked... case2, only second alternative can be selected and case3, only thrid alternative can be selected... thanz you..
  10. keeyean

    Commandbutton caption color...

    wow... it really save a lot of steps...:) thanz you guys ...:)
  11. keeyean

    Commandbutton caption color...

    so you mean.. i can't change the fore color like the way i change the fore color of label (change the fore properties of the label )??
  12. keeyean

    Commandbutton caption color...

    but it doesn't have forecolor.. it's only have backcolor and maskcolor in the commondbutton's properties.
  13. keeyean

    Commandbutton caption color...

    how do i change the color of the commandbutton's caption??
  14. keeyean

    Textbox check problem...

    hey...its work now...!!:)
  15. keeyean

    Textbox check problem...

    no.. this doesn't work ... it can't check the duplicated letter too...:(
  16. keeyean

    comboboxes highlighted??

    i use write method ..and save the text of the combobox to keep the value.. For i = 0 To 5 Write #filenum, Form1.Combo5(i).Text Next i is that the reason .. coz the combobox highlighted??
  17. keeyean

    comboboxes highlighted??

    i have 6 forms in my program... and each form have several comboboxes... everytime when i open a saved file to input the data in to the program .... why some of my comboboxes will be highlighted?? how do i prevent this to happen??
  18. keeyean

    Textbox check problem...

    'Loop through the values, checking for duplicates: For valCounter = 0 To 11 tmpValue = Values(valCounter) For indxCounter = (valCounter + 1) To 11 If tmpValue = Values(indxCounter) And tmpValue <> &quot;&quot; Then numDupesDetected = numDupesDetected + 1 'To hold...
  19. keeyean

    Textbox check problem...

    i still can't find a way to solve the setfocus problem .. can someone give me a guide??
  20. keeyean

    Textbox check problem...

    hmm.. i'm not very sure about the setFocus problem...below is the code i try to check the duplicated number....but... it doesn't work...so..... For valCounter = 0 To 2 If CheckForDuplicates(Form1.txtNumbers, Form2.txtNumbers, Form3.txtNumbers) = True Then MsgBox &quot;Dupe detected.&quot...

Part and Inventory Search

Back
Top