whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

40 Visitors Online


 
...use pesrian alphabet in sqlserver on win2000?
Autor: reza zandieh
Homepage: http://www.rezazdoulabi.persianblog.com
[ Print tip ]  

Tip Rating (11):  
     


procedure TMainForm.ApplicationEvents1Message(var Msg: tagMSG;
  var Handled: Boolean);
begin
  
// replacing persian incorrect char on get from keyboard, in all of the Tcontrols!
  // without this code,ms-sql server have incorrect result set after sort on persian field.
  // some perisan char in win2000 have same shape but differ in ordering


  
if Msg.message = WM_CHAR then // for settting  char ( kaf) in win2000
  
begin
    if 
Msg.wParam = 152 then
      
Msg.wParam := 223
        // and more......
  
end;
end;


 

Rate this tip:

poor
very good


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners