Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
F

Fired Fish Gmail

@Fired Fish Gmail
About
Posts
57
Topics
20
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Who want to search in Baidu
    F Fired Fish Gmail

    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

    The Lounge com announcement

  • Who want to search in Baidu
    F Fired Fish Gmail

    It 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 Lounge com announcement

  • The form refresh so slow
    F Fired Fish Gmail

    The image is about 30kB in JPEG format, I will try to minish its size.

    C# tutorial question

  • The form refresh so slow
    F Fired Fish Gmail

    Thanks 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?

    C# tutorial question

  • The form refresh so slow
    F Fired Fish Gmail

    Only 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.

    C# tutorial question

  • The form refresh so slow
    F Fired Fish Gmail

    I use one image as the background picture. But when open the form, it shows so slow. How to solve it ?

    C# tutorial question

  • My user control problem as TNotebook control in Delphi
    F Fired Fish Gmail

    I want to use the C# to design that user control.

    C# question delphi visual-studio sysadmin help

  • My user control problem as TNotebook control in Delphi
    F Fired Fish Gmail

    I 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?

    C# question delphi visual-studio sysadmin help

  • Web Service Created by C#.net how to move from IIS to Apache?
    F Fired Fish Gmail

    It is a good answer, thanks very musch :-D

    ASP.NET csharp apache windows-admin tutorial question

  • Web Service Created by C#.net how to move from IIS to Apache?
    F Fired Fish Gmail

    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?

    ASP.NET csharp apache windows-admin tutorial question

  • why spy++ can not get the program control
    F Fired Fish Gmail

    I 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?

    C / C++ / MFC c++ question

  • Question about anti-virus
    F Fired Fish Gmail

    I nerver use it, I use the kapasiki

    The Lounge question security

  • I want to write a simple C# compiler
    F Fired Fish Gmail

    Thanks 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.

    C# csharp tutorial question learning

  • I want to write a simple C# compiler
    F Fired Fish Gmail

    thanks, 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.

    C# csharp tutorial question learning

  • I want to write a simple C# compiler
    F Fired Fish Gmail

    Now 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?

    C# csharp tutorial question learning

  • how to resolve the data transmit problem in SOA system
    F Fired Fish Gmail

    In 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?

    ASP.NET help tutorial question

  • Does SOAP protocol assure data transmit?
    F Fired Fish Gmail

    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?

    ASP.NET question csharp asp-net wcf sysadmin

  • Does anyone use the gsoap
    F Fired Fish Gmail

    The 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;

    ASP.NET help sysadmin tutorial question

  • Does anyone use the gsoap
    F Fired Fish Gmail

    I 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

    ASP.NET help sysadmin tutorial question

  • Sending an image file via email
    F Fired Fish Gmail

    using the smtp protocal to send the picture as the attached file. you can see the smtp spec file in the Wikipedia.

    C# csharp wpf question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups