Search found 139 matches

by sadams54
Tuesday 5th December 2023 11:03pm
Forum: General
Topic: Printing to a Zebra LAN Printer
Replies: 9
Views: 29137

Re: Printing to a Zebra LAN Printer

I have used cups to send printer data in my POS application. I am sure you can go direct to port but you are limiting yourself to particular printers that way. The problem with zebra (having worked with their stuff) is that they do not have any linux support.
by sadams54
Tuesday 5th December 2023 11:00pm
Forum: General
Topic: {Solved} Allow a user to move a control and right click
Replies: 6
Views: 19102

Re: {Solved} Allow a user to move a control and right click

yep, I used that alternate as it worked exactly as I wanted.
by sadams54
Tuesday 5th December 2023 7:41pm
Forum: General
Topic: {Solved} Allow a user to move a control and right click
Replies: 6
Views: 19102

Re: Allow a user to move a control and right click

thank you. I do not need the context menu since the drag option worked so perfectly. But everything was perfect and as always you guys are awesome.
by sadams54
Monday 4th December 2023 11:44pm
Forum: General
Topic: {Solved} Allow a user to move a control and right click
Replies: 6
Views: 19102

{Solved} Allow a user to move a control and right click

I have 2 questions...

1.. is it possible to allow a user to drag a control around my program screen and allow the control to be moved there?

2.. If I put a right click or context menu on a group of controls how can I tell which control spawned the right click menu?
by sadams54
Wednesday 29th November 2023 10:13pm
Forum: General
Topic: can't access mysql
Replies: 3
Views: 8002

Re: can't access mysql

nobody has any ideas?
by sadams54
Tuesday 21st November 2023 1:21am
Forum: General
Topic: [SOLVED] how to close a non modal window
Replies: 2
Views: 6629

Re: how to close a non modal window

sorry, I solved it myself but here is the answer....
I created a sub to find the window and close it

Code: Select all

Sub KillLCarsVisual()
  Dim D As Window

  For Each D In Windows
    If d.Name = "FLCARSVisual" Then 
      d.Close
    Endif
  Next
  
End
by sadams54
Tuesday 21st November 2023 12:21am
Forum: General
Topic: [SOLVED] how to close a non modal window
Replies: 2
Views: 6629

[SOLVED] how to close a non modal window

I am bringing up a non modal window from code. Sometime later I need to close the non modal window from different code. I just can't figure out how to do this. I tried fWindow.close and no go.
by sadams54
Wednesday 15th November 2023 9:05pm
Forum: General
Topic: [SOLVED] Access Information on program created control
Replies: 2
Views: 6185

Re: Access Information on program created control

Thank you that clued me into the right place
by sadams54
Wednesday 15th November 2023 12:51am
Forum: General
Topic: [SOLVED] Access Information on program created control
Replies: 2
Views: 6185

[SOLVED] Access Information on program created control

I actually have a question. background: I have buttons that are created dynamically based on ever changing information. The buttons are placed and arranged with a .text and a .tag the buttons are attached to a click event that does work. How do I wipe out the dynamically created buttons so I can mak...
by sadams54
Thursday 26th October 2023 7:26pm
Forum: General
Topic: can't access mysql
Replies: 3
Views: 8002

Re: can't access mysql

I am going to say yes local access is enabled because there is another application that uses the mysql db on that system and it runs fine. It is not a gambas app tho. I am thinking the issue is something to do with fedora 29 and having compiled gambas there. perhaps I missed something? followed the ...