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 TouchToneTommy 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. vie3548

    SSR_GETUSERTMPSTR fails

    Hi, Can anyone advise me on why SSR_GETUSERTMPSTR returns false. I have the coding below. SSR_GetAllUserInfo is working fine. I used SSR_GetUserTmpStr to download the fingerprint template but it always returns false. Did i miss something here?pls advise Thanks, Elvie sdwEnrollNumber = ""...
  2. vie3548

    STRCONV(,15) VFP6

    hi, how to convert below codes in vfp6 SET LIBRARY TO LOCFILE("vfpencryption.fll") cStr="abcd" ?LOWER(STRCONV(Hash(cStr,2),15)) result : 88d4266fd4e6338d13b845fcf289579d209c897823b9217da3e161936f031589 thanks for help.. Vie
  3. vie3548

    MEMO FIELD NULL INSTEAD OF EMPTY STRING

    hi guys, im using SPT updatable cursor to update mysql database backend. updating is working fine. but i have issue with memo fields. in mysql, i have field: narration varchar(500). using SQLEXEC(), this field converts to memo field in vfp cursor as it's more than 254 chars. to update backend i...
  4. vie3548

    PACK() in PHP via VFP

    Hi Sir Chris, It worked. getting same result and much simpler. Thank you for your time, it was really helpful. [smile2] Regards, Vie
  5. vie3548

    FOXBARCODEQR FOR UNICODE

    hi Sir, Glad it worked. Sorry i didn't get you with space between words. Regards, Vie
  6. vie3548

    FOXBARCODEQR FOR UNICODE

    hi Sir, create uft8encode.prg then call in QR code (every fields). in you report_barcode.frx : change the expression of Ole control to : poFbc.FullQRCodeImage("Name : "+table_barcode.barcode+"|add1:"+utf8encode(table_barcode.barcode1)...
  7. vie3548

    PACK() in PHP via VFP

    hi Sir, i got it solved. Thank you for your time [smile] Vie
  8. vie3548

    PACK() in PHP via VFP

    hi Sir Atlopes, just got one more question. how to use BINTOC(1, "1RS") in vfp6. RS is only available in 9. Thank you. Vie
  9. vie3548

    PACK() in PHP via VFP

    hi Sir Mike, it's ok. me too was confused. but it worked now. Thank you for giving time. [smile] Vie
  10. vie3548

    PACK() in PHP via VFP

    hi sir Atlopes, It worked. Thank you very very much for help. [smile2] Vie
  11. vie3548

    FOXBARCODEQR FOR UNICODE

    Hi sir, just pass utf8encode routine in QR code image. it will work. pls check below : loFbcQ.FullQRCodeImage(utf8encode(cString) ,, , 6 * 33, 1)) function utf8encode(cStrText) IF TYPE("cStrText")<>"C" cStrText="" ENDIF LOCAL cRetVal As String cFilen=FORCEEXT(SYS(2015),"txt")...
  12. vie3548

    PACK() in PHP via VFP

    hi Sir Chris, I agree with you.I, too was confused on how their tool works. how to explain this. am generating barcode thru our software, this barcode has to be validated in third party tool. third party tool works that way (php code). to be able to get a barcode which is compliant to the third...
  13. vie3548

    PACK() in PHP via VFP

    hi sir Mike, i tried this, but not getting same result. cValue="My Shop" cTag=RIGHTC(Transform(1, '@02X'),2) cLen=RIGHTC(Transform(LEN(CREATEBINARY(cValue)), '@02X'),2) ?base64_encode(cTag+cLen+cValue) FUNCTION base64_encode(S as String) LOCAL i,j,k,q,ch,s2,buf,basechars basechars =...
  14. vie3548

    PACK() in PHP via VFP

    hi, can anyone help pls.. i have php code which i need to be converted in vfp. i need to get same result. have anyone tried this.. pls help i have sprintf and base64_encode routine. for sprintf(), i can get same result using : RIGHTC(Transform(LEN(CREATEBINARY(1)), '@02X'),2) PHP...
  15. vie3548

    FOXBARCODEQR FOR UNICODE

    hi sir, did you mean arabic text in qr code?
  16. vie3548

    FOXBARCODEQR FOR UNICODE

    hi sir, you're right i could use read() rather than saving to file. Thank you for pointing out. Elvie [smile2]
  17. vie3548

    FOXBARCODEQR FOR UNICODE

    hi sir, i was able to make it work in v6 using this and its working perfectly. loFbcQ.FullQRCodeImage(utf8encode(cString) ,, , 6 * 33, 1)) function utf8encode(cStrText) IF TYPE("cStrText")<>"C" cStrText="" ENDIF LOCAL cRetVal As String cFilen=FORCEEXT(SYS(2015),"txt")...
  18. vie3548

    FOXBARCODEQR FOR UNICODE

    hi sir Createbinary(Strconv(cString,9)) value is i tried this : loFbcQ.FullQRCodeImage(Createbinary(Strconv(cString,9)) ,, , 6 * 33, 1)) i am getting same result as Strconv(createbinary(cString),9) اسم البائع: العالمية للذهب والألماس Thank you. Elvie
  19. vie3548

    FOXBARCODEQR FOR UNICODE

    hi sir, cpcurrent() value is 1256 Createbinary(cString) value is i tried this : loFbcQ.FullQRCodeImage(Strconv(createbinary(cString),9),, , 6 * 33, 1)) and the result is correct now without ? as spaces. i just need to convert STRCONV(,9) in v6. i really did appreciate your help...
  20. vie3548

    FOXBARCODEQR FOR UNICODE

    hi sir, Thank you for your time in answering my queries. It is working now. i tried your code below : loFbcQ.FullQRCodeImage(Strconv(Strconv(cString,1),9),, , 6 * 33, 1)) the only issue, spaces are converted to ?. for ?, i can use strtran to remove it...

Part and Inventory Search

Back
Top