I still use the Google to search. The Google.cn has been linked to google.com.hk (Google Hongkong) automatically. In the future, there will be a worst result, the Google can not be used. I will use the Microsoft's bing.com to search. :-D
Fired Fish Gmail
Posts
-
Who want to search in Baidu -
Who want to search in BaiduIt is a Joke that Baidu will be a third. The search result of Baidu are modificatied by the its managers. there are all the advertisement and Trojan horse in the first page of the search result. If you pay Baidu money, it will set your website on the first order, even thoungh your website is a bilk website or Trojan website. Only Chinese use this search tools, because the Gooogle can not be used normally. :((
-
The form refresh so slowThe image is about 30kB in JPEG format, I will try to minish its size.
-
The form refresh so slowThanks for your reply. I donot shrink this image. but I only set the image as the background image of the form, perhaps this form's size is not equals to this image's size, when OnPaint it need use much time to let the image size to fix the form's size? I put many control in the forms, such as panle. I set these control's backcolor as transparent. Does the backcolor's transparent cost much time?
-
The form refresh so slowOnly initialize 20 controls, in which a circle is drawed. I try to delete background image, the form shows more quickly. So , it must the background image's problem. I am trying your solution, thanks very much.
-
The form refresh so slowI use one image as the background picture. But when open the form, it shows so slow. How to solve it ?
-
My user control problem as TNotebook control in DelphiI want to use the C# to design that user control.
-
My user control problem as TNotebook control in DelphiI write one user control to show server panel in the form as the control, TNotebook in Delphi. User can select which one page as current Page. But in the IDE, after adding the page in the collection editor, and then close the colloection editor, the page added can not see in the collection editor. I guess that I need to write my collection editor, how can I do it?
-
Web Service Created by C#.net how to move from IIS to Apache?It is a good answer, thanks very musch :-D
-
Web Service Created by C#.net how to move from IIS to Apache?I hava a simple Web Service create by C#. And now I need to let the user visit this web service through apache. How to set it in the apache, it need to modify the C# code?
-
why spy++ can not get the program controlI want to use the spy++ to get a form control(login button) handle, but I find that it cannot. If I write the c++ prgram to find the control handle, which methods can be used?
-
Question about anti-virusI nerver use it, I use the kapasiki
-
I want to write a simple C# compilerThanks for your reply. I do not understand the .net framework architecture. I know that the last code program is writed with Microsoft middle language. (Just as assmebly). But I do not know how to compile the C# code to the MSIL and compile the MSIL to the exe file, in my compiler.
-
I want to write a simple C# compilerthanks, I will see this aticle. I try to write a hello world program using C#. But I find that if not using the .net framwork, this C# program cannot run. Perhaps, I will try to write a c or c++ compiler and then write this C# compiler.
-
I want to write a simple C# compilerNow I am watching the book, dragon book. I want to know how to write a C# compiler, just only a simple compiler which can complie C# Hello world prgram. Who can tell me how to do it?
-
how to resolve the data transmit problem in SOA systemIn the classcal SOA system, there are several documents transmit ways, such as once-and-only-once delivery),at-most-once delivery,duplicate message elimination,guaranteed message delivery How to achieve these ways in the mission-critical systems? Does any one can help me?
-
Does SOAP protocol assure data transmit?Threre Is a ASP.NET Web Service I want to use the SOAP protocol to call this web sites. I use the gsoap middware to call the Web Service. When calling the web service, if the network is stopped and then comeback, does the soap protocol can assure the data is transmited just as the TCP/IP protocol. Another question, how to count the data bytes when use the TCP/IP protocol or use the SOAP protocol?
-
Does anyone use the gsoapThe code is following, I need to count how much bandwidth that this program uses. struct soap soapService; soap_init(&soapService); soapService.accept_timeout = 60; soapService.recv_timeout = 60; soapService.send_timeout = 60; soapService.connect_timeout = 60; int result = -1; _ns1__QueryPerson queryPerson; _ns1__QueryPersonResponse *queryPersonResponse; const char* s1 = "fish"; std::string stdstr(s1); queryPerson.name = &stdstr; queryPersonResponse = new _ns1__QueryPersonResponse(); const char* server = "http://192.168.140.127/classmate/Service.asmx"; result = soap_call___ns2__QueryPerson(&soapService, server, "", &queryPerson, queryPersonResponse); if(soapService.error) { soap_print_fault(&soapService,stderr); result = soapService.error; } if (result == SOAP_OK) { cout <<"收到数据:[" << endl; } else { printf("soap error ,errcode = %d\n", result); } soap_destroy(&soapService); soap_end(&soapService); soap_done(&soapService); delete queryPersonResponse;
-
Does anyone use the gsoapI need to do a project using the gsoap source, I write the client code in the gsoap system, I want to try that if the system network is disconnected and then connected, whether the data can be received inside the time. Anyother problem is how to test the how much percent of network is used when using gsoap to receive data from Web site? does anyone can help me ? thanks
-
Sending an image file via emailusing the smtp protocal to send the picture as the attached file. you can see the smtp spec file in the Wikipedia.