Search found 44 matches
- Saturday 16th July 2022 1:13pm
- Forum: Web
- Topic: gb.web on a server
- Replies: 11
- Views: 600
Re: gb.web on a server
BruceSteers wrote: ↑ Wednesday 13th July 2022 12:35pm Can anyone tell me why if i make a link and point it to my gambas cgi app when clicking it all it does is download the cgi not run it? TIA Bruce Never mind I figured it out :) I now have gb.web things working :) Hi Bruce, could you explain why i...
- Sunday 10th July 2022 2:37pm
- Forum: Lounge
- Topic: Renting a VPS
- Replies: 7
- Views: 491
Re: Renting a VPS
Thanks for the info Cogier. The cost for me is about $6.00 a month for a "droplet" (£5.00), this depends on usage As I understand a 'droplet' is a VPS. They advertise with fixed amounts, so how does usage influence your cost? Do you have full root access to your VPS 'droplet' so you can install what...
- Friday 8th July 2022 2:58pm
- Forum: Lounge
- Topic: Renting a VPS
- Replies: 7
- Views: 491
Renting a VPS
Hi all, I'm looking to rent a VPS. I want to revamp my 'How to Gambas' and 'Gambas Learning' projects as they kind of ended when Sholzy quit hosting the Whiteislands forum. I have a lot of spare time atm. since I recently lost my job. Sidenote: I actually worked for a company where I setup a Debian ...
- Wednesday 30th March 2022 4:56pm
- Forum: Component
- Topic: barcode scanner component
- Replies: 4
- Views: 1229
Re: barcode scanner component
Hi, I run into this same problem a while ago. First of all, forget SerialPort, it is way more simple (as Cogier already stated). The USB barcode scanner acts as keyboard input. Make a form with a TextBox (let's call it tbxBarCode) and a Label (let's call it lblScannedBarCode) Next apply following co...
- Tuesday 1st February 2022 1:05pm
- Forum: General
- Topic: Barcode scanner
- Replies: 5
- Views: 1535
Re: Barcode scanner
I used to just monitor a TextBox for keyboard entry, something like this: Private Sub txbBarCodeInput_KeyPress() If Chr(13) Then ' This is the last non-text character from BCreader ' Put Code here EndIf End Sub This is just from memory but hopefully will give you an idea to work from. Make sure the...
- Tuesday 1st February 2022 1:03pm
- Forum: General
- Topic: Barcode scanner
- Replies: 5
- Views: 1535
Re: Barcode scanner
Hi gbWilly, long time no hear! I have written barcode reading programs, but I have always used a USB reader, which is seen by the computer as a keyboard. Once the gun has read the code, it sends the text to the keyboard with a newline on the end. Hi Cogier, I am using a USB reader and reading your ...
- Monday 31st January 2022 4:09pm
- Forum: General
- Topic: Barcode scanner
- Replies: 5
- Views: 1535
Barcode scanner
Hi you all, I'm currently trying to figure out how to make an application to scan barcodes. I have a USB barcode scanner to scan the barcodes. I have been searching this forum and other places (like wiki) to figure out how to get this done but nothing was really helpful. I presume I need to use Seri...
- Thursday 8th July 2021 2:20pm
- Forum: General
- Topic: Email with smtp a pdf
- Replies: 6
- Views: 2970
Re: Email with smtp a pdf
That's a very old post of mineI had a look at this and discovered (thanks to gbWilly) that you need to load the PDF file, and then it works as expected. Try the following:-

- Tuesday 8th December 2020 2:42pm
- Forum: General
- Topic: A Gambas Newbie questions
- Replies: 16
- Views: 9331
Re: A Gambas Newbie questions
Hi AndieGamble Also I have a custom wrote DLL that handles the tills promotions (written in VB.net) I did not write this I paid someone to do that for me can I still use it with Gambas? DLL or Dynamic Link Libraries are a Windows thing and will not run on linux. Also, all the code would probably be ...
- Tuesday 29th September 2020 12:17pm
- Forum: General
- Topic: unable to create working installation rpm
- Replies: 4
- Views: 3619
Re: unable to create working installation rpm
Hi sadams54,
Apparently the package util-linux-2.35.1-1.fc32.x86_64 already contains a file/binary named 'rename'.
That's what causes your conflict as your package is also named 'rename'
I suggest you name your package differently and try again.
Apparently the package util-linux-2.35.1-1.fc32.x86_64 already contains a file/binary named 'rename'.
That's what causes your conflict as your package is also named 'rename'
I suggest you name your package differently and try again.