Search found 74 matches

by Gilbert
Tue Nov 07, 2006 12:36 am
Forum: FiveWin for CA-Clipper
Topic: Browsing arrays
Replies: 4
Views: 1574

Browsing arrays

Hi all, I have a situation where I need to browse an array. The problem is that it can be a one or two dimension array. At the time the array is passed to my function I still don`t know what type of array the function will have to browse and how many columns it includes. So I want the function to de...
by Gilbert
Fri Nov 03, 2006 2:36 am
Forum: FiveWin for CA-Clipper
Topic: Database readwrite and read only detection
Replies: 3
Views: 1303

Bonjour Badara, Je te remercie pour le petit truc. Ca fonctionne à merveille avec les index multiples .CDX, par contre j`ai aussi besoin de faire la même chose avec des index indépendants. C`est à dire plusieurs .CDX ouvert individuellement. Grace à ton truc j`ai réussi à faire les deux. Il fallait ...
by Gilbert
Fri Nov 03, 2006 1:27 am
Forum: FiveWin for CA-Clipper
Topic: Database readwrite and read only detection
Replies: 3
Views: 1303

Bonjour Badara,


Merci, je teste ca immédiatement et je t`en donnes des nouvelles.




8)
by Gilbert
Thu Nov 02, 2006 12:14 am
Forum: FiveWin for CA-Clipper
Topic: PRNSetCopies() failure in FW 2.5
Replies: 8
Views: 3644

Hi again, I`ts true some printers don`t support multi copies commands. But most of the laser printers do. I don`t agree that only 32 bits applications will resolve this issue. I am able to bo so whit an old Clipper DOS application by controling the printer within my application using printer escape ...
by Gilbert
Thu Nov 02, 2006 12:00 am
Forum: FiveWin for CA-Clipper
Topic: PRNSetCopies() failure in FW 2.5
Replies: 8
Views: 3644

Hi guys, Just strolling along the forum I came across this one, which I find very interesting. I am a Clipper maniac since 1988. I went true Summer 87, Cliper 5.0, 5.1, 5.2, 5.3a, b, c and d. As years go buy I heard about 200,000 that Windows 2000 would not support DOS and 16Bits apps. Then when XP ...
by Gilbert
Wed Nov 01, 2006 11:33 pm
Forum: FiveWin for CA-Clipper
Topic: Database readwrite and read only detection
Replies: 3
Views: 1303

Database readwrite and read only detection

Hi all, I would like to know if any of you has a way of detecting if a database has been opened in readwrite or readonly mode. In Clipper 5.3 there is a function called dbInfo() which allows to detect retreive multiple information from an opened database, but could not find anything that would retre...
by Gilbert
Wed Nov 01, 2006 11:17 pm
Forum: FiveWin for CA-Clipper
Topic: Why use MESSAGE in Classes
Replies: 6
Views: 1917

Hi Enrico, You`re right, tho OnError METHOD handles the fields content to return when an error occurs in the class by doing cString := oDbf:fieldname or oDbf:fieldname := cString Doing some test I also figured out than an `_` is passed in front of the fieldname when doing oDbf:filedname := cString, ...
by Gilbert
Thu Oct 26, 2006 2:33 am
Forum: FiveWin for CA-Clipper
Topic: Why use MESSAGE in Classes
Replies: 6
Views: 1917

Hi Antonio, Thanks for your answer. It make sense. I have another one. I am trying to figure out how does TDATABASE class create the object for each field of a database record. I was looking at the class and could not figure out how it does that. Can you tell me wich portion of code generates the fi...
by Gilbert
Wed Oct 25, 2006 10:00 pm
Forum: FiveWin for CA-Clipper
Topic: Why use MESSAGE in Classes
Replies: 6
Views: 1917

Why use MESSAGE in Classes

Hi All,


Why does certain classes, like TDATABASE, use the syntax:

MESSAGE Delete METHOD _Delete()

why not simply use:

METHOD Delete()

Regards
Gilbert Vaillancourt :o
by Gilbert
Fri Oct 06, 2006 8:03 pm
Forum: FiveWin for CA-Clipper
Topic: Print system functions
Replies: 25
Views: 11391

Bonjour Badara, En fouillant sur le forum je suis tomber sur cet interessant message qui pour moi peut-être une solution à plusieurs problèmes surtout au niveau de la gestion des imprimantes sous Windows. Je voudrais savoir si les solutions présenté fonctionnent aussi sur Win98 et XP Merci Gilbert :D
by Gilbert
Fri Oct 06, 2006 7:27 pm
Forum: FiveWin for CA-Clipper
Topic: Message Bar problems
Replies: 4
Views: 1738

Hi all,


Sorry it took so long to reply, too muxh work I guess.

I dont have any menuitem with MESSAGE `Login`

I also tried James Bott solution but it did`nt work.


Regards,

Gilbert :(
by Gilbert
Sun May 21, 2006 2:41 pm
Forum: FiveWin for CA-Clipper
Topic: Message Bar problems
Replies: 4
Views: 1738

Message Bar problems

Hi All, At window activation I prompt `LogIn` in the message bar. So far so good Once the user has entered is login name I want to display the user name in the message bar. So I use: oMsgBar:SetMsg(cUserName), oMsgBar:Refresh() I can see the user name display for a fraction of second and `LogIn` red...
by Gilbert
Sun May 21, 2006 2:10 pm
Forum: FiveWin for CA-Clipper
Topic: Prepocessor table overflow
Replies: 3
Views: 1307

Prepocessor table overflow

Hi all,


Is someone can tell me why I`m always getting `Preprocessor table overflow`at complie time ?

Is there a work around this problem

This is very anoying... :x
by Gilbert
Thu Oct 20, 2005 4:45 pm
Forum: FiveWin for CA-Clipper
Topic: ComboBax vs Multi dimension array
Replies: 6
Views: 3149

Hi Detlef, Thanks for your suggestion. That`s exactly the technique I`m using right now, but I don`t like it. I was thinking of eliminate the second array and work with the original array instead. The original multi dimension array content has to change according to two other Get fields. Working wit...