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

    Can I programatically set control source of report from form

    Thank you very much. I put the code into a SetValue Macro and I used the OnFormat Event in the Report Designer for all of the Reports that I want to set the TEXT from the calling Form. It was easy but I was missing the correct Event from you. TEK-TIPS!!!!
  2. blastingm

    Sending a Form via Outlook

    Remou gave you the best advice.. WEBSITE You only need two pages. 1.Create a simple static HTML form page. 2.Create a PHP page to update your DB backend. Best part of it.. no Microsoft solution...! Outlook 2003 is full of bugs, runs slow and is generally a pain. Mars
  3. blastingm

    Record not writing to table

    Use the FORM events... very useful for INSERTS and UPDATES.. BEFORE UPDATE AFTER UPDATE Put code in these events and when you DEBUG notice what happens in the sequence of updating. Example: Private Sub Form_BeforeUpdate 'Anything..here. Just trace if and when the program comes here Mars...
  4. blastingm

    DataReport Help

    Use the SHAPE command to create Parent and Child data in the recordset. VB6 DataReport can only handle a Shaped RS with a Parent and Child. Datareport needs a datasource = Shaped Recordset Set the textbox datafield to the fieldname. In the child make the datamember = to the child name. I...
  5. blastingm

    &H8007007E (-2147024770) while opening VB exe

    Did you check the INSTALL computer for upgrades? VB6 is such a piece of junk that it installs your programs with old DLL's. Make sure your controls are up to date AND make sure ALL OLE DB drivers are up to date. I tried installing on a WIN NT 4 and was greeted with errors. After Installing...
  6. blastingm

    Extracting Data from Datagrid

    I did this today with the DateTime SQL SERVER data type. I used the CDATE to make my txtdata a date type in order to ADD the data to the DB. example: Dim dateVar As Date dateVar = CDate(txtWhatever.Text) However, when I read the data from the Recordset, I was able to just read the TimeDate...

Part and Inventory Search

Back
Top