Search found 151 matches

by Koverhage
Wed Apr 10, 2024 10:33 pm
Forum: Did you Know?
Topic: A web service for your data
Replies: 9
Views: 214

Re: A web service for your data

I am too
by Koverhage
Mon Nov 20, 2023 1:53 am
Forum: phpBB Board Support
Topic: Recovering from surgery
Replies: 6
Views: 2884

Re: Recovering from surgery

Roger, get well soon!
by Koverhage
Wed Sep 13, 2023 8:36 am
Forum: Announcements
Topic: BBS seems to be back up..
Replies: 8
Views: 3661

Re: BBS seems to be back up..

it feels faster
by Koverhage
Fri Feb 17, 2023 12:30 am
Forum: eXpress++ Support
Topic: ReplaceBookmark error Word automation
Replies: 2
Views: 1836

Re: ReplaceBookmark error Word automation

This has to do with a update of word.
Look at trust center
disable the protected view
c7681ab5-fa2e-4944-97d2-88affe6776aa.png
c7681ab5-fa2e-4944-97d2-88affe6776aa.png (46.2 KiB) Viewed 1821 times
by Koverhage
Sat Nov 26, 2022 2:13 am
Forum: Xbase++ Support
Topic: excel import question
Replies: 10
Views: 5078

Re: excel import question

i use this

// Street (C)
oSheet:Range("C2:C"+cMaxLength):NumberFormat := "@"
by Koverhage
Thu Nov 24, 2022 8:07 am
Forum: Xbase++ Support
Topic: excel import question
Replies: 10
Views: 5078

Re: excel import question

Local cUPC := chr(39) + dbf->UPC
The ' forces Excel to use the value as text
by Koverhage
Thu Nov 24, 2022 12:12 am
Forum: Xbase++ Support
Topic: excel import question
Replies: 10
Views: 5078

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...
by Koverhage
Wed Nov 23, 2022 7:59 am
Forum: Xbase++ Support
Topic: excel import question
Replies: 10
Views: 5078

Re: excel import question

before
the ' should be the first char of the upc string in the csv file
by Koverhage
Tue Nov 22, 2022 11:55 pm
Forum: Xbase++ Support
Topic: excel import question
Replies: 10
Views: 5078

Re: excel import question

I think you should use
"'"+cUPCCode (" + ' + ")
by Koverhage
Mon Oct 03, 2022 11:35 pm
Forum: Xbase++ 2.0
Topic: xBase++ QR Code print for tax authorities pruposes.
Replies: 14
Views: 17655

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