Search found 20 matches: hungarian

Return to advanced search

Re: oBtn:ToolTip - UTF8 encoding fails [Unsolved]

... non-East Asian languages and are not included in ANSI! E. g. Characters specific to Central and Eastern European languages (e.g., Czech, Polish, Hungarian) like Č, Ć, Đ, Ł, Ń, Ő, Ű, Ś, Š, Ž, etc., available in Latin Extended-A (ISO 8859-2). In my view, keep HB_CDPSELECT( <yourcontrycdp> ...
by frose
Sat Nov 25, 2023 12:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBtn:ToolTip - UTF8 encoding fails [Unsolved]
Replies: 11
Views: 1347

Documentation for variables - what form should it be?

Hi, This is more of a brainstorming question, rather than anything technical. I'd like to stop using my variant of hungarian notation, because it doesn't really look presentable, and it doesn't fit in with standard modern practice. The way I write variables is like Account_Number_n ...
by FWExplorer
Sun Feb 28, 2021 6:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Documentation for variables - what form should it be?
Replies: 9
Views: 1116

Re: LisDir problem

Are you using the Hungarian codepage from your app ?

FW_SetUnicode( .T. )
HB_CDPSELECT( "HUWIN" )
HB_SETCODEPAGE( "UTF8" )

http://harbourlanguage.blogspot.com.es/2010/06/harbour-codepage.html
by Antonio Linares
Mon Jan 08, 2018 12:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: LisDir problem
Replies: 3
Views: 716

LisDir problem

Hi! In the newest FWH(17.11) and Harbour(3.2) I have a problem with the LisDir() and Directory() functions. My problem is the following: I use Hungarian characters (for example: é, á, í, ő, …etc.). If I use the new LisDir(“C:\é”), the function return false, incorrectly, and the Directory() function ...
by Joszif
Mon Jan 08, 2018 7:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: LisDir problem
Replies: 3
Views: 716

FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

... are : By default English, but they can also be displayed in any of several other languages: Czech, Danish, Dutch, Estonian, French, German, Greek, Hungarian, Italian, Japanese, Korean, Norwegian, Norwegian-ny, Polish, Portuguese, Romanian, Russian, Slovak, Spanish, or Swedish. METHOD SetLocale( ...
by nageswaragunupudi
Fri Jul 01, 2016 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 32933

Re: DBF to SQL converter program

Rao, My point was that I wouldn't change all the fieldnames just so I could use Hungarian notation. I would change any that were necessary to avoid reserved word issues. As far as auto-incremented primary-key fields go--they worry me. Since as Reinaldo pointed out, ...
by James Bott
Fri Aug 21, 2015 5:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 20519

Re: DBF to SQL converter program

... "CODE","NAME", the column names created in states table are "ID","FCODE","FNAME". Also if we use hungarian notation, we can easily identify a field variable. if nVar, cVar, lVar denote numeric, character and logical variables, fName indicates a ...
by nageswaragunupudi
Fri Aug 21, 2015 7:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 20519

Re: xBrowse ERROR

oDBF is the alias of database Oh, and Hungarian notation says that the alias variable should be cAlias not oDBF. The "o" prefix is to signify an object. Then people like me would be able to read your code more easily. And if you were ...
by James Bott
Thu Mar 13, 2014 10:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ERROR
Replies: 14
Views: 2804

Re: GetProfString

... (Standard) 1036 *!* French (Belgian) 2060 *!* French (Canadian) 3084 *!* French (Swiss) 4108 *!* French (Luxembourg) 5132 *!* Hebrew 1037 *!* Hungarian 1038 *!* Icelandic 1039 *!* Italian (Standard) 1040 *!* Italian (Swiss) 2064 *!* Japanese 1041 *!* Korean 1042 *!* Korean (Johab) 2066 *!* ...
by ukoenig
Sat Feb 09, 2013 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetProfString (SOLVED)
Replies: 6
Views: 1462

Re: bitmap changed from user

... solution. ----------------- I do note that you sometimes use a leading "o" for variable names that are not objects. This does not follow Hungarian convention and does make it more difficult for others to read and understand your code. For instance, you use oggettobmp to refer to an array. ...
by James Bott
Thu Mar 10, 2011 12:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bitmap changed from user - RESOLVED !!!
Replies: 20
Views: 6202

Hungarian Notation Article

Hello,

have somebody Hungarian Notation article from Antonio Linares?

regards

Marcelo
by Marcelo Via Giglio
Tue Mar 08, 2011 3:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hungarian Notation Article
Replies: 0
Views: 284

Re: hash with (x)harbour - knowledge base

... as objects created from classes that we are used to using. And the "h" prefix is already used to signify a handle. Is there a standard Hungarian syntax for a hash table? Regards, James
by James Bott
Wed Sep 22, 2010 8:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hash with (x)harbour - knowledge base
Replies: 20
Views: 8404

Re: Display a SAY from within a GET.

I am assuming this var is an array: oSays[1]

This is not really correct Hungarian syntax. An array datatype should be prefixed with an "a" regardless of what datatype the array contains (in this case an object). So it should be aSays instead. It does contain oSay objects.

Regards,
James
by James Bott
Thu Sep 16, 2010 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display a SAY from within a GET.
Replies: 3
Views: 839

Re: convert 13 weeks of data to calendar months

... Using an array, all of the above code can be written as below. It is also not good practice to assign data of the wrong type to variables with Hungarian notation (e.g. assigning date types to variables begining with "c" then changing the type). The problem with doing this is that ...
by James Bott
Mon Jul 19, 2010 5:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: convert 13 weeks of data to calendar months
Replies: 12
Views: 4313

Code page - can I set it ?

Hi everebody! I try set code page in my applicationto hungarian. I try this code , but is not work (Browse look as english). Make I anything wrong ? Regards Andrej. /// settings REQUEST DBFCDX REQUEST DBFFPT RDDSETDEFAULT ('DBFCDX') REQUEST HB_LANG_HUWIN ...
by xVar
Thu Sep 10, 2009 9:35 am
 
Forum: FiveWin for Pocket PC
Topic: Code page - can I set it ?
Replies: 2
Views: 737
Next

Return to advanced search