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 bkrike 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: asm338s
  • Content: Threads
  • Order by date
  1. asm338s

    Suggestions - How to avoid corrupt index problem?

    Hi All: What do you think would be a good idea to avoid corrupt index problems. 1. Everytime the program loads - DELETE ALL INDEX FILES - USE ALL TABLES EXCLUSIVELY - REINDEX ALL TABLES 2. Copy all the indexes in a seperate folder and replace them with old ones everytime a program loads...
  2. asm338s

    combo box question?

    How can I allow the user to select multiple items from a combo box?
  3. asm338s

    Converting from Foxpro 6.0 to 7.0

    What do I need to do to smoothly transfer all my apps from 6.0 to 7.0? Which files do I need to back up? Is there a list of steps somewhere that one should follow. I heard that 7.0's database is based on sql server. Will this have a major impact on my existing 6.0 tables. Please tell me...
  4. asm338s

    Reinstall a Program

    I am having a problem: When I reinstall my program it removes the ProgramName in the Start Menu, but the shortcut Icon on the desktop and C:\MyApp folder is still there. How can I get rid of them?
  5. asm338s

    Hyperlink

    How can I redirect a user to a website when they click on one of the items in a Drop-down menu.
  6. asm338s

    command button

    How can you find out if a cmd button was clicked. if cmd1.click = .t. && this doesn't seem to work. Any ideas?
  7. asm338s

    Procedure Problem

    Is there anyway you can find out from where in the program a particular procedure is called? I call a procedure from my .exe when the program is started and then call it again when the program is closed by clicking a button on the toolbar. I want the procedure to behave differently depending...
  8. asm338s

    Zip reports

    How should go about zipping foxpro reports? Any ideas??? Thanks in advance.
  9. asm338s

    Colored Messagebox

    Has anyone used the mbox.app from universalthread.com? If yes, could you please guide me through on how to get started as there is no read me file with it that provides any instructions.
  10. asm338s

    Report to .txt File

    I am sending a report to a text file, but the file concatinates my spacing in the report. My report is set as landscape, but the text file comes all jumbled up. Any ideas on how to fix this? Thanks in advance. P.S: I have the code that I am using in thread184-206913
  11. asm338s

    show as landscape

    I am opening some foxpro reports in notepad(report from to .txt ascii) and I use frx2word to create word document for the same reports. Some of my reports are set as landscape, and thus I am losing some data on the right side. How can I have these reports show as landscape in notepad, and...
  12. asm338s

    frx2word - app not found

    I am using this program that I downloaded from Universalthread.com that converts foxpro reports to word documents. At first I was doing this: oF2W=NEWOBJECT("frx2word","msoexp") oF2W.SaveFolder="C:\testword\" oF2W.DOC_FileName="Wordout.doc&quot...
  13. asm338s

    Notepad

    I am sending a report to a .txt file. After the program creates thie file I want to open this .txt file so the users can see the report generated. Any Ideas? Thanks in advance.
  14. asm338s

    Fox2Word

    Has anyone used this class before. I have just started to play around with it. I added the following code: oF2W=NEWOBJECT("frx2word","msoexp") oF2W.SaveFolder="C:\testword\" oF2W.DOC_FileName="Wordout.doc" oF2W.ReportHome="C:\MyApp" &&...
  15. asm338s

    Window Text

    I found this sample code on news2news.com relating to closing all running programs. When I run that program it works but it shows the text for all programs closed either on top of the form, from where I am calling it or in the background window. Any clue about how to stop it from doing that.
  16. asm338s

    Desktop shotcut

    I created a desktop shotcut by placing the following code in my .exe : oWsh = CREATEOBJECT("wscript.shell") cDeskPath = oWsh.SpecialFolders("desktop") oShort = oWsh.CreateShortcut(cDeskpath+"\PCPrint Plus.LNK") oShort.TargetPath = "c:\Ianera\ianera.EXE&quot...
  17. asm338s

    Find the OS?

    How can you find out if the user is running Windows 9.x or Windows NT?
  18. asm338s

    Close all Programs

    Hi all: I want to close all running programs on a local machine before the users can run my application. Any Suggestions on how to go about that. Thanks
  19. asm338s

    New to PHP

    I am new to PHP. I am trying to create a simple website as a class project with 5-6 tables in it. Couple of one-to-many relationships and may be a shopping cart. What is good book recommended by you guys? Thanks
  20. asm338s

    Detail Table Problem in Report

    I have a pretty typical report that uses 2 tables. The top and bottom info comes from a table1 and the detail infor comes from table2 that has multiple entries for every key value in table1. I have both the tables in the database. When I run the report the first time with a selected date...

Part and Inventory Search

Back
Top