Search found 127 matches: apollo

Return to advanced search

Re: XBrowse Win7 Bar New Sample

... END Please correct or advice me if i missed something... thanks for the help... regards, apollo
by amnunez
Tue Feb 15, 2011 12:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse Win7 Bar New Sample
Replies: 61
Views: 13847

vba unable to replace dbf via apollo engine

Dear Sir, I use VBA to access dbf data via apollo engine. I am unable to replace dbf to the record appended successed. Anyone, please kindly teach/help me to correct the code as hereunder and kindly tell where I can find the sample code for reference ...
by ROBERTCHENTPE
Wed Feb 09, 2011 12:45 pm
 
Forum: FiveWin for CA-Clipper
Topic: vba unable to replace dbf via apollo engine
Replies: 0
Views: 1045

Question about xbrowse from code to defined resource....

Dear all,

Is it possible to transform an xbrowse created from code to defined resource without using redefine declaration? If it is, please share the code... thanks in advance.

regards,
apollo
by amnunez
Sat Feb 05, 2011 1:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about xbrowse from code to defined resource....
Replies: 0
Views: 237

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

Dear Sir James,

Ok sir, i will try ur idea... thank very much for ur time.... :D


regards,
apollo
by amnunez
Fri Feb 04, 2011 2:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2449

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

Apollo, OK, but if you know that you don't want scrollbars when you define the browse you can do something like this. Define two browses in the resource file, one with scrollbars and one without. Then in your code do: if lWantScrollbars  ...
by James Bott
Fri Feb 04, 2011 1:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2449

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

... the objects of scroll bars (oHScroll and oVScroll) become present but still disabling function and/or property are not working. thanks. regards, apollo
by amnunez
Fri Feb 04, 2011 12:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2449

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

Apollo,

Hmm, if I remember correctly a browse will automatically hide or disable (I don't remember which) the scrollbar when it isn't needed (as determined by the number of records). Have you tested this?

Regards,
James
by James Bott
Thu Feb 03, 2011 3:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2449

Re: How to change the column header in xbrowse at runtime?

Dear Sir Anser,

Thanks... it works....


regards,
apollo
by amnunez
Thu Feb 03, 2011 8:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to change the column header in xbrowse at runtime?
Replies: 2
Views: 381

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

... for instance), it is valid to just hide or disable the hscroll bar because there's no need for it.... though, thanks for the ideas.... :D regards, apollo
by amnunez
Thu Feb 03, 2011 8:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2449

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

Apollo, It appears the oHVScroll and oVScroll objects are created by the resource editor when you use a resource and by code when you create the browse with code. Let me ask, are you wanting to disable the scrollbars at runtime ...
by James Bott
Thu Feb 03, 2011 7:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2449

How to change the column header in xbrowse at runtime?

Dear All,

Does anyone know how to change the column header at runtime in xbrowse... please post the sample code... thanks in advance...


regards,
apollo
by amnunez
Thu Feb 03, 2011 6:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to change the column header in xbrowse at runtime?
Replies: 2
Views: 381

Re: xBrowse with round corners ??

Dear Sir RAO,

Do u have a sample which uses resource? Can u please post it. thanks...


regards,
apollo
by amnunez
Thu Feb 03, 2011 5:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse with round corners ??
Replies: 8
Views: 1276

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

Dear All,

Thanks for ur great ideas. Sir James, i've tried the function disable() but the function was not present neither the oHScroll/oVScroll objects. I still wondered why these objects are not present in xbrowse object...


thanks.

regards,
apollo
by amnunez
Thu Feb 03, 2011 5:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2449

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

Apollo,

My mistake. Instead of CreateFromCode() you need to use CreateFromResource( nID ).

You can also try:

oBrw:oHScroll:disable()
oBrw:oVScroll:disable()

I don't think that Gale's idea of hiding the scrollbars will work since the mouse wheel and arrow keys would still provide scrolling.

James
by James Bott
Wed Feb 02, 2011 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2449

Re: Disabling scrollbars(H and V) in redefined xbrowse at runtim

... James, i received an error when i used "oBrwPrintRpt:createFromCode()" saying "duplicate ID" thank you very much... regards, apollo
by amnunez
Wed Feb 02, 2011 4:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabling scrollbars(H and V) in redefined xbrowse at runtim
Replies: 16
Views: 2449
PreviousNext

Return to advanced search