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

  • Users: vikram28
  • Order by date
  1. vikram28

    How to open a MS Word File with VB 6.0

    Use shell dim myshell as long myshell = shell("Path of winword.exe path of file") I hope this will help. Good luck Vikram
  2. vikram28

    Opening helpfiles

    Goto Project -> Project Properties and then browse for your help file name.Then for every component provide the help context id. Good luck Vikram
  3. vikram28

    If file exist

    U can create the FileSystemObject And then use it fileexists method Good Luck Vikram
  4. vikram28

    How can i Chang the default printer in Dialog Control

    Try out this thread. It may help thread222-658496 Good Luck Vikram
  5. vikram28

    How To Make Cancel Button Work In InputBox

    Buddy008, If u are assining value of the Input Box to a numeric variable , and u press cancel or ok without entering anything in the text box , then only it raises an error . Otherwise I never really needed any code for Cancel button Good luck Vikram
  6. vikram28

    Image menu on a MDI form

    Here is ur code , just try it out Option Explicit Private Declare Function GetMenu Lib "user32" (ByVal hwnd As Long) As Long Private Declare Function GetSubMenu Lib "user32" (ByVal hMenu As Long, ByVal nPos As Long) As Long Private Declare Function GetMenuItemID Lib...
  7. vikram28

    Image menu on a MDI form

    If u want to have menus with icons (If I have correctly understood what u are saying) then u can use some APIS If that is what u are looking for . Let me know Good luck Vikram
  8. vikram28

    Mssql Formatting Date Problem

    Thanx CCLINT , I never thought about that . Thanks a lot for this tip. Cheers Vikram
  9. vikram28

    Mssql Formatting Date Problem

    Which database are u using. I was having same sort of problem in MS-Access. Try this out sql = "select * from tablename where date = format('" & DTPicker1.value & "','dd/mm/yyyy')" It worked for me . Good luck Vikram Shah
  10. vikram28

    "Resume without error" error...

    Hello All, Cant we write the Clean Up Code in the Error Handler itself ?? Good luck Vikram
  11. vikram28

    Create desktop icon

    Adoozer, That was neat. I was looking for something like this. U deserve a star. Good Luck Vikram
  12. vikram28

    Menu icons

    Sorry I forgot U have to add one image List from where the icons will be picked Good Luck Vikram
  13. vikram28

    Menu icons

    Just Cut and Paste the code Option Explicit Private Declare Function GetMenu Lib "user32" (ByVal hwnd As Long) As Long Private Declare Function GetSubMenu Lib "user32" (ByVal hMenu As Long, ByVal nPos As Long) As Long Private Declare Function GetMenuItemID Lib...
  14. vikram28

    Restricting Input Using ASC

    Which control are u using ?? U can check in the keypress event if u are using a Text Box. Good look Vikram
  15. vikram28

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Mr. SiaMex , Please use a meaning subject in future for better response. Good Luck Vikram
  16. vikram28

    How to control textbox input (numeric) while user types in data

    One more thing zemp , the prompt character in Mask Edit Boxes make things dificult . If u want to set text , u have to first set mask = "" then set text to desired text. Vikram
  17. vikram28

    Suggest a usefull book

    U are welcome!!
  18. vikram28

    Suggest a usefull book

    Begining Visual Basic 6 - Wrox Publication It is a good book for beginners Good Luck Vikram
  19. vikram28

    Creating a Wizard

    There are two options : 1. Create only form and create many frames which can be hidden and shown depending upon conditions. But having many frames say (15-20) is difficult to manage. 2.Create diff forms with same height and width , top and left . According to me second option is a neat one ...
  20. vikram28

    Mask EdBox

    Try this 1. First maskEdBox.promptinclude = false 2.Then maskEdBox1.text = whatever

Part and Inventory Search

Back
Top