Use the properties varianble for global access..
If you define a properties varible in .cl file - you can access them globally..
Any personal support reach me to my personal email id..
Search found 47 matches
- 3 Apr 2014 2:48
- Forum: Visual Prolog
- Topic: Unreachable or excessive code?
- Replies: 11
- Views: 5470
- 2 Apr 2014 17:53
- Forum: Visual Prolog
- Topic: Unreachable or excessive code?
- Replies: 11
- Views: 5470
- 31 Mar 2014 7:49
- Forum: Visual Prolog
- Topic: Need Help :(
- Replies: 3
- Views: 4446
This forum is for Visual Prolog support. But, the assignment you posted is SWI-Prolog..
Any personal support : reach me at : georgeananth.prolog@gmail.com - I'll support you for completing the task..
Any personal support : reach me at : georgeananth.prolog@gmail.com - I'll support you for completing the task..
- 28 Mar 2014 16:02
- Forum: Visual Prolog
- Topic: Calling Visual Prolog from C
- Replies: 5
- Views: 2831
- 27 Mar 2014 13:44
- Forum: Visual Prolog
- Topic: Retired entity 'vpiDomains::controlHandler'
- Replies: 15
- Views: 8513
- 27 Mar 2014 12:55
- Forum: Visual Prolog
- Topic: Retired entity 'vpiDomains::controlHandler'
- Replies: 15
- Views: 8513
The following is the vpiOldDomains module - have all the domain in your project and use that ... /***************************************************************************** Copyright (c) Prolog Development Center A/S ******************************************************************************/ ...
- 27 Mar 2014 12:39
- Forum: Visual Prolog
- Topic: Retired entity 'vpiDomains::controlHandler'
- Replies: 15
- Views: 8513
- 27 Mar 2014 11:27
- Forum: Visual Prolog
- Topic: Code optimization
- Replies: 5
- Views: 2835
It upto your call, Depends upon the requirement, you can setup the constants value and build the new setup - The final setup will use only the last modified constant value - If you need to change the value, every time you have to do it manually which is really not good.. So, play with that depends u...
- 27 Mar 2014 11:06
- Forum: Visual Prolog
- Topic: Code optimization
- Replies: 5
- Views: 2835
You are trying through conditional compilation #if contenu_visible = b_true #then clauses get_win() = getVpiWindow(). #else clauses get_win() = applicationWindow::get():getVpiWindow(). #endif constants % contenu_visible = b_true. contenu_visible = b_false. Since you have used conditional compilation...
- 27 Mar 2014 10:17
- Forum: Visual Prolog
- Topic: Code optimization
- Replies: 5
- Views: 2835
constants % contenu_visible = b_true. contenu_visible = b_false. clauses start():- if contenu_visible = b_true then Win = getVpiWindow() % here is TaskWindow\frm1.pro(52,15) else Win = applicationWindow::get():getVpiWindow() end if, Container = activeXContainer::new(Win), First of all, You have use...
- 27 Mar 2014 8:06
- Forum: Visual Prolog
- Topic: Retired entity 'vpiDomains::controlHandler'
- Replies: 15
- Views: 8513
I think, you are trying to convert old version Prolog VIP 6.x to latest version 7.x .. I looked into your project - I got too many errors - I addressed most of the errors but, at the end I was not able to run your project - I'm not sure about my fix - I just tried to make the project to run.. Got in...
- 27 Mar 2014 6:25
- Forum: Visual Prolog
- Topic: Retired entity 'vpiDomains::controlHandler'
- Replies: 15
- Views: 8513


Code: Select all
predicates
onControlcell1 : vpiOldDomains::controlHandler.
clauses
onControlcell1(_CtrlID, _CtrlType, _CtrlWin, _CtrlInfo) = vpiOldDomains::handled(uncheckedConvert(gui_native::lResult,0)):-
cell_click(1).
- 26 Mar 2014 13:39
- Forum: Visual Prolog
- Topic: A list to CSV
- Replies: 18
- Views: 7668
- 25 Mar 2014 6:32
- Forum: Visual Prolog
- Topic: UNexpected end of file when use inputStream::endOfStream/0
- Replies: 2
- Views: 2250
using stream function to read term in a txt file all example in forum failed ,to read term in txt,why this powerful development tool can't do this easy work, I don't know what kind of problem are you experiencing. As of my experience Visual Prolog 7.4 is really awesome and simple compared to other ...
- 20 Mar 2014 11:05
- Forum: Visual Prolog
- Topic: unexpected end of file erro when read from external file
- Replies: 4
- Views: 2988