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 strongm 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

    ...varchar(500). using SQLEXEC(), this field converts to memo field in vfp cursor as it's more than 254 chars. to update backend i have this command : *fheader is linked to table in server via SPT sele fheader append blank gather name (oObj) memo if the field is empty its becomes NULL...
  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

    ...fixed) length = number of the bytes of string value = My Shop then, the tlv list is converted to hex then to base64 PHP $tag = pack('H*', sprintf("%02X",1)); $value = "My Shop"; $length = pack('H*', sprintf("%02X",strlen($value))); $lenVal = sprintf("%02X",strlen($value)) ; echo...
  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

    ...base64_encode routine. for sprintf(), i can get same result using : RIGHTC(Transform(LEN(CREATEBINARY(1)), '@02X'),2) PHP $tag = pack('H*', sprintf("%02X",1)); $value = "My Shop"; $length = pack('H*', sprintf("%02X",strlen($value))); $lenVal = sprintf("%02X",strlen($value)) ; echo...
  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

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

    ...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. strtran(Strconv(Strconv(cString,1),9),"?"," ")...

Part and Inventory Search

Back
Top