Search found 75 matches

by daveplummermd
10 Nov 2022 17:13
Forum: Visual Prolog
Topic: List Construction
Replies: 2
Views: 483

Re: List Construction

Thank you!
by daveplummermd
9 Nov 2022 20:31
Forum: Visual Prolog
Topic: Color background of standard control
Replies: 4
Views: 5383

Re: Color background of standard control

Perfect, thanks.
by daveplummermd
9 Nov 2022 20:30
Forum: Visual Prolog
Topic: List Construction
Replies: 2
Views: 483

List Construction

I remember seeing somewhere an abbreviated method to construct a list of sequential integers.
I am looking for:

Code: Select all

List=[1,2,3,4,5]
to be achieved with a shortcut looking something like this

Code: Select all

List=[1..5]
But, I can not remember or find the proper syntax for that abbreviated method.
by daveplummermd
20 Sep 2022 18:52
Forum: Visual Prolog
Topic: useEXE question
Replies: 4
Views: 1041

Re: useEXE question

Excellent. This provides me with a way to solve what I am stuck on. It is exactly what I am looking for.
Thanks!
Dae
by daveplummermd
19 Sep 2022 18:02
Forum: Visual Prolog
Topic: useEXE question
Replies: 4
Views: 1041

Re: useEXE question

Thanks, and I am encouraged but confused. I don't know what it means to be "signaled" or "unsignaled". I have drilled into the syncObject created by useExe and closely examined the "wait" type functions with the debug. However, I do not see a way the calling obect (&quo...
by daveplummermd
18 Sep 2022 14:52
Forum: Visual Prolog
Topic: useEXE question
Replies: 4
Views: 1041

useEXE question

Is it possible to detect the termination of a process/program that is launched by useExe ? 1) I have this code for the creation of useExe oject and program launch: ... CommandLine = "C:\\Users\\Owner\\AppData\\Local\\Logseq\\logseq.exe", RunObj = useExe::new(CommandLine), RunObj:run(), ret...
by daveplummermd
8 Apr 2022 0:31
Forum: Visual Prolog
Topic: changing a listBox attribute?
Replies: 5
Views: 5837

Re: changing a listBox attribute?

Thanks for the responses.
The double constructor method is exactly what I had done, I just thought there should be a more elegant way.
Thanks
by daveplummermd
5 Apr 2022 21:42
Forum: Visual Prolog
Topic: changing a listBox attribute?
Replies: 5
Views: 5837

changing a listBox attribute?

Hello Is it possible to change attributes of a ListBox programmatically. for example I have a dlg with a Listbox where multiselect is set to "true" in the properties box, and then in the program, I am unsuccessfully trying to change it with this code: mysetMultiSelect(Boolean) :- listbox_c...
by daveplummermd
12 Dec 2021 1:58
Forum: Visual Prolog
Topic: retrieving all processes running on computer
Replies: 1
Views: 2305

retrieving all processes running on computer

Hello. Is there a predicate or function that can retrieve all the programs and processes running on the host computer? I have been using this code to retrieve an slist of the window titles, but some processes of course don't have windows or windows with titles. gui::getScreenWindow() = Screen, Scree...
by daveplummermd
12 Dec 2021 0:05
Forum: Visual Prolog
Topic: Direct code access in IDE
Replies: 7
Views: 4514

Re: Direct code access in IDE

Ahhhhh....Thanks
by daveplummermd
7 Dec 2021 17:07
Forum: Visual Prolog
Topic: Direct code access in IDE
Replies: 7
Views: 4514

Re: Direct code access in IDE

Harrison
Once I reassociate it, what action on the menu item takes you directly to the associated code?
dave
by daveplummermd
3 Dec 2021 22:07
Forum: Visual Prolog
Topic: Direct code access in IDE
Replies: 7
Views: 4514

Direct code access in IDE

Hello. Previous versions allowed direct access to the code associated with a menu item from the IDE. I can't find similar functionality in version 10.02 CE For example: in the attached image clicking or dbl-clicking this menu item should take you to the code. What am I missing?? 2021-12-03_15-57-36....
by daveplummermd
25 Jul 2021 20:51
Forum: Visual Prolog
Topic: installing 1002 error
Replies: 1
Views: 18338

installing 1002 error

Hello I am running Build1001 CE and have downloaded 1002 CE. On installation, I receive the Windows Installer dlg box : vpi1002.jpg The previous builds have allowed the previous versions to remain installed (all the way back to 5.2, a good idea). Can you advise on the proper installation sequence an...
by daveplummermd
17 May 2021 13:54
Forum: Visual Prolog
Topic: timerSet Problem n VIP10CE
Replies: 2
Views: 2647

Re: timerSet Problem n VIP10CE

Thanks much
by daveplummermd
16 May 2021 21:25
Forum: Visual Prolog
Topic: timerSet Problem n VIP10CE
Replies: 2
Views: 2647

timerSet Problem n VIP10CE

Hello A recent upgrade from VIP9CE to VIP10CE is throwing an error on previously working code (the same project works in VIP9). Constructing a DLG, I have the code: clauses new(Parent) :- dialog::new(Parent), generatedInitialize(), _ = timerSet(20), !. new(_). Compiles fine and at runtime produces t...