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

  1. DickDavies

    vbsendmail - embed html

    Hi All, 1. I wasn't aware of the command to read the entire contents - I will give it a try, thanks. 2. Locating the graphics on our web site seems to give better results on receiving email clients that do not allow attachments (but are ok with web links). Regards Dick D
  2. DickDavies

    vbsendmail - embed html

    Hi, Sorry for delay in reply. Basically I create the complete message as an htm file and read this file in line by line and add to the message text as per the code below. (Any graphics included in the htm reside on our web server). -----------------------------------------------------------...
  3. DickDavies

    vbsendmail - embed html

    Have now managed a workaround by adding a 'stationery' input to my vbsendmail form, reading the htm file and appending to the message - now doesn't need an attachment. Now for the mailshot...
  4. DickDavies

    vbsendmail - embed html

    I have created a mailshot routine which passes list of email addresses to vbsendmail ('BCC' field). The basics all work fine and can attach file and send mails ok. Ideally I need to embed the attached html into the message body, I have followed the 'AsHTML' instructions from the vbSendMail help...
  5. DickDavies

    Need to know a date

    Try : DayNo = (Week -1) * 7 Date = DateAdd("d", DayNo,#1/1/2007#) Should give you date of the first day in that week.
  6. DickDavies

    Modal form load

    Same versions as George RichEd20.dll Version 5.30.23.1221 RichEd32.dll Version 5.1.2600.0 RichTx32.ocx Version 6.1.97.82 Dick D
  7. DickDavies

    Modal form load

    Hi guys, Thanks again for your efforts. For info. I have been testing on XP SP2. I have tried all manner of calling this modal form, setting flags, calling via the MDIForm etc. etc. - the return always retriggers the calling line (and ignores my flags). I've chickened out and changed the...
  8. DickDavies

    Modal form load

    Thanks for your responses. To try and track down the problem I created a different form (formB) with only 1 command button (unload me). When called modally from the calling form FormA (from a RichText_Click event) Dim FormM As New FormB FormM.Show vbModal Clicking the unload command...
  9. DickDavies

    Modal form load

    I have a modal form consisting of a rich text box and two command buttons (save and exit) which can be called from other forms (mdichild) in the app. calling code: If FormEdit.Visible Then Unload FormEdit FormEdit.Show 1 When loaded the command buttons on the modal form ignore the...
  10. DickDavies

    Save integer within a string ?

    Thanks very much for the suggestions. I will 'give it a go' using the UDT's. Dick D.
  11. DickDavies

    Save integer within a string ?

    Hi, Is it possible to embed an integer within a string (save and retrieve from a data record) without altering the record definition? - i.e. divide a string field into sub fields from within my program. I can't use Cstr as I only have 2 bytes available. e.g. MyStr = "abcdefghijk" + <2 byte...
  12. DickDavies

    Matrix printer (Epson LQ-2080) on XP

    Have managed a solution: - Created a form on each XP PC which uses the app. and removed the relevant printer commands from the program. Thanks anyway
  13. DickDavies

    Matrix printer (Epson LQ-2080) on XP

    Recently switched from Novell/W98 to W2000/XP. I have one app (VB6) which sets form 'width' and 'height' and utilises 'newpage' to print to an Epson LQ-2080 Matrix Printer. All ok on the old system but form controls do not work on XP. I have tried driver from the original Epson CD and also...
  14. DickDavies

    invalid page fault

    Deleted some old apps from my pc. When I next loaded VB6 It couldn't find 'mscomctl.ocx' so I copied it back to System directory. I then get 'illegal operation - invalid page fault in module vb6.exe' when trying to save a project. I guess something is missing from the registry (W98). Tried to...
  15. DickDavies

    Access / Foxpro Linked Tables

    Infinitelo, I've only just noticed your response to my problem. I had already solved it (more by accident than design!). Deleted records was the problem and as the table concerned should have no deleted records I have scheduled a 'recall all' job to run every night. Thanks. Dick D
  16. DickDavies

    Access / Foxpro Linked Tables

    Rick, Access mdb is only opened as and when required. I will check out Access patches. Dick.
  17. DickDavies

    Access / Foxpro Linked Tables

    Rick, This is our setup. Main app is Foxpro 2.6 with .dbf tables. I have created an Access database with several tables (all linked to the FP tables) - I used the available 'create linked table' option from within Access (not odbc). I use Access queries or VB to produce reports (from the...
  18. DickDavies

    Access / Foxpro Linked Tables

    Some of our apps. use Access 97 'link' tables to Foxpro 2.6 tables. Occasionally records do not appear in the Access table, they are ok in the FP table. Reindex of the FP table makes no difference. I would appreciate any suggestions.
  19. DickDavies

    Exit VB6 application 'hangs' pc (W98)

    Expanding on my problem : 1. All have same packaged version - my pc (Win98) is the only development platform. 2. Problem occurs on my pc and the only other W98 pc. 3. Can't trap the error as it doesn't show until after exit from the app. On the 2nd W98 pc the error has occurred...
  20. DickDavies

    Exit VB6 application 'hangs' pc (W98)

    Hi, Can anyone help please. I have some applications developed with vb6(sp3), compiled and packaged on W98. These work perfectly on W95 and W98 but 'crash' W98 machine after terminating the application. (W95 is ok). The crash 'freezes' the pc but displays what seems to be the outline of the...

Part and Inventory Search

Back
Top