Search found 209 matches: broken

Return to advanced search

Re: Problem with past into xbrowse numeric editable cell

... of xbrowse, that format has problems ( using the DEFINE and then ADD COLUMN ). I had used that hundreds of times in my application and all were broken. I had to recode every one of them to the newer, not yet documented, format. Here is a sample of the newer format I was told to use. I am using ...
by TimStone
Wed Feb 17, 2016 4:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with past into xbrowse numeric editable cell
Replies: 11
Views: 2337

More 16.01 problems with xBrowse UPDATED

... problems still active with xBrowse: 1) Positioning with ADS to bring focus to a specific row is failing to work correctly. 2) Set Checkmark is broken in 16.01 but worked in 15.12. 3) Column spacing using the old format of ADD column TO a browse does not format the columns correctly. This may ...
by TimStone
Wed Feb 17, 2016 12:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: More 16.01 problems with xBrowse UPDATED
Replies: 24
Views: 9692

Re: 15.10 Browse problem

... I'm doing here is substituting code that is actually more compact for longer lines of code. I do each one individually, and thus nothing is "broken" So here is another section of code that we have to add to all browses. Are any of these covered in the COMMAND structure you are using: ...
by TimStone
Thu Jan 07, 2016 7:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 15.10 Browse problem
Replies: 27
Views: 8578

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Kim,

It seems as a Harbour problem (not related to FWH) that should be reported in the Harbour users group:

https://groups.google.com/forum/#!forum/harbour-users

I am sorry I can't be of more help on this
by Antonio Linares
Wed Sep 09, 2015 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Mr.Antonio,

Yes...
It works, and show Correct results(Korean alphabet) when compiled with xHarbour.

But, when compiled with Harbour, Korean Alphabet was broken..., like... "??????"

Thanks.
by kim yong woo
Wed Sep 09, 2015 2:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Kim,

Do you mean that this code is properly working with xHarbour and fails with Harbour ?

Code: Select all  Expand view
cSQL := "SELECT code, iscode,num, name FROM CD_PERSON where name='홍길동' "
oRs:Open( cSQL, oCn )
 
by Antonio Linares
Tue Sep 08, 2015 5:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Mr.Antonio Linares, Thanks for your comments.. :lol: What I hope to solve is MSSQL matter... I mention that , with same codes , there was no Korean Alphabet problem when compiled with xHarbour.. Through comment of "No problem with xHarbour", I expected some experts may think about problem....
by kim yong woo
Tue Sep 08, 2015 9:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Kim,

You were talking about SQL and then you start talking about hbzip

How are they related ?

You don't need to pay for tech support as these forums are free for FWH users :-)
by Antonio Linares
Tue Sep 08, 2015 6:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Dear Hua, Thanks so much for your comment... And, I have visited the page according to your advice... Even in my point of view, It was the information related to my problem... But, I am only beginner.., it was difficult for me to use ... Mr.Antonio, Is there service to linking certain needs with per...
by kim yong woo
Tue Sep 08, 2015 4:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Kim, I'm just guessing here but you might want to have a look at codepage - http://harbourlanguage.blogspot.my/2010 ... epage.html

HTH
by hua
Tue Sep 08, 2015 1:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Dear Sirs,

As mentioned abode, in Harbour, Korean Alphabet was broken in MSSQL (or "ADODB.Connection"),?,
but, in xHarbour, it was possible to use Korean Alphabet in MSSQL (or "ADODB.Connection")..

Where is the difference ?

Thanks...
by kim yong woo
Sun Sep 06, 2015 2:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Mr.Antonio, I've just compiled my source file with xHarbour... And... I found that there is no "???????"...with Korean alphabet... The only thing I've done was "replacement "HBZIP.LIB" with old version of HBZIP.lib" since there was following error with recent HBZIP.LIB....
by kim yong woo
Sat Sep 05, 2015 12:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Thanks.. Mr.Antonio Linares...

I've tried "N" prefix already...
But, there was no change...

it there other option?
by kim yong woo
Sat Sep 05, 2015 11:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Kim, You should use the N' prefix to indicate that you're searching for a Unicode string: SELECT * FROM dbo.tblArticle WHERE name LIKE N'%......%' Otherwise, you're converting your search string back to non-Unicode and then searching.... http://stackoverflow.com/questions/11258129/sql-server...
by Antonio Linares
Sat Sep 05, 2015 7:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751

Re: How can I correct Korean Alphabet broken in calling MSSQL ?

Dear Sirs, I think there might be Character-set problem.. So, I inserted following sentence to see structure , characterset.. cSQL:="SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA='dbo' AND TABLE_NAME='PERSON'" And, get following structure.. Please see CHARACTER_SET_NAME,COLLA...
by kim yong woo
Sat Sep 05, 2015 1:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I correct Korean Alphabet broken in calling MSSQL ?
Replies: 17
Views: 4751
PreviousNext

Return to advanced search