Search found 4 matches

by te777
Wednesday 30th January 2019 10:58am
Forum: General
Topic: Can I set the items column width for a listbox list
Replies: 2
Views: 3892

Re: Can I set the items column width for a listbox list

I fixed it. I changed the following line:

VPN_Names.List = Split(File.Load(FileName1), "\\n")

to

VPN_Names.List = Split(File.Load(FileName1), gb.NewLine)
by te777
Wednesday 30th January 2019 10:41am
Forum: General
Topic: Can I set the items column width for a listbox list
Replies: 2
Views: 3892

Can I set the items column width for a listbox list

I have a listbox on my main form that I populate from a text file. No problem there. And I set the listbox width to accommodate the the maximum width of a list item. But when I run in debug the items column width is truncated to 15 characters and the remaining characters for that item is listed on n...
by te777
Wednesday 30th January 2019 10:32am
Forum: General
Topic: Error run project in Debug
Replies: 2
Views: 3763

Re: Error run project in Debug

I just created a button on the main form for the method that calls the dialog. Fixed
by te777
Monday 28th January 2019 12:46pm
Forum: General
Topic: Error run project in Debug
Replies: 2
Views: 3763

Error run project in Debug

When I run my project the the gambas3 IDE in Debug I get the following error: GtkDialog mapped without a transient parent And the app won't run in Debug The error doen't happen when I run standalone executable. I'm calling dialogs from within the main Form_Open() method. I'm running the IDE in Linux...