Search found 31 matches

by Sbryan
Tue Nov 24, 2015 9:54 am
Forum: eXpress++ Support
Topic: DC_Array2CSV
Replies: 9
Views: 17476

Re: DC_Array2CSV

Here's a simple one aTest:= {{"N","01600676","ABC DEF GHI JKL, 15,600MAH",0.000},; {"Y","01623056","123456, 654321, TEST, TEST",1.000},; {"Y","01623057","A,B,C,D,E,F,G,H,I",1.000}} aHeader := { 'ACTIVE','ITEM', 'DESCRIP','QTY'} DC_Array2CSV("test.csv",aTest,aHeader)
by Sbryan
Tue Nov 24, 2015 8:56 am
Forum: eXpress++ Support
Topic: DC_Array2CSV
Replies: 9
Views: 17476

Re: DC_Array2CSV

ACTIVE,ITEM,DESCRIP,QTY ="N",="01600676",="ABC DEF GHI JKL, 15,600MAH",0.000 ="Y",="01623056",="123456, 654321, TEST, TEST",1.000 ="Y",="01623057",="A,B,C,D,E,F,G,H,I",1.000 "N","01600676","ABC DEF GHI JKL, 15,600MAH",0.000 "Y","01623056","123456, 654321, TEST, TEST",1.000 "Y","01623057","A,B,C,D,E...
by Sbryan
Tue Nov 24, 2015 7:34 am
Forum: eXpress++ Support
Topic: DC_Array2CSV
Replies: 9
Views: 17476

Re: DC_Array2CSV

Was it something to do with preventing Excel from auto-detecting the format of a field?
by Sbryan
Tue Nov 24, 2015 7:00 am
Forum: eXpress++ Support
Topic: DC_Array2CSV
Replies: 9
Views: 17476

DC_Array2CSV

In _dcfunct.prg around line 6952 of the Array2CSV function it has: cLine += '="' + aData[i,j] + '"' What is the purpose of the added = sign? When exporting data which contains a "," and then opening using Excel it causes a new column whenever it sees a comma even though the string is enclosed in quo...
by Sbryan
Tue Nov 17, 2015 4:16 pm
Forum: eXpress++ Support
Topic: Spreadsheets
Replies: 1
Views: 5335

Re: Spreadsheets

LibXL is a nice library for generating even complicated spreadsheets. There is a wrapper class for it that uses ot4xb. I believe it is called HBlibXL. I used it for a project and it made it very easy.
by Sbryan
Tue Nov 17, 2015 8:58 am
Forum: eXpress++ Support
Topic: Checkbox in Browse
Replies: 13
Views: 22867

Re: Checkbox in Browse

I noticed that when I resize using these getoptions is when it changes from a check mark to a "P"

Code: Select all

DCGETOPTIONS RESIZE RESIZEDEFAULT DCGUI_RESIZE_AUTORESIZE_SCALEFONT
  
I want it so if the window is re-sized, everything scales properly.
by Sbryan
Mon Nov 16, 2015 3:58 am
Forum: eXpress++ Support
Topic: Checkbox in Browse
Replies: 13
Views: 22867

Re: Checkbox in Browse

I ended up using the Wingding font method but noticed if I resize the window it changes the font and gives me a P instead of a check mark.

How can I prevent this?
by Sbryan
Tue Nov 10, 2015 9:49 am
Forum: eXpress++ Support
Topic: Checkbox in Browse
Replies: 13
Views: 22867

Re: Checkbox in Browse

I knew it had to be something simple.

I'll try the webdings font too.

Thanks,

Stephen
by Sbryan
Tue Nov 10, 2015 8:15 am
Forum: eXpress++ Support
Topic: Checkbox in Browse
Replies: 13
Views: 22867

Checkbox in Browse

Hi everyone, I'm fairly new to eXpress++ and have been learning a lot in the past few weeks. Currently I need to have a checkbox in a browse and found this code from an older post. #INCLUDE "dcdialog.CH" #INCLUDE "dcbitmap.CH" #INCLUDE "appevent.CH" FUNCTION Main() LOCAL GetList[0], oBrowse, aDir, n...
by Sbryan
Thu Oct 22, 2015 2:16 am
Forum: eXpress++ Support
Topic: no express++ .hlp file available in windows 10
Replies: 10
Views: 21077

Re: no express++ .hlp file available in windows 10

I was able to get .hlp files working in Windows 10 by doing what Piotr said but just copied winhlp32 into a folder and renamed it winhlp.exe. Then I changed the file association for .hlp to that file. Now all of my older help files work.