Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Spambucket

Pages: [1]
1
QB64 Discussion / Re: Query AD from QB64
« on: August 17, 2021, 02:11:32 pm »
Thanks for the replies... I have worked with QB64's SHELL command, but not sure if that would work with command-line access to AD. I am looking to poll a staff member's first, last name and another field. Thanks!

2
QB64 Discussion / Query AD from QB64
« on: August 17, 2021, 08:38:27 am »
Question of the day... is it possible to query Active Directory from QB64 running on a Windows OS?
 

3
QB64 Discussion / Re: wrapping .png files to the compiled .exe file
« on: August 16, 2021, 02:59:25 pm »
Thsnk, will give that a try!

4
QB64 Discussion / wrapping .png files to the compiled .exe file
« on: August 16, 2021, 02:27:44 pm »
Sorry if this has been hashed through before:

I have a single .bas file that compiles OK. Is there a way to "include" several .png files into this .exe file so the single compiled .exe program does not have to access the HD to load the .png files?

Thanks!

5
QB64 Discussion / random write to a .csv file
« on: May 08, 2021, 12:56:03 am »
Hello all you QB64 hackers! It's 12:40am and I should have saved this and gone to bed. But as you well know, you have to write code while the fire is hot, so to speak!

I have a single .csv file with 168 rows down and 4 columns across: All cells are variable-length text.
I can DIM Array$(168,4) and then OPEN FILENAME$ FOR INPUT as 1 -  and read the entire .csv file into Array$(168,4) - this works OK.

Here is my problem (and most likely it has a simple solution):

I would like be able to: open the .csv file and WRITE just one record (4 variable-length text columns) back to that same .csv file, and then close the file.
Side note: the .csv file must be able to be open (shared) by other users at the same time.

Any suggestions? Thanks in advance,

- Spambucket (BASIC codeing since '77)

Pages: [1]