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: mhm
  • Order by date
  1. mhm

    Managing a ProgressBar during File Upload

    Hi AndyDuke, I'm looking for somewhat the same solution concerning ProgresBar. I however is using the copy features of FSO to copy a new file. My problem is how to provide a value to a progress bar during the copying itself. I tried timer control, but due to intensiveness of the operation the...
  2. mhm

    SQL problem

    Dear NipsMG, Thanks a lot for the prompt reply. I'll test it. However, my problem is that... I am using a disconnected database in N-tier application. I'm using Class Modules within an ActiveX Project (it's DLL). I used this class to connect to database and at the same time manipulate the...
  3. mhm

    SQL problem

    I'm still having headache because of this OLE Field problem. Please extend your help. Thanks in advance.
  4. mhm

    SQL problem

    NipsMG, Thanks. I did explore Access Object Library already and I didn't find any object that is suitable to my requirement. Any tips? To give you a background, the Access 2000 Database is stored in a File Server as Back-End Database, and I'm using VB6 as the Front-End. It's a Client/Server...
  5. mhm

    SQL problem

    NipsMG, Thanks for the prompt reply. You're right. I really wanted to use the OLE Object Field just like an ordinary field. Drop it in the report and viola! it should print the picture for each record. I just wonder why we can't do this? As an example, when I'm in Access and inserted a .JPG...
  6. mhm

    SQL problem

    Hi Experts, Would you be kind enough to tell me what I'm missing in order for me to save a Bitmap Image into an OLE Object field. Here's my problem. I'm using VB6 with ADO 2.6 & Access2000. When I try to save the corresponding value of "C:\Pictures\Pic00001.JPG" using Stream or...
  7. mhm

    Linking OLE to Database

    Hi Guys, Would you be kind enough to tell me if you already solved this problem. I have almost the same problem with bitmap. Here's my problem. I'm using VB6 with ADO 2.6 & Access2000. When I try to save the corresponding value of "C:\Pictures\Pic00001.JPG" using Stream or...
  8. mhm

    vb problem

    As I understood it, you are only using VB just to run your CR report. Right? If this is the case, the easiest and simpliest way is... compile your CR report within CR itself and run the compiled CR report. Good Luck!
  9. mhm

    vb problem

    You can try moving your ActiveX Control to your other Form then concatenate the Form with CR ActiveX when you define your ActiveX Control and run your report. By the way, can you tell me your objectives why you are activating and unloading the report within the Form_Load event? Perhaps I can...
  10. mhm

    Passing Date Parm from VB6 to CR Report Header

    You can try this one: Private Sub cmdPrint_Click() Dim strHeader As String Dim indx As Integer On Error GoTo BadPrinting strHeader = "Date Range: " & dtFrom.Value & " Through " & dtTo.Value 'ReportHeader is declared in CR as parameter field...
  11. mhm

    Reports off VB6 Form

    You can easily pass the Selection Criteria as well as the values of your text boxes from VB Form during the declaration of your report. Private Sub cmdPrint_Click() Dim strSelectCriteria As String Dim indx As Integer On Error GoTo BadPrinting ' parText1 and parText2 are declared on your...
  12. mhm

    vb problem

    Just type "Unload Me" after you have activated your report. For example: Private Sub Form_Load() crptMyReport.Action = 1 ' activates your report Unload Me ' unload the form End Sub

Part and Inventory Search

Back
Top