Search found 151 matches
- Wed Apr 10, 2024 10:33 pm
- Forum: Did you Know?
- Topic: A web service for your data
- Replies: 14
- Views: 52007
Re: A web service for your data
I am too
- Mon Nov 20, 2023 1:53 am
- Forum: phpBB Board Support
- Topic: Recovering from surgery
- Replies: 6
- Views: 27086
Re: Recovering from surgery
Roger, get well soon!
- Wed Sep 13, 2023 8:36 am
- Forum: Announcements
- Topic: BBS seems to be back up..
- Replies: 8
- Views: 30732
Re: BBS seems to be back up..
it feels faster
- Fri Feb 17, 2023 12:30 am
- Forum: eXpress++ Support
- Topic: ReplaceBookmark error Word automation
- Replies: 2
- Views: 5145
Re: ReplaceBookmark error Word automation
This has to do with a update of word.
Look at trust center
disable the protected view
Look at trust center
disable the protected view
- Sat Nov 26, 2022 2:13 am
- Forum: Xbase++ Support
- Topic: excel import question
- Replies: 10
- Views: 29067
Re: excel import question
i use this
// Street (C)
oSheet:Range("C2:C"+cMaxLength):NumberFormat := "@"
// Street (C)
oSheet:Range("C2:C"+cMaxLength):NumberFormat := "@"
- Thu Nov 24, 2022 8:07 am
- Forum: Xbase++ Support
- Topic: excel import question
- Replies: 10
- Views: 29067
Re: excel import question
Local cUPC := chr(39) + dbf->UPC
The ' forces Excel to use the value as text
The ' forces Excel to use the value as text
- Thu Nov 24, 2022 12:12 am
- Forum: Xbase++ Support
- Topic: excel import question
- Replies: 10
- Views: 29067
Re: excel import question
Bruce, [data] ITEM123, 45.75, VENDORNAME, 1234567890, Left Handed Metric Widget, 10/15/2022 The price comes in as number, upc comes in as number not text. No matter what valeus upc has. Your delimiter is comma you must send the upc as a string + the first character ' [data] ITEM123, 45.75, VENDORNAM...
- Wed Nov 23, 2022 7:59 am
- Forum: Xbase++ Support
- Topic: excel import question
- Replies: 10
- Views: 29067
Re: excel import question
before
the ' should be the first char of the upc string in the csv file
the ' should be the first char of the upc string in the csv file
- Tue Nov 22, 2022 11:55 pm
- Forum: Xbase++ Support
- Topic: excel import question
- Replies: 10
- Views: 29067
Re: excel import question
I think you should use
"'"+cUPCCode (" + ' + ")
"'"+cUPCCode (" + ' + ")
- Mon Oct 03, 2022 11:35 pm
- Forum: Xbase++ 2.0
- Topic: xBase++ QR Code print for tax authorities pruposes.
- Replies: 14
- Views: 32677
Re: xBase++ QR Code print for tax authorities pruposes.
I do it this way Local qr_content := "", ; qr_bmpfile := "", ; qr_file := GetTempFileName_a(GetTempPath_a()), ; qr_done := 0 qr_done:=DllCall("QRCODELIB.DLL", DLL_STDCALL, "FastQRCode",qr_content,qr_file,Pixel132x132) qr_bmpfile := strtran(qr_file,".tmp",".bmp") FRename(qr_file,qr_bmpfile) IF file(q...