... 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> )
Yes, if ...
Search found 20 matches: hungarian
Searched query: hungarian
- Sat Nov 25, 2023 12:14 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: oBtn:ToolTip - UTF8 encoding fails [Unsolved]
- Replies: 11
- Views: 1769
- Sun Feb 28, 2021 6:29 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Documentation for variables - what form should it be?
- Replies: 9
- Views: 1261
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
Customer_Name ...
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
Customer_Name ...
- Mon Jan 08, 2018 12:00 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: LisDir problem
- Replies: 3
- Views: 739
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
FW_SetUnicode( .T. )
HB_CDPSELECT( "HUWIN" )
HB_SETCODEPAGE( "UTF8" )
http://harbourlanguage.blogspot.com.es/2010/06/harbour-codepage.html
- Mon Jan 08, 2018 7:25 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: LisDir problem
- Replies: 3
- Views: 739
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 ...
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 ...
- 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: 36480
FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
... 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 ...
METHOD SetLocale ...
- Fri Aug 21, 2015 5:18 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: DBF to SQL converter program
- Replies: 59
- Views: 22139
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, they can get renumbered under ...
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, they can get renumbered under ...
- Fri Aug 21, 2015 7:07 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: DBF to SQL converter program
- Replies: 59
- Views: 22139
Re: DBF to SQL converter program
... F" )
Then if the field names in state.dbf are "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 field ...
Then if the field names in state.dbf are "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 field ...
- Thu Mar 13, 2014 10:27 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: xBrowse ERROR
- Replies: 14
- Views: 3032
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 using a database object, the name would be very clear as:
oDBF ...
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 using a database object, the name would be very clear as:
oDBF ...
- Sat Feb 09, 2013 12:20 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: GetProfString (SOLVED)
- Replies: 6
- Views: 1600
Re: GetProfString
... 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 ...
*!* 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 ...
- Thu Mar 10, 2011 12:36 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: bitmap changed from user - RESOLVED !!!
- Replies: 20
- Views: 6555
Re: bitmap changed from user
... with a 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. I ...
-----------------
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. I ...
- Tue Mar 08, 2011 3:05 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Hungarian Notation Article
- Replies: 0
- Views: 285
Hungarian Notation Article
Hello,
have somebody Hungarian Notation article from Antonio Linares?
regards
Marcelo
have somebody Hungarian Notation article from Antonio Linares?
regards
Marcelo
- Wed Sep 22, 2010 8:34 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: hash with (x)harbour - knowledge base
- Replies: 20
- Views: 8706
Re: hash with (x)harbour - knowledge base
... seen refered to as an object in the literature. Using a "o" prefix would also be confusing since it not the same 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
Regards,
James
- Thu Sep 16, 2010 4:59 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Display a SAY from within a GET.
- Replies: 3
- Views: 886
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
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
- Mon Jul 19, 2010 5:42 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: convert 13 weeks of data to calendar months
- Replies: 12
- Views: 4403
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 you never know ...
- Thu Sep 10, 2009 9:35 am
- Forum: FiveWin for Pocket PC
- Topic: Code page - can I set it ?
- Replies: 2
- Views: 858
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
REQUEST HB_CODEPAGE_HUWIN
HB ...
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
REQUEST HB_CODEPAGE_HUWIN
HB ...