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!

Recent content by sisan

  1. sisan

    Crystal Report from MDB with password

    Wow, its so simple. But this is what I need to know, and .. thanks, Dave
  2. sisan

    Crystal Report from MDB with password

    Anybody please help me?
  3. sisan

    Crystal Report from MDB with password

    I know to use VB, Access and Crystal Report such as: Private Sub Command1_Click() cr1.DataFiles(0) = [Access/.MDB file] cr1.ReportFileName = [Cystal report/.RPT file] cr1.Destination = crptToWindow cr1.Action = 1 End Sub But how if the .MDB contains a password? Urgently need...
  4. sisan

    How to move the cursor in a text box

    Use Text1.SelStart = ...
  5. sisan

    Picture in report designer

    Yes. I've found what I looked for. Thanx, Zemp!
  6. sisan

    Picture in report designer

    Can we set the picture in report designer at run time ? I use LoadPicture, but not work. Help me..., please help me....
  7. sisan

    Open Access containing password with DAO

    Yes ! It works! Thank you, Alphanytz.
  8. sisan

    Open Access containing password with DAO

    Thank you, Alphanytz. I have tried your suggestion, but it raised the message: Run time error 3151 ODBC--connection to 'C:\MyApp\MyDb.mdb' failed. Any other suggestion ?
  9. sisan

    Open Access containing password with DAO

    I need your help please I have an Access MDB containing password, and in my application I open it ReadOnly with DAO(3.6) I wrote : Set MyDb = OpenDatabase("MyDb.mdb", , , "Uid=Admin;Pwd=MyPwd;") but VB always told me that my password is invalid. I'm sure I gave a valid...
  10. sisan

    Force Capital Lock

    Thank's SemperFiDownUnda, you've helped me!
  11. sisan

    ADO on Win2000 problem

    I use ADO to access my Access 2000 database. But in Win2000, when run the line : Set myConn = New Connection an error appear with the message: Automation Error The specified module could not be found. When I run the code in Win XP or Win 98, there is no problem with it. The other strange...
  12. sisan

    Force Capital Lock

    Thank you guys, but my form has a lot of textboxes, so I want as the form shown, the keyboard caps lock always on "On" position. For any reason, I use regular textboxes, not a MaskedEdit textbox which has an UpperCase property.
  13. sisan

    Force Capital Lock

    Hi.. Got a problem here... I need to force the CapsLock on my keyboard on. How can we do it in VB command ? I have try it with SendKeys "{CAPSLOCK}", but it didn't work. Any suggestion ? Thank you
  14. sisan

    Cancel looping statement

    Hi... My procedure contains For... Next statement. How can I stop or interupt the loop by pressing the Escape key while the loop run ? Thank you.
  15. sisan

    Delay process

    Hi.. In my app, I put a splash screen after user login succeeded and before mdiform shown. Some procedures run while the splash screen shown, but I think it's too fast to shown. I want it can be a longer time seen. So, is there a command in VB to delay the time for a seconds? For a reason I...

Part and Inventory Search

Back
Top