Search found 78 matches: typo

Return to advanced search

Re: Request : function GetSerialCol()

hi

i can add new Record, it was a Typo :roll:

---

i can use bLDblClick when NOT set nEditTypes
Code: Select all  Expand view
*      :nEditTypes := EDIT_GET
      :bLDblClick := { || oBrw:EditSource() }

it must before :bDataRow := Codeblock
by Jimmy
Wed Sep 27, 2023 3:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : function GetSerialCol()
Replies: 8
Views: 581

Re: Request : new PostgreSQL OLEDb-Provider

... .t. )if oCn == nil   ? "Fail"else   XBOWSER oCn  // this shows all properties   // other works   oCn:Close()endif there is a Typo in CODE XBOWSER must be XB R OWSER --- i have use it and got this https://i.postimg.cc/SxbGYLC5/o-Cn-Property.jpg i have put all ...
by Jimmy
Tue Sep 12, 2023 1:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : new PostgreSQL OLEDb-Provider
Replies: 11
Views: 697

Re: download iPhone Photo connect to PC

Dear Jimmy,

many thanks for pointing it out

It is a typo in the code, it should use CollapseAll instead of ColapseAll

We have fixed it already
by Antonio Linares
Fri Nov 25, 2022 9:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: download iPhone Photo connect to PC
Replies: 14
Views: 990

Re: Everything under Fivewin

Dear Jimmy, It seems that you have a typo here: DLL FUNCTION Everything_SetRequestFlags( nFlag AS DWORD ) AS VOID PASCAL FROM "Everything_SetSearchA" LIB hDll it should be: DLL FUNCTION Everything_SetRequestFlags( nFlag AS DWORD ) ...
by Antonio Linares
Mon Nov 21, 2022 12:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Everything under Fivewin
Replies: 17
Views: 1089

Re: Xbase++ :lockUpdate() -> Fivewin ?

hi Antonio,
Antonio Linares wrote:   
Code: Select all  Expand view
hb_retl( LockWindowUpdate( ( HWND ) hb_parnll( 1 ) );

thx

typo, must be
Code: Select all  Expand view
hb_retl( LockWindowUpdate( ( HWND ) hb_parnll( 1 ) )  ) ;
by Jimmy
Sun Nov 13, 2022 6:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbase++ :lockUpdate() -> Fivewin ?
Replies: 10
Views: 760

Re: Display thumbnails of pdfs

Detlef wrote:I found out that it should be TrueName() :D

Sorry for the typo
by nageswaragunupudi
Thu Oct 20, 2022 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2271

Re: DWM ( Desktop Windows Manager ) Sample Code

hi Antonio, You have a little typo here: ooooh ... Yes ... typo ... so it must be HB_FUNC( DWMEXTENDFRAMEINTOCLIENTAREA ){  MARGINS margins = {-1,-1,-1,-1};  HRESULT hr ;  margins.cxLeftWidth    = hb_parnl( 2 ) ...
by Jimmy
Sat Aug 27, 2022 9:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DWM ( Desktop Windows Manager ) Sample Code
Replies: 10
Views: 908

Re: DWM ( Desktop Windows Manager ) Sample Code

Dear Jimmy, You have a little typo here: hr = DwmExtendFrameIntoClientArea( (HWND) hb_parnl( 1 ) , &margins) : latest must be ; instead of : remember that MARGIN is defined as: typedef struct _MARGINS {  int cxLeftWidth;  int cxRightWidth;  ...
by Antonio Linares
Fri Aug 26, 2022 10:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DWM ( Desktop Windows Manager ) Sample Code
Replies: 10
Views: 908

Re: Style WS_TABSTOP

Extremely sorry for my typo.

The method is WinStyle, not SetStyle

Code: Select all  Expand view
oControl:WinStyle( WS_TABSTOP,  .T.  or .F. )
by nageswaragunupudi
Tue Aug 09, 2022 2:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Style WS_TABSTOP
Replies: 6
Views: 497

Re: Converting old Dos Clipper Application

Silvio a oldest application made on dos with dbsee but I not remember what is this dbsee. Maybe dbsee is a typo and it should be dbseek( x )? No, I have used dBsee 3, an excellent Italian CASE tool for Clipper Summer 87 ( years 90- 94) created by Isa software , Then Albalog ...
by Silvio.Falconi
Thu Mar 03, 2022 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converting old Dos Clipper Application
Replies: 11
Views: 735

Re: Converting old Dos Clipper Application

Silvio

a oldest application made on dos with dbsee but I not remember what is this dbsee.


Maybe dbsee is a typo and it should be dbseek( x )?
by James Bott
Wed Mar 02, 2022 8:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converting old Dos Clipper Application
Replies: 11
Views: 735

Re: Errors with test.mak, FW 32 bit, bcc582

Got it. Typo in the config files. Now there's a ton of unresolved externals, but I should be able to figure that out. Error: Unresolved external '_HB_FUN_HB_FUNCPTR' referenced from C:\FWH\LIB\FIVEH.LIB|CHECKRES Error: Unresolved ...
by FWExplorer
Sat Nov 28, 2020 12:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Errors with test.mak, FW 32 bit, bcc582
Replies: 4
Views: 569

Re: problem with SQL INSERT

Hi, Hope you are doing well. There is a typo on calling TABLE. I fixed as follows: #xtranslate SQL INSERT INTO [TABLE <tbl> ] ( <cols,...> ) ARRAY <a> => ; "INSERT INTO " + <tbl> + " ( " + FW_QuotedColSQL( ...
by MOISES
Wed Apr 01, 2020 11:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with SQL INSERT [solved]
Replies: 12
Views: 1368

Re: Mod_Harbour and Hash Arrays

Hello,
you have a typo:
aH[ 'dDate' ] := date()

?aH[ 'cDate' ]

Best regards
Otto

Look my blog running from xbHosts.com
http://54.37.60.40/mh_blog/page-blogMuster.prg
by Otto
Thu Mar 26, 2020 1:19 pm
 
Forum: mod_harbour
Topic: Mod_Harbour and Hash Arrays
Replies: 6
Views: 709
Next

Return to advanced search