Delphi 程序中文乱码

这两天在编译一个好玩的东东,并且很蛋疼的翻译了一个中文语言包(其实使用Google 翻译滴。)但是加载之后却发现有乱码。好蛋疼咧:

错误的地方就是左侧的列表栏ListView控件,和右侧的那个ListView控件(这个现在修复过了)。刚开始是以为字符编码的问题,但是调试的时候在内存中看到的东西 也确实是中文。到网上搜索了下没发现什么有用的东东,后来看到有人说修改控件字体才恍然大悟。

Continue Reading

Interactive Delphi Reconstructor 2.5.3 Beta

IDR (Interactive Delphi Reconstructor) – a decompiler of executable files (EXE) and dynamic libraries (DLL), written in Delphi and executed in Windows32 environment.

The program firstly is intended for the companies, engaged by development of anti-virus software. It can also help programmers to recover lost source code of programs appreciably.

The current version of the program can process files (GUI and console applications), compiled by Delphi compilers of versions Delphi2 – Delphi2010.

Continue Reading

Send a HTTP POST Request in Delphi using WinInet api

In my recent work i have to send a http get request to the itunes app store.In the past i send the request by idhttp compents,but i notice that when get something vi openssl i get the wrong data.there are some noise data,just as below:

  
  
  

but the correct data should be like this:

  
  
  

with no “st11p08it-finance004/” and “0.0.0.0.0.2.1.1.1.47.1.7.0.1.0.1.0.0.5.0.15.1.0.3.0.1.1.3.0.7.7.0.5.1.0.3.0.5.0.0.1.3.0.0.3.0” should be “2.0.0.0.0.2.1.1.1.47.1.7.0.1.0.1.0.0.5.0.15.1.0.3.0.1.1.3.0.7.7.0.5.1.0.3.0.5.0.0.1.3.0.0.3.0
via the wininet api i get the correct result but i don’t know why there are so many diffrents .if anyone know just leave a message here .thx.smile

Continue Reading