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. androidc

    Multiple inheritance

    oh yeah, i said those were the solutions that i found that enabled me to solve the current problems. but neither permits me to have the objects that i wanted . your first sentence answered my question...not the answer i wanted, but an answer nonetheless. Thanks
  2. androidc

    Multiple inheritance

    Alright, i could just be an idiot, cuz i can't seem to find any help on the matter (i'm sure it's gotta be there, i just don't know where!!) (yo, forgive any syntax errors, i'm writing this fairly quickly..) The idea i have is this. Let's say i have a class clientbase DEFINE CLASS clientbase...
  3. androidc

    Which Error event will be called?

    If i could quote the Hacker's Guide to Visual FoxPro 7.0 "So when does Error fire, anyway? It fires when something in a method of the object causes an error. If you mess up the call to an object's method, though, it's not the called object whose error handler fires, it's the calling...
  4. androidc

    Which Error event will be called?

    I'm not sure exactly how to describe this problem, but i'll try my best... We have browwind.scx, a form that contains a grid only, which allows the user to browse and select records from a main table. When a user presses enter, or double clicks, it opens up another window (fiche.scx). Both...
  5. androidc

    GPF errors using HP Printer drivers

    Does faq184-2265 (How to prevent GPF error using HP printer drivers) apply to foxpro 2.6?
  6. androidc

    First record from a select statement

    After reading thread184-635869, it reminded me of something i noted once. The following produces strange (well, i think it's strange) results CREATE CURSOR blah ( name c(10) ) FOR i = 1 TO 10 INSERT INTO blah VALUES ("blah" + ALLT(STR(i))) NEXT _num = 0 SELECT name, nextnum()...
  7. androidc

    .HTMLBody for sending emails thru Outlook

    I guess i should add that cText is basically a memo field where the user enters the body of a letter. What's added is a header and footer which contains the <html><body> and </body></html> tags, as well as a table, within which is the body of the letter. I could post the html code if someone...
  8. androidc

    .HTMLBody for sending emails thru Outlook

    Mike Gagnon: I tried numerous email addresses. None received. And i'm aware of CDO being a part of office, but it doesn't show the email to the user. which, as far as i'm concerned, should not be a problem but i've been told to use outlook...*shrug* and yes, cHTML had proper html code...
  9. androidc

    .HTMLBody for sending emails thru Outlook

    I've been working on a simple enough email procedure to send emails with outlook (see code below) Now, i've actually gotten it to work. It was the first thing i got to work. Then i worked on the CCs and the attachments, which now also works fine. But the emails are not sending as HTML. it...
  10. androidc

    Can i 'get latest' using code?

    At the office i'm at now, preparing an update is a multi-step process, with 'Get Latest' in sourcesafe is the first thing to do. I would like to automate this process. Is there a way to programmatically get the latest version of the files? More specifically, does anyone know how i could do...
  11. androidc

    Report Controls Toolbar and Report Designer

    Thanks slighthaze We actually just turn the resource file off while editing the report. What scared me was that then the resource file could be deleted, which, when we do SET RESOURCE ON again, the program crashes because it can't find its resource file. So we USE the resource while editing...
  12. androidc

    Report Controls Toolbar and Report Designer

    Using our software, users can modify their own reports. However, it seems some of our users have decided to close their Report designer and/or report controls toolbar. If they go back into another report (or the same), the toolbar and the designer are going to be still missing. We've found a...
  13. androidc

    Checking who is using a file

    The software I'm working on right now can have multiple users. But each user needs a copy of a resource file, that we call RES___ On a network, there can be many users, each user will have a copy of the file RES___ which is named RES001, RES002, etc. When the user logs on, the file is...

Part and Inventory Search

Back
Top