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 gkittelson 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. manum79

    String type + Image type concatenation problem

    Hello Borislav Borissov, I tried as you said, but my data is getting corrupted. here is the code please help... lcCurrDir = SYS(5) + SYS(2003) lcFile = GETFILE("BMP") IF !EMPTY(lcFile) lcContent = "0X" + STRCONV(FILETOSTR(lcFile),15) lcsql = "Update tblusers set us_gsignature = " +...
  2. manum79

    Continued from String type + Image type Concatenation Problem [URGENT]

    Hey Borislav, Thank you very much for your imput. I am new to the FoxPro and I am not aware of using Cursor Schema. Here is the code that I am using. Please help... WITH THISFORM lcCurrDir = SYS(5) + SYS(2003) lcFile = GETFILE("BMP") IF !EMPTY(lcFile) *** This append general is only...
  3. manum79

    Continued from String type + Image type Concatenation Problem [URGENT]

    i tried the below code lcContent = "0x" + strconv(FileToStr(FilePath) ,15) and tried inserting it.......it did insert the image into the table but next time when i tried to retrieve the image its giving me the following error message OLE object is invalid or corrupted. Unbinding object...
  4. manum79

    String type + Image type concatenation problem

    thanks guys for all the replies ....... i tried the below code lcContent = "0x" + strconv(FileToStr(FilePath) ,15) and tried inserting it.......it did insert the image into the table but next time when i tried to retrieve the image its giveing me the following error message OLE object is...
  5. manum79

    String type + Image type concatenation problem

    i am developing a form where i am collecting personal information such as name, address and signature of the person as a bmp file........ i am saving the data in the SQL Server 2005 i am building a SQL query to insert the record....... the prob that i m facing is that i cannot concatenate the...
  6. manum79

    How to pass a form control as a parameter

    i m trying to write a procedure which accepts a form control and a string as the parameters....... but i dont have a clue how to pass a control as a parameter to this procedure plz help thanks manu

Part and Inventory Search

Back
Top