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

  1. RichieSimonetti

    Controling Notes via VBA?

    I agree with pmonett, ask to your notes administrator to give you that special ID. After that you could swith from one user to another and send mails from the "new user".
  2. RichieSimonetti

    Error Loading USE or USELSX module...

    none of that was successful, my boss want to update all clients to the same version and language and start from there. Thanks anyway.
  3. RichieSimonetti

    Error Loading USE or USELSX module...

    Hi, i am getting this error on some PC s and not in others for the same database. - PCs have same lotus version (5.0.11) - Database is at Server - The library with the loading error is a custom library where i have all the LotusScript funcionality - The code is called from an Agent The only...
  4. RichieSimonetti

    rotate bitmap

    Try using Autoredraw property to true.
  5. RichieSimonetti

    Newbie question about registering an ocx

    download it here: http://www.dependencywalker.com/depends21_x86.zip
  6. RichieSimonetti

    Newbie question about registering an ocx

    If you have Visual studio installed you could use Dependency walker to know wich dlls/ocxs are used for a given exe, dll/ocx themselves.
  7. RichieSimonetti

    rotate bitmap

    This is an example: Rotating a Picture through any angle By: John Percival URL: http://www.vbworld.com/tips/tip137.html Use this function to rotate a bitmap through a certain angle. This function is unfortunately quite slow due to the amount of calculations that it must do. Put this in a code...
  8. RichieSimonetti

    Convert & Save IMG in ImageBox to Drive in JPG format

    see http://www.accelerator.com/overmed.htm
  9. RichieSimonetti

    How to handle browser scolling events inside ActiveX

    Could you explain it in more details?
  10. RichieSimonetti

    Browse for pic in Excel

    oops! Private Sub Image1_DblClick(ByVal Cancel As MSForms.ReturnBoolean) Dim sFile As String sFile = Application.GetOpenFilename(&quot;Image BMP (*.bmp), *.bmp&quot;) If (sFile <> False) Then If (sFile <> &quot;&quot;) Then Image1.Picture = LoadPicture(sFile) Else MsgBox &quot;Failed to...
  11. RichieSimonetti

    Browse for pic in Excel

    Private Sub Image1_DblClick(ByVal Cancel As MSForms.ReturnBoolean) Dim sFile As String sFile = Application.GetOpenFilename(&quot;Image BMP (*.bmp), *.bmp&quot;) If (sFile <> &quot;&quot;) or (cancel=false) Then Image1.Picture = LoadPicture(sFile) Else MsgBox &quot;Failed to open the...
  12. RichieSimonetti

    Browse for pic in Excel

    Check This: Private Sub Image1_DblClick(ByVal Cancel As MSForms.ReturnBoolean) Dim sFile As String sFile = Application.GetOpenFilename(&quot;Image BMP (*.bmp), *.bmp&quot;) If sFile <> &quot;&quot; Then Image1.Picture = LoadPicture(sFile) Else MsgBox &quot;Failed to open the image&quot...
  13. RichieSimonetti

    Email without mail client

    Could you try this: http://www.freevbcode.com/ShowCode.Asp?ID=109
  14. RichieSimonetti

    document.mediaPlayer.fileName = URL

    I think you can't without a special tool for merge both files.
  15. RichieSimonetti

    Using Active X to control an Excel/VBA file

    Maybe your active x are still referencing an old Excel library but i don't know what is the updated that you made.
  16. RichieSimonetti

    SaveFileDlg

    just to clarify: Common dialogs allows you to get the path and filename to open/save files and nothing more. As PTFlea suggest, you have to write the code to save data to a file by yourself. You see, Common dialog is not smart enought to know which type of file you want to save and what it would...
  17. RichieSimonetti

    Email-attaching a file Within Access

    You have to add the code in a module of your db and set the references to the dll mentioned there.
  18. RichieSimonetti

    Email-attaching a file Within Access

    The site have a source code example on it, didn't you see it?

Part and Inventory Search

Back
Top