Search found 1184 matches

by phishguy
Jun 29, 2018 2:53
Forum: Beginners
Topic: How to work with Excel and Word documents
Replies: 6
Views: 2015

Re: How to work with Excel and Word documents

Have you tried a forum search? There are numerous examples including my xlhelper and wordhelper wrappers.
by phishguy
Sep 09, 2016 20:04
Forum: Libraries Questions
Topic: Excel Disphelper help
Replies: 253
Views: 66418

Re: Excel Disphelper help

I'm back with a new question. I'm trying to add a customorder sort to my xlhelper wrapper without any success. It appears that I possibly need to do an AddCustomList. However, I believe that it requires a variant array and I'm not sure how to do that. If anyone has an example to do a customorder sor...
by phishguy
Jul 13, 2016 23:14
Forum: Projects
Topic: Excel helper wrapper
Replies: 71
Views: 30010

Re: Excel helper wrapper

by phishguy
Jul 13, 2016 22:24
Forum: Projects
Topic: Excel helper wrapper
Replies: 71
Views: 30010

Re: Excel helper wrapper

Well that bites. Unfortunately, like I said, I don't have Excel 2016. Anyways, the xlrelease releases the objects and therefore xlquit doesn't have an object to reference to. So, yes that was expected behavior.
by phishguy
Jul 13, 2016 22:05
Forum: Projects
Topic: Excel helper wrapper
Replies: 71
Views: 30010

Re: Excel helper wrapper

I don't have Excel 2016. However, you need to have an xlrelease statement. I didn't see that in your example.
by phishguy
Feb 03, 2016 0:06
Forum: Sources, Examples, Tips and Tricks
Topic: FTP class (Windows 32-bit and 64-bit)
Replies: 2
Views: 2243

Re: FTP class (Windows 32-bit and 64-bit)

This looks useful. Is there anyway to get a list of files in the selected directory?
by phishguy
Jan 21, 2016 4:50
Forum: Projects
Topic: Excel helper wrapper
Replies: 71
Views: 30010

Re: Excel helper wrapper

Not at a computer with Excel right now. Try putting an xlsaved before the xlquit. If the version of excel or the default file format is different for the source file, it may be prompting to save the file. This of course you can't see because you are opening it invisible. Let me know if this fixes th...
by phishguy
Oct 26, 2015 20:35
Forum: General
Topic: Solved - Need help with PRINT #
Replies: 11
Views: 2042

Re: Need help with PRINT #

No problem for me in Windows 7.
Remark: the line "If Eof(1) Then Exit For" is useless in this case of "Open Cons".
Actually it's not completely useless. If you enter a control Z it will exit the loop.

Works OK here with Win 7 pro.
by phishguy
Mar 13, 2015 16:03
Forum: Linux
Topic: Debian package FBC-1.06.0~debian7_armhf
Replies: 11
Views: 6828

Re: Debian package FBC-1.01~debian7_armhf

Yes, it works. I had just missed the second part of your post.
sudo apt-get -f install
After that, everything worked great.

Thanks again.
by phishguy
Mar 13, 2015 5:28
Forum: Linux
Topic: Debian package FBC-1.06.0~debian7_armhf
Replies: 11
Views: 6828

Re: Debian package FBC-1.01~debian7_armhf

I just got my RPi2 a couple of days ago. I finally had a chance today to plug it in, get Raspian installed, install Freebasic and it's dependencies, and install Geany. It took me a bit of forum research since I am very much a noob with Linux. Anyways, I would just like to report that so far it seems...
by phishguy
Feb 28, 2015 15:43
Forum: Hardware Interfaces / Communication
Topic: Serial port lockups with FB1.01.0-win32
Replies: 11
Views: 5511

Re: Serial port lockups with FB1.01.0-win32

I just tried FBC 1.02.0. The problem appears to be fixed.
by phishguy
Feb 28, 2015 3:06
Forum: Hardware Interfaces / Communication
Topic: Serial port lockups with FB1.01.0-win32
Replies: 11
Views: 5511

Re: Serial port lockups with FB1.01.0-win32

I still think that it must have something to do with the thread. The following non-threaded code works without a problem. It's essentially doing the same thing. Dim As String a,b Open Com "com3:115200,n,8,1,cs0,cd0,ds0,rs" As #1 Do a = Inkey If a = Chr(27) Then Exit Do End If If a <> "...
by phishguy
Feb 27, 2015 22:49
Forum: Hardware Interfaces / Communication
Topic: Serial port lockups with FB1.01.0-win32
Replies: 11
Views: 5511

Re: Serial port lockups with FB1.01.0-win32

I tested on my home PC running Windows 8 64 bit this time. Indeed your program works on the older versions of FBC and locks up with 1.01.0. My example code works for any version. So, at this point it seems to be something related to the threading. I'm not sure what though.
by phishguy
Feb 26, 2015 23:14
Forum: Hardware Interfaces / Communication
Topic: Serial port lockups with FB1.01.0-win32
Replies: 11
Views: 5511

Re: Serial port lockups with FB1.01.0-win32

Do you have example minimal test code that fails for you. I tried the following test program with a loopback without any issues. Win7 pro 64 bit FB1.01.0-win32 dim as integer x,y open com "com1:115200,n,8,1,cs0,cd0,ds0,rs" as #1 for x = 1 to 10000 print x, print #1,x input #1,y print y nex...
by phishguy
Jan 30, 2015 2:57
Forum: Projects
Topic: Excel helper wrapper
Replies: 71
Views: 30010

Re: Excel helper wrapper

Sure thing. See first post.