Search found 22 matches: ofcourse

Return to advanced search

Re: ERROR function FW_ShowAdoError()

hi,
nageswaragunupudi wrote:Ofcourse, NO. Errors is correct

If you read the error log again, you will see that the error is becase oCn is NIL.

That means in the function call FW_ADOINDEXES( oCn, cTable ), oCn must have been NIL.

Ok you are right, sorry
by Jimmy
Thu Sep 07, 2023 11:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ERROR function FW_ShowAdoError()
Replies: 2
Views: 141

Re: ERROR function FW_ShowAdoError()

IMHO it must be "oCn:Error" without "s"

Ofcourse, NO. Errors is correct

If you read the error log again, you will see that the error is becase oCn is NIL.

That means in the function call FW_ADOINDEXES( oCn, cTable ), oCn must have been NIL.
by nageswaragunupudi
Thu Sep 07, 2023 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ERROR function FW_ShowAdoError()
Replies: 2
Views: 141

Re: Create help system with F1

... nowhere I see a lookup function or so that will get that ID from a file and just show that. Now only a fancy popup hard coded message is showing. Ofcourse it is maybe the idea that we need to build the lookup/save/generate help files ourselve. I need to do something with the HELPID ID_NAME There ...
by Marc Venken
Tue Jul 11, 2023 11:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create help system with F1
Replies: 15
Views: 727

Re: Question about ComboBox

byte-one wrote:I found, sendmessage(..) must be on the ON INIT clausula from the dialog.

Yes, ofcourse.
In case of dialog hWnd gets a value only ON INIT.
by nageswaragunupudi
Tue Aug 08, 2017 12:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about ComboBox
Replies: 12
Views: 1801

Resize Xbrowse on the fly

... are more rows to see. when hit a button make small it will scrink again. The 4 xbrowse must be seen the same time, so folders would not work. Ofcourse I could create a second browse for it, but i've seen so many thinks last month on this forum that maybe this already exsist :wink: Regards ...
by Marc Venken
Thu Jan 12, 2017 3:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resize Xbrowse on the fly
Replies: 2
Views: 1580

Re: Unicode and Excel

... opinion, serious Unicode applications better use Harbour than xHarbour. Otherwise, live with the limitations of xHarbour, which are not many ofcourse.
by nageswaragunupudi
Fri Sep 02, 2016 2:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unicode and Excel
Replies: 6
Views: 1788

Re: New function OfficeExtractImage

... above, very likely in the HEADERS clause. Please compile and build exactly without changing the code. You may change the array of documents ofcourse. Note: oBrw:Document refers to column with header "Document" You are right, apologies But I fail to see the images ( Office 2010 )
by cnavarro
Wed Apr 29, 2015 1:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New function OfficeExtractImage
Replies: 7
Views: 2677

Re: New function OfficeExtractImage

I guess you might have made some changes in the source code provided above, very likely in the HEADERS clause.
Please compile and build exactly without changing the code. You may change the array of documents ofcourse.

Note:
oBrw:Document refers to column with header "Document"
by nageswaragunupudi
Wed Apr 29, 2015 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New function OfficeExtractImage
Replies: 7
Views: 2677

Re: click a area of Tpanel control

... make the duration controlled by the user? That is the tone should start playing when the user presses the key and stop when he releases the key.( ofcourse that is not piano). I like to have this variation also.
by nageswaragunupudi
Wed Dec 31, 2014 4:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: click a area of Tpanel control ( Creating a Piano)
Replies: 18
Views: 5376

Re: How to show a DELETED-effect on Xbrowse-images ?

Ofcourse, alphalevel does not work with jpgs and non-alpha bitmaps.
The point i was making was that, where alphalevel works, we do not need to use bPaintText
by nageswaragunupudi
Sat Mar 15, 2014 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to show a DELETED-effect on Xbrowse-images ?
Replies: 3
Views: 771

Re: ADO RecordSet: Working locally without connecting to Server

... With the persistent recordset, you need to do only two operations: oRs:ActiveConnection := <justopened connection object> oRs:UpdateBatch() Ofcourse you need to use TRY..CATCH for all ADO methods. You may say that you do not want to modify the data but only want for reference. The why not ...
by nageswaragunupudi
Sun Aug 04, 2013 3:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RecordSet: Working locally without connecting to Server
Replies: 7
Views: 2949

Re: Modifying the query of a recordset and xBrowse

XBrowse safely works
(1) ReQuery the same recordset
OR
(2) Create new Recset ( ofcourse with exactly the same fields ) say oNewRs
and then :-
oOldRs := oBrw:oRs
oBrw:oRs := oNewRs
oOldRs:Close()
oBrw:GoTop()
oBrw:Refresh()
by nageswaragunupudi
Fri Jun 15, 2012 5:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Modifying the query of a recordset and xBrowse
Replies: 9
Views: 2136

Re: xbrowse : sporadic error

That means the user can not hide all columns.
If at all all columns are hidden that is done by the programmer. Ofcourse we expect the programmer not to do it. So this is not an issue.
by nageswaragunupudi
Mon Nov 07, 2011 10:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse : sporadic error
Replies: 19
Views: 4134

Re: Debug

... - n (A): Array Length is: 4 ... Array values follow: 1 Test String 3 4 5 .T. PACKIT(203) - n (A): Array Length is: 0 ... Array values follow: Ofcourse, the code can be tailored to suit yourselves; perhaps even displaying instantiated Object variables in a tabular form. Best regards, Angelo.c ...
by dutch
Mon Oct 31, 2011 3:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Debug
Replies: 26
Views: 8416

Re: Why Some Browses with ADS are slow?

... cling to CDX? It is better to convert the tables to ADT. Particularly the deleted records do not pose any problem. KeyNumber issues still remains ofcourse.
by nageswaragunupudi
Thu Aug 27, 2009 3:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Why Some Browses with ADS are slow?
Replies: 22
Views: 9577
Next

Return to advanced search