Hi Group, As you know I am writing a program to control my IC-706MKiiG transceiver. I have reached a place in development to check the program for stability.....
Hi Group, In some of the reading I have done it was implied that the XuiDropBox... was made up of a text line and a menu list. Or something like that. My ...
The drop down list in an XuiDrpBox is a text array, and is set with the #SetTextArray message. If you look at the demo program tdropbox.x you will see: ...
Hi Kerry --- To change the text area of an XuiDropBox send a "SetTextString" to kid number one: XuiSendStringMessage(grid, @"SetTextString", 0, 0, 0, 0, 1,...
I have been trying to elimate a few XuiTextLine fields from my GUI I discovered I could use a XuiSendMessage(grid, #SetTextLine to a $XuiPusshButton I would...
Hi Group, I was trying to clean up my GUI. I was changing from a XuiPressButtonxxx and an XuiTextLine to simply the XuiPressButton and writing the text...
One thing to check is to check the size of listcontents$[] after the #GetTextArray message with: upperList = UBOUND (listcontents$[]) IF (freqStep > upperList)...
At least the kid number appears the same when I click the kid of interest. I realy do believe the kid numbers have been scrambled by the GUI designer but may...
Hi Xbliters, 3 years ago, John "prujohn" Evans started an open-source project: Xblite Visual Designer. His idea was to offer a Visual Designer similar to...
Hi Group, I use Linux with Xwindows and the GNOME desktop. With both the KDE and the GOME desktops offer multiple virtual desktops. Now for the grips: ...
Hi Bestonnet, I am just interested in looking at sources of XBASIC's Visual Designer for Windows. By studying them, I can see how the code generator is...
The source code is in the XBasic source code itself... You can download that freely, i would look for the most recent Beta version of XBasic for Linux though,...
That is one part, it also uses the xtool#.xxx and the xtoolkit.xxx in the template folder to define where the images of the Xui components should be placed. ...
Hello group. I am using xbasic-6.3.3-linux-i386-20090601.tar.gz. As near as I can tell, when a kid is deleted from a GUI it messes up the counting or ...
Hi People, I have attached an excerpt of RadioControl window code. This is the window I was editing and quit working when I deleted a XuiTextLinennn from the...
The constants are getting a kid-number when they get assigned and they are ordered in the order that you inserted these kids. If you make adjustments in the...
Hi Group, It was my misunderstanding that the GUI editor was wrong. It was simply the functions using the $Xui... pointers needed to be modified and I hadn't...
Hello Group, My recient experience with Functions that need the GUI kid defination would be simplified if I could simply pass the kid defination to the ...
You can either define global constants as the kid-numbers using $$MyGlobalKid1 = 4 (replace all the local constants in your window code for global ones) Then...
I have changed two of my display functions that I use to use the kid variable. This became arduous do to the state of development my program is. ... -- Kerry...