Search found 6 matches

by aschaft
Mon Jul 18, 2005 7:02 pm
Forum: Code Folding
Topic: Code folding for Clipper, Xbase language
Replies: 11
Views: 72485

That's perfect, thanks.

Alex
by aschaft
Mon Jul 18, 2005 7:51 am
Forum: Code Folding
Topic: Code folding for Clipper, Xbase language
Replies: 11
Views: 72485

Hi,

Sample below

CLASS MyClass

DATA cTitle

Method New Constructor
Method Activate

ENDCLASS
//--------------------------------
Method New() CLASS MyClass

::cTitle := "My class"

return self
//--------------------------------
Method Activate

// Do something

return nil ...
by aschaft
Sat Jul 16, 2005 11:27 am
Forum: Code Folding
Topic: Code folding for Clipper, Xbase language
Replies: 11
Views: 72485

Class/endclass bug

Hi,

It seems there's a problem with the class/endclass collapse. Clicking on the - next to class collapses the whole file.

Alex
by aschaft
Sat Jul 16, 2005 10:55 am
Forum: Code Folding
Topic: Code folding for Clipper, Xbase language
Replies: 11
Views: 72485

Thanks, I'll try it out.

I'll check on the static part as well

Alex
by aschaft
Sat Jul 16, 2005 10:54 am
Forum: Comments and Suggestions
Topic: Class browsing xharbour/fivewin code
Replies: 2
Views: 13693

Thanks, I'll take a look

Alex
by aschaft
Fri Jul 15, 2005 9:37 am
Forum: Comments and Suggestions
Topic: Class browsing xharbour/fivewin code
Replies: 2
Views: 13693

Class browsing xharbour/fivewin code

Hi,

How involved would it be to browse xharbour/fw code in the class browser?

Alex

CLASS Myclass

// Definitions

Method New

Method End

DATA cVar1

ENDCLASS

// Implementation
Method New() CLASS Myclass

return Self