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 Mike Lewis 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: diem
  • Order by date
  1. diem

    Creating a Store Locator via zipcode help

    I really appreciate it if someone could help me with the below question: I want people to come to my site and enter their home address or zip code so they can find a store near their home address. The result page would contain information pertaining to my store and other stores near the zip...
  2. diem

    window.open question

    Hello everyone, I found the tip posted below and it worked great for the part of the code that DKL01 posted. But I couldn't bring the window in front if it already exists by using the code that cyberwolf14 posted. So, how do I bring the new window in front if it already exists and without...
  3. diem

    How to save a value into the table before IE is closed?

    Hi, thanks for the tip! It worked great. I appreciate your help.
  4. diem

    How to save a value into the table when IE is closed?

    Hi Jeff, Thanks a lot for your help! Your idea about using sessionID works great. It's exactly what I tried to do, I learned a useful tip. Thanks very much.
  5. diem

    How to save a value into the table when IE is closed?

    Hi Jeff, I store all items of shopping cart in an Access table. If customer#1 adds some items into this table and then close IE window, the table at this time is not empty. So, if customer#2 creates a whole new order, then this shopping cart table needs to have no items. This customer#2...
  6. diem

    How to save a value into the table before IE is closed?

    Hello everyone, I'm working on an Online Ordering website. The customers can select any item and add to Shopping Cart. The process of ordering online is working ok if they end the order by checking out. However, if the customers close the IE before checking out (means the order is...
  7. diem

    How to save a value into the table when IE is closed?

    Hello everyone, I'm working on an Online Ordering website. The customers can select any item and add to Shopping Cart. The process of ordering online is working ok if they end the order by checking out. However, if the customers close the IE before checking out (means the order is...
  8. diem

    Copying multiple folders

    if you want to copy all folder from "c:\temp" to "c:\temp2", try this: run /N xcopy /E /Y "c:\temp\*.*" "c:\temp2"
  9. diem

    How to insert data from PDF file into Foxpro table?

    Hello everyone, Does anyone know how to insert data from a PDF file into Foxpro table? Thanks in advance.
  10. diem

    i need some useful information

    Hi, If you're using InstallShield to do this. these are 3 .dll files that you need to include in setup disk: Vfp6renu.dll Vfp6r.dll Vfp6run.exe You don't have to install Foxpro on client's machines, just include these dlls and it should work.
  11. diem

    how to return the record lock status?

    Thanks Dave. Do you know any other way to lock a record without using LOCK() function? My problem is that I need to lock other users from using one particular record, but still be able to update others records. For example, if there are 2 users running program at the same time and try to...
  12. diem

    how to return the record lock status?

    Hello everyone, I'm using VFP 6.0. I have 2 exe are running at the same time. Each exe opens the tables in shared mode. If one exe attempts to lock a record using LOCK() function, how does the other exe find out that record is locked. I tried to use ISRLOCKED() function to test the record...
  13. diem

    index problem

    Hello everyone, For example, I have a table like this and an index with UNIQUE type is set to Make with name MAKE. ID Make Model 1 AGCO test1 2 AGCO test2 3 AXIAL test3 4 AXIAL test4 If I do a command "SET ORDER TO MAKE", the result is: ID Make Model...
  14. diem

    How to export report to excel(.xls) file?

    Hi, Does anyone know how to export a report to excel (.xls) file? Any help would appreciate. Diem
  15. diem

    To Invoke Print Dialog Box

    try this: report form "xxx.frx" to printer prompt preview noconsole Thanks
  16. diem

    how to get page break correctly on a txt file when the report is saved

    Hi everyone, I'm having problem with the report when save it to a text file. The page breaks on the txt file are messed up. Does anyone know a way to control the report so that each page on the report is one page in txt file? I'm using the command "report form xx.frx to file...
  17. diem

    "report form to a text file" problem

    Hi everyone, I'm having problem with saving a report to a .txt file. I use the command line to save the report: report form (reportname) to file (out_file) ascii The problem is when I open the text file, the pages didn't break correctly. I tried to set _ASCIICOLS and _ASCIIROWS with...
  18. diem

    how to get return value for 'Cancel' or 'Print' on Print dialog?

    Hi, If I issue a command that asks users to print a report: report form "XXX.frx" to printer prompt how do I get the return value if the user click "Print" or "Cancel"? My problem is that I have to go through the whole table and do a report for each record. But I...
  19. diem

    How to change the backcolor of Image control?

    Hi Chris Thank you very much!
  20. diem

    How to change the backcolor of Image control?

    Hi, Does anyone know how to change the background color of the image control? For example, I add a "test.ico" into the picture property of the image control. But if the icon doesn't fill the whole image control and I want to change the background of the image to some other color, is...

Part and Inventory Search

Back
Top