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

    MAPI email with embedded image.

    Hi All, My email system has an activex button that does the work of sending emails when needed. I need to send an image with certain emails. I've been successful in adding the image as an attachment, but I'm not sure how to EMBED the image so it's in the actual body of the email. Here's how the...
  2. dantheinfoman

    Multiple Detail Bands somewhere other than Center of Report?

    Hi All, I have an old report that I was handed to revise which has : Page 1 with Employee and Employer total pay by PayType, Deductions, and Witholdings Page 2 with Summary of Departments totals for PayType and Withholdings (which I'm supposed to add Deductions to dynamically) Page 3 is the...
  3. dantheinfoman

    DynamicBackColor with ColorCode, Not RGB(...)

    Hi All, I'm currently storing colors to a field that is numeric using GETCOLOR(). All references to DynamicBackColor talk about using RGB() function. I can't seem to get the actual colorCode to work in the same manner. Does anyone know if this is possible. Here's what I'm trying to no avail...
  4. dantheinfoman

    When is TableUpdate Needed for CursorAdapter?

    Hi All, Is there a function to know whether the cursor (that the CursorAdapter uses to update the table) has been changed? If changes are made to my grid and somebody tries to exit out without clicking Save, I'd like a message to ask if they'd like to Save (meaning do a TableUpdate(.T.) ) or...
  5. dantheinfoman

    MAPI Session Works When Debug, Not Compiled Unless Thunderbird First Closed?!

    Hi All, I tried to be as expressive in the title as can be, but essentially, I'm trying to send emails with MAPI session using Thunderbird. Some considerations: 1. Thunderbird IS default mail application. 2. This procedure works when I'm debugging the code, just not when I compile the EXE and...
  6. dantheinfoman

    Sending Cursor to Email Recipient

    Hi All, Looking for recommendations for the best method to send out daily summary emails to several salespeople. I have a cursor with their emails and details for each record. I'd like to just be able to transform this cursor as text or table in an email and send. Not sure how to do that. I...
  7. dantheinfoman

    VCX form to an SCX?

    Hi All, Is there any way to make this beautiful vcx form into an SCX. I'd like to tweak it and use as stand alone SCX. Thoughts? Thanks Dan
  8. dantheinfoman

    Update Table From Cursor instead of Set Filter??

    Hi All, I have a new table gathering 25 years of sales notes from memos into individual records. Table is fine, works ok with a grid I made. My question (and related problem) is that since the table has 350,000+ records in it, it takes a bit to update when I do a SET FILTER TO blah and blah. ...
  9. dantheinfoman

    IP Address using VFP instead of manually heading to whatismyip.com

    Hi All, I've been searching quite a bit this morning to find a way to get the ip address of a person/business' internet, not the local ip that's similar everywhere like 192.168. . . I can find the local IP all over the net. What I can't find is how to get the external ip, such as what you...
  10. dantheinfoman

    Good Diff, Merge and Version Control solution with FoxBin2Prg

    Hi All, I've got SourceTree and I'm trying to get FoxBin2Prg to merge 2 different versions of an .SC2 file. It butchered the form, rendering it inoperable. Maybe I don't know how to merge right, or maybe SourceTree isn't as good as Plastic SCM like in this video...
  11. dantheinfoman

    Dynamically Disabling Grid Row if Field is True

    Hi All, I've had success getting the rows that have C_IMPORTED = .T. to be red, but I also want to disable the entire row so that people can't edit a record it if has been flagged as 'imported'. Here's what I have so far, both in the form INIT event: ***colors and disabling imported records***...
  12. dantheinfoman

    DO FORM MyForm is an Object sometimes, other times not

    Hi All, When I run the line DO FORM MYFORMTEST within the startup.prg, it creates an object called MYFORMTEST. So TYPE("MYFORMTEST") = "O" appears to be True However, when I don't use startup.prg, and just call the form from some button or top menu icon, using the same DO FORM MYFORMTEST it...
  13. dantheinfoman

    Using REPLACE command to affect multiple fields with FOR

    Hi All, I thought this would be a no-brainer, but it isn't working no matter how I try it. I want to set APPROVBILL to .T., to put the date and time and whoever ran the macro to approve all the items in the current date range for that employee. When I click the button and run this code...
  14. dantheinfoman

    Select Distinct and Sum in SQL Select

    Hi All, If I have a cursor that looks like this: What's the best way to get totals of hours,ttl_reg,ttl,ovt,ttloth by each Job+Employee combo. So it may look like this: Employee, Job, Hours, Ttl_reg, Ttl_ovt, Ttl_oth 1000, CL12345, 18.75, 0 , 0 , 0 1002, CLEAN#1, 5.75...
  15. dantheinfoman

    Do Form BLAH within specific tab of a page frame?

    Hi All, I'm not finding anything decent on google, trying to discover how to make a form appear in a specific tab of another form. I have the main screen, then I want a popup form with tabs and as new dashboard item forms are initialized, I'd like them to appear in the appropriate tabs...
  16. dantheinfoman

    Hyperlinks to Websites or Commands in FoxyPreviewer

    Hi All, I was reading an article from Doug Hennig: http://doughennig.com/papers/Pub/CoolUsesforReportListeners.pdf, however, when I tried this it isn't working, I believe because FoxyPreviewer does something to the _reportlistener and HTMLlistener classes, modifies them or something. Does...
  17. dantheinfoman

    PGP Encryption

    Hi All, I've been reading up on what PGP encryption is, but most forums have outdated/broken links, so I don't know how to download required 3rd party programs nor the VFP classes or files needed to explore PGP encryption. Does anyone have any dropbox or web links and/or info on this elusive...
  18. dantheinfoman

    Lookup, Locate, or Scan on multiple fields within an FRX report

    Hi all, I'm trying to have a field that looks up a field in another table, but I don't know how to perform a lookup on multiple fields, for example: In the field within the FRX form there would be something like this...
  19. dantheinfoman

    Debugging Gets Stuck on Procedure within a PRG

    Hi All, When I get to a certain point in my PRG, (right when it creates an empty cursor) it jumps goes to a procedure at the bottom and when I press F8, it just hangs there at the top PROCEDURE NewHeader1 Anyone know why or how to deal with this so I can debug my program again? Thanks Dan
  20. dantheinfoman

    Manipulate Foxypreviewer's Toolbar

    Hi All, I've been trying to manipulate foxypreviewer's toolbar all day and I can't get it to budge for customization. I'm trying to add an option to the SAVE toolbar to allow "Save As XLS (Basic)" which would hopefully create an Excel file that loads really really fast. Or an option to Save as...

Part and Inventory Search

Back
Top