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 Chris Miller 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. TrueCode

    Toolbar Compilation Error

    Olaf, Thanks for your help. I was also to solve my compiling/building problem. It appeared that a .vcx was partially corrupted. I created a New and empty .vcx then I used ADD CLASS to copy all the objects of the old .vcx into the new, i deleted the old and compiled the New and it went well...
  2. TrueCode

    Toolbar Compilation Error

    I will try the debugger window. Really never used it with Build. Only used it to locate errors while running in Development Mode. -------------------------------------> "I have sought your assistance on this matter because I have exhausted all the help that I can find. You are free to...
  3. TrueCode

    Toolbar Compilation Error

    Thanks Olaf. I was building my project and it kept crashing so I tried to compile Class after class to see where the culprit is and then I realized that the toolbar was not compiling. Okay then, I will look for other places for the error. Thanks. ------------------------------------->...
  4. TrueCode

    Toolbar Compilation Error

    ...okay, things seem to be going elsewhere when I place a container inside another. Try to compile the following and you will see the error. ************************************************** *-- ParentClass: toolbar *-- BaseClass: toolbar *-- Time Stamp: 08/11/15 07:35:08 AM * DEFINE...
  5. TrueCode

    LISTBOX SETFOCUS PROBLEM

    Thanks alot guys, I had lost internet access for sometime and could not have thanked you. I used DarrelHawks suggestion. -------------------------------------> "I have sought your assistance on this matter because I have exhausted all the help that I can find. You are free to direct me...
  6. TrueCode

    LISTBOX SETFOCUS PROBLEM

    When my listbox tab order is reached I want it to select the first item on the list. It does not do that. You have to hit the down arrow key for this to happen. -------------------------------------> "I have sought your assistance on this matter because I have exhausted all the help...
  7. TrueCode

    LISTBOX SIMPLE PROBLEM

    Jimbo, thanks alot. It worked -------------------------------------> "I have sought your assistance on this matter because I have exhausted all the help that I can find. You are free to direct me to other source of help"
  8. TrueCode

    LISTBOX SIMPLE PROBLEM

    I have a listbox where i want use additems method to additems into three columns on the listbox. This is what I did this.cousins.Clear && removing existing items SCAN WHILE !EOF() disrow = RECNO() &&this.cousins.ListCount + 1 part1 = PADR(ALLTRIM(tempcard.fname),20,[ ]) part2 =...
  9. TrueCode

    HIGHLIGHTING A ROW IN A GRID.

    Thanks Guys, Did not realize this thing was so simple -------------------------------------> "I have sought your assistance on this matter because I have exhausted all the help that I can find. You are free to direct me to other source of help"
  10. TrueCode

    HIGHLIGHTING A ROW IN A GRID.

    I have been dancing with this at little avail. I have a grid based on a table. I want the grid to highlight the current record of the underlying table... Can someone help...not too good with grids. -------------------------------------> "I have sought your assistance on this matter...
  11. TrueCode

    HOW TO CHOP AND GLUE BACK A BINARY FILE

    ...program. I will now try sending it over the socket... I expect the same level of success. Here is the resulting CHOPANDGLUEFILES.PRG [\Code] **** CHOPANDGLUEFILES.PRG *************** ** ** THE FOLLOWING IS THE RESULT OF A COLLABORATION BETWEEN DSummZZZ and TrueCode **...
  12. TrueCode

    HOW TO CHOP AND GLUE BACK A BINARY FILE

    GriffMG I want to cut up the file in small pieces to send through a Winsock Control and to assemble the file on the other end. As I said, my example works well with .jpg,.xls,.doc (those I have tested so far) and .dbf. The .dbf does not work. It tells me the assembled file is not a table...
  13. TrueCode

    Suppressing PRINT SCREEN KEY

    Keepingbusy That does not prevent a program running on your computer other than your own program to be storing the clipboard each time the Print Screen Key is pressed. The solution lies in finding a way to prevent windows itself from recognizing the use of that key or key combination. I too...
  14. TrueCode

    HOW TO CHOP AND GLUE BACK A BINARY FILE

    I used the following code using FWRITE/FREAD however, when i comes to certain files it does not work. I tried it with .jpg,.doc,.xls files when I tried it on a VFP .dbf. It tells me the rejoined file is not a table So I am still stuck. [\Code] cInfile = GETFILE(,[Select a file Cut up and...
  15. TrueCode

    HOW TO CHOP AND GLUE BACK A BINARY FILE

    ...that is faster than this base64 approach. Using Daves FTPPUT/GET suggestion works with a target computer hosting an FTP Server. [\code] ************************************************************************** * * Class: Base64 * * Purpose: Encode/Decodes a file using the...
  16. TrueCode

    how to protect my system exe from REFOX

    badukist Can your EXE be decompiled if I used an encryption product such as encryptioner by NetLib. I would encrypt all the files including the EXE. -------------------------------------> "I have sought your assistance on this matter because I have exhausted all the help that I can...
  17. TrueCode

    WINSOCK, OH WINSOCK - Transfering Files

    Okay I am trying this from what Dave posted I am planning to send a the file by chopping it using the F??? functions. Then before I send each chunk as byte, I will send a text message to tell the receiving socket that the next message being received must be patched onto an already opened low...
  18. TrueCode

    WINSOCK, OH WINSOCK - Transfering Files

    I am buiding a Client Server App which will require the transfer of files via a dialup remote connnection. I have posted a number of requests for help and have received a number of them. However most of them are using TEXT transfers. LOCAL inString as string...
  19. TrueCode

    Import and Export of Fixed Assets Register

    I can get to import and export Customer and Vendor info. How do I get to import and export Fixed Assets Register Data. I am talking about FA Modules -------------------------------------> "I have sought your assistance on this matter because I have exhausted all the help that I can find...
  20. TrueCode

    Winsock Getdata buffer not clearing

    I have a routine on a form that seeks to close all connected clients. The message is so coded that upon receipt the client executes its local closedown routine. I am finding that the first message goes fine to the first client (I scanned the server for opened connections then send the message...

Part and Inventory Search

Back
Top