Search found 141 matches

by sadams54
Monday 8th April 2024 8:21pm
Forum: General
Topic: Inquire firefox
Replies: 2
Views: 113

Re: Inquire firefox

I doubt it's possible. you'd need an API into firefox to get it's internal data like that. It does not seem to have one , DBus has an OpenURL method but that's about it. there's some extensions that might help but that'd be "installing something" maybe you could monitor the connection sta...
by sadams54
Monday 8th April 2024 6:54pm
Forum: General
Topic: Inquire firefox
Replies: 2
Views: 113

Inquire firefox

I have been looking for this unsuccessfully for a while. what I am attempting to do is monitor firefox and know what it is displaying. Then in the case it is not showing what it should, we reload firefox with the proper URL. I already know how to kill and start programs from gambas so that is not at...
by sadams54
Tuesday 5th December 2023 11:03pm
Forum: General
Topic: Printing to a Zebra LAN Printer
Replies: 9
Views: 29393

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: 19297

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: 19297

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: 19297

{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: 8091

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: 6715

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: 6715

[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: 6256

Re: Access Information on program created control

Thank you that clued me into the right place