Search found 272 matches: recommended

Return to advanced search

FWHMySql - Failing to restore large files

Hi Guys, A customer changed his server, as we recommended, before he made a backup of his database. However, we aren't being able to restore it. Allways we try to restore, there is happening the error bellow: Application Internal Error - C:\TEC2000\SGV90\SGV.EXETerminated ...
by vilian
Wed Apr 10, 2024 5:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMySql - Failing to restore large files
Replies: 3
Views: 114

Re: future of Rich Text Editor maybe time to start with WEBVIEW

... prefer. However, uninstalling or removing Edge can lead to unexpected problems, as some system functions rely on Edge. Therefore, it is generally recommended to leave Edge in the system, even if another browser is used as the default browser. Best regards, Otto NB: Currently, Microsoft is the ...
by Otto
Wed Jan 24, 2024 8:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: future of Rich Text Editor maybe time to start with WEBVIEW
Replies: 19
Views: 1706

Re: Transparent area becomes black when use BUTTON...ADJUST

... clause, the images will be transparent. But resizing makes the image ragged. 2) Add "GDIP" clause. This makes the resized image smooth. Recommended code:  DEFINE BUTTONBAR oBar OF oWnd GDIP SIZE 110,66 RIGHT Please make this small change in buttonbar definition and let us know. #include ...
by nageswaragunupudi
Wed Dec 06, 2023 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent area becomes black when use BUTTON...ADJUST
Replies: 8
Views: 874

Re: Xlsxlibhb_ver2

Or you can use MSC (recommended).
by Enrico Maria Giordano
Wed Nov 22, 2023 10:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 9005

Re: Campos en 0 en xbrowse

Code: Select all  Expand view
oBrw:lDisplayZeros  := .F.

This is the right way and recommended by FWH.
This shows all numeric zeros and empty dates as blanks.
This setting applies to the entire Browse.

If we want this setting only to some columns, then use
Code: Select all  Expand view
oCol:lDisplayZeros := .F.
by nageswaragunupudi
Wed Nov 01, 2023 1:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Campos en 0 en xbrowse
Replies: 10
Views: 621

Re: xHarbour.org updated!

They are warnings not errors. You can:

- disable those warnings using a compiler switch (not recommended)
- fixed those warnings in the code (recommended)
by Enrico Maria Giordano
Wed Oct 25, 2023 3:51 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37530

Re: Xbrowse, FastEdit y xBrw:Edit() tratando de entender...

... oWndChild MAXIMIZED  Valid( oWndChild := NIL, .T. )               oRs:Close()  Recommended oWndChild:bPostEnd := { || oRs:Close() }ACTIVATE WINDOW oWndChild
by nageswaragunupudi
Wed Jul 19, 2023 9:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse, FastEdit y xBrw:Edit() RESUELTO
Replies: 7
Views: 320

Re: hbmk2 problem

... x, y ) function. It doesn't prevent me from building the application since I can do that with my bat/mak files. It only prevents me from using the recommended hbmak2. Tim
by TimStone
Mon Jul 17, 2023 4:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hbmk2 problem
Replies: 19
Views: 763

Re: TWebView y Javascript

... your browser: Another option is to disable web security in your browser temporarily for testing purposes. Keep in mind that this approach is not recommended for regular browsing due to security implications. In Chrome, you can start the browser with the --disable-web-security flag to disable ...
by Antonio Linares
Mon Jul 17, 2023 7:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TWebView y Javascript
Replies: 6
Views: 433

Re: RTF Spell Checker

... of the RTF edit control in FiveWin may depend on the specific version and configuration of the framework you are using. Therefore, it's recommended to refer to the official FiveWin documentation or resources provided by the framework's developers for more detailed information on how ...
by TimStone
Tue May 23, 2023 9:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RTF Spell Checker
Replies: 7
Views: 408

Re: using PUBLIC FONT in DIALOG

... in DIALOG :?: p.s. App will still run but i want get rid of those Error.LOG Impossible, unless there is a deviation in the program code from the recommended usage or creation and release of fonts. It does not matter whether the font is Public, Private, Local or Static variable In a well written ...
by nageswaragunupudi
Mon May 15, 2023 2:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: using PUBLIC FONT in DIALOG
Replies: 3
Views: 221

Re: Newbie Question : XBROWSE

... oBrwDBF ... so DIALOG is only when i do not want "resize" (which i most allow) Very obviously, you did not try the single line sample we recommended in our last post: XBROWSER cFileDBF which would not have taken more than two or three minutes. Had you tried, you would have already observed ...
by nageswaragunupudi
Sun Nov 27, 2022 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Newbie Question : XBROWSE
Replies: 17
Views: 1486

Re: Mr. Rao, errror xBrowse y oBrw:SetMultiSelectCol()

... "nuevo nombre" Instead, please do oBrw:oCol( "NOMBRE" ):varPut( "neuvo nombre" ) Or, even better and recommended: oBrw:nombre:VarPut( "nuevo nombre" )
by nageswaragunupudi
Sun Nov 13, 2022 8:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mr. Rao, errror xBrowse y oBrw:SetMultiSelectCol()
Replies: 7
Views: 655

Re: Manifest

When attempting to generate a program with a .mak file, using the recommended library, I get errors if I include a Manifest ( using the samples in 22.06 ). If I do not include the manifest, I do not seem to have errors, but perhaps I'm missing something. ...
by TimStone
Wed Oct 26, 2022 10:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manifest
Replies: 22
Views: 1788

Re: Funcion de MySQL nativa en codigo

... la tabla para que el campo lo llene solo CREATE TABLE mitabla (   momento DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP)  The above is recommended. In the above case, MySql server fills the field `momento` with correct DateTime value at the time of insertion of the row. This value will ...
by nageswaragunupudi
Mon Oct 03, 2022 11:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funcion de MySQL nativa en codigo
Replies: 14
Views: 1048
Next

Return to advanced search