Search found 1184 matches
- Jun 29, 2018 2:53
- Forum: Beginners
- Topic: How to work with Excel and Word documents
- Replies: 9
- Views: 5173
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.
- Sep 09, 2016 20:04
- Forum: Libraries Questions
- Topic: Excel Disphelper help
- Replies: 253
- Views: 73463
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...
- Jul 13, 2016 23:14
- Forum: Projects
- Topic: Excel helper wrapper
- Replies: 71
- Views: 33510
Re: Excel helper wrapper
Excel 2016 may be a little buggy?
http://answers.microsoft.com/en-us/offi ... d2407d3a8e
http://answers.microsoft.com/en-us/offi ... d2407d3a8e
- Jul 13, 2016 22:24
- Forum: Projects
- Topic: Excel helper wrapper
- Replies: 71
- Views: 33510
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.
- Jul 13, 2016 22:05
- Forum: Projects
- Topic: Excel helper wrapper
- Replies: 71
- Views: 33510
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.
- Feb 03, 2016 0:06
- Forum: Sources, Examples, Tips and Tricks
- Topic: FTP class (Windows 32-bit and 64-bit)
- Replies: 2
- Views: 2593
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?
- Jan 21, 2016 4:50
- Forum: Projects
- Topic: Excel helper wrapper
- Replies: 71
- Views: 33510
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...
- Oct 26, 2015 20:35
- Forum: General
- Topic: Solved - Need help with PRINT #
- Replies: 11
- Views: 2399
Re: Need help with PRINT #
Actually it's not completely useless. If you enter a control Z it will exit the loop.No problem for me in Windows 7.
Remark: the line "If Eof(1) Then Exit For" is useless in this case of "Open Cons".
Works OK here with Win 7 pro.
- Mar 13, 2015 16:03
- Forum: Linux
- Topic: Debian package FBC-1.06.0~debian7_armhf
- Replies: 11
- Views: 7634
Re: Debian package FBC-1.01~debian7_armhf
Yes, it works. I had just missed the second part of your post.
Thanks again.
After that, everything worked great.sudo apt-get -f install
Thanks again.
- Mar 13, 2015 5:28
- Forum: Linux
- Topic: Debian package FBC-1.06.0~debian7_armhf
- Replies: 11
- Views: 7634
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...
- Feb 28, 2015 15:43
- Forum: Hardware Interfaces / Communication
- Topic: Serial port lockups with FB1.01.0-win32
- Replies: 11
- Views: 6364
Re: Serial port lockups with FB1.01.0-win32
I just tried FBC 1.02.0. The problem appears to be fixed.
- Feb 28, 2015 3:06
- Forum: Hardware Interfaces / Communication
- Topic: Serial port lockups with FB1.01.0-win32
- Replies: 11
- Views: 6364
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 <> "...
- Feb 27, 2015 22:49
- Forum: Hardware Interfaces / Communication
- Topic: Serial port lockups with FB1.01.0-win32
- Replies: 11
- Views: 6364
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.
- Feb 26, 2015 23:14
- Forum: Hardware Interfaces / Communication
- Topic: Serial port lockups with FB1.01.0-win32
- Replies: 11
- Views: 6364
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...
- Jan 30, 2015 2:57
- Forum: Projects
- Topic: Excel helper wrapper
- Replies: 71
- Views: 33510
Re: Excel helper wrapper
Sure thing. See first post.