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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
D

david bagaturia

@david bagaturia
About
Posts
130
Topics
58
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • DLL and config file problem
    D david bagaturia

    Hello In my program I dynamically load DLL, but I have some problem. Dll use my program config and not his own confg. Here is part of the code:

    Assembly assemblyInstance = Assembly.LoadFrom(assembly);
    Object ProviderClass = assemblyInstance.CreateInstance(type);
    object[] methodMaramList = new object[1];

                methodMaramList\[0\] = logInInfo;
    
                if (providerInfo.GetInformation == false)
                    throw new Exception("This provider does not support get abonent function.");
    
                /// autorisation
                /// 
                authorizationResponse = (AuthorizationResponse)assemblyInstance.GetType(type).InvokeMember(method,
                                                                                                           BindingFlags.Public |
                                                                                                           BindingFlags.InvokeMethod |
                                                                                                           BindingFlags.Instance,
                                                                                                           null,
                                                                                                           ProviderClass,
                                                                                                           methodMaramList);
    
    C# help

  • How to get http request??
    D david bagaturia

    ok. I mean that I have web brouser object in my form and this object link to www.example.ge and I need to get http (POST/GET). I need to get http request that send this object to host.

    .NET (Core and Framework) tutorial agentic-ai tools help question

  • How to get http request??
    D david bagaturia

    Hi all. I have problem, I use WebBrowser object in my program and I need to get http request (POST/GET). Someting like this:

    POST /path/script.cgi HTTP/1.0
    From: example.ge
    User-Agent: HTTPTool/1.0
    Content-Type: application/x-www-form-urlencoded
    Content-Length: 32

    home=Cosby&favorite+flavor=flies

    .NET (Core and Framework) tutorial agentic-ai tools help question

  • COM Port Threading
    D david bagaturia

    I can give you a zip file (book + example). but it is on Russia. write your mail and I will send you. ;)

    C / C++ / MFC com hardware question

  • panel
    D david bagaturia

    thanks, but I write CLayer class, sow I have't problems. :)

    C / C++ / MFC html help

  • COM Port Threading
    D david bagaturia

    Hi I write little rogram that use inp and outp functions. It is like write and rad from console or read from file.

    C / C++ / MFC com hardware question

  • panel
    D david bagaturia

    Hi all. I have some problem using window, I need somting like panel, like div(layer) in HTML. I need window that have't border and title bur, only area. I need it to draw some animation for my ScreenSaver. thanks and happy new year. :rose:

    C / C++ / MFC html help

  • Linux driver
    D david bagaturia

    thanks :)

    Linux, Apache, MySQL, PHP linux tutorial

  • Linux driver
    D david bagaturia

    HI ALL. I need some SDK or simular (EXAMPLE IS GOOD) to write driver to OS linux. Sow If you have somting like send me link :-D

    Linux, Apache, MySQL, PHP linux tutorial

  • cant create process :(
    D david bagaturia

    HI all. I have some problem with some old program (ARCZV.COM) this program open *.arc file. problem is: system("F:\\temp\\ARCZV.COM"); output is: F:\temp\ARCZV.COM Insufficient memory but if I write this "F:\temp\ARCZV.COM" in 'cmd ' program runs, :omg: sow I dont get whot I am doing wrong :doh: help if can :sigh: thanks

    C / C++ / MFC help com performance

  • problem convert from char to stream
    D david bagaturia

    Hi all. it is my first program on Framework sow I need little help. char Name[255]={0}; char *p = GetCommandLineA(); bool start = false; int from = 0; for(size_t i=0; i < strlen(p); i++) { if(p[i] == '|'){ start = true; from = i; continue; } if(start) Name[i-from] = p[i]; } if(strcmp(Name,"") == 0) exit(1); StreamReader reader(Name, System::Text::Encoding::Default); XmlDocument doc; doc.LoadXml(reader.ReadToEnd()); XmlNode^ myNode = doc.SelectSingleNode("Subject"); cz_sintesupport::insertCase t; bool resulte = t.InsertCaseXml("testuser", "test123", myNode); if(resulte) exit(0); else exit(1); this code dont compile, but if I write StreamReader reader("C:\\test.xml", System::Text::Encoding::Default); it works. if you can tel me abut differents between StreamReader reader("C:\\test.xml", System::Text::Encoding::Default); and StreamReader reader(Name, System::Text::Encoding::Default); if Name is string type value thanks

    .NET (Core and Framework) help xml

  • Picture control
    D david bagaturia

    thanks :) I Find in MSDN class CStatic and I solve my problem using this class.

    C / C++ / MFC help

  • Picture control
    D david bagaturia

    I have problem with step #3 I cant replase bitmap .

    C / C++ / MFC help

  • Picture control
    D david bagaturia

    hi all I need to change picture in my dialog, when user push some button. it is firts time when I use Picture control im my dialog. help me if you can. :doh:

    C / C++ / MFC help

  • i/o stream problem
    D david bagaturia

    hi all. I have some problem with I/O stream. I write console application, that start another process "B". process "B" write's some information in consle. I need to read this message and if you can tell how I can set that out stream of process "B" wos input stream for my program. is there some function or other way to do read this information.

    C / C++ / MFC help

  • How to create *.exe file in MFC Application?
    D david bagaturia

    you can create folder and copy your 'exe' file to this folder and you must copy to this folder 'dll' files that your program use. and thats it. copy this folder to another PC and run you program, but in this case you may get error message. (I get once error message. I forget one dll file) :)

    C / C++ / MFC c++ help tutorial question workspace

  • String problem
    D david bagaturia

    thanks. it help me. :)

    ATL / WTL / STL help question c++

  • String problem
    D david bagaturia

    if (str_1 == str_1) ? :confused: there is not operator ==()

    ATL / WTL / STL help question c++

  • String problem
    D david bagaturia

    hi all I have problem im my program, I have: string str_1, str_2; //......... if( strcmp(str_1.data(),str_1.data()) == 0) { cout<<"equals"; } else { cout<<"Not equals"; } problem is that in 'str_1' and 'str_2' I have same text and rezult is "Not equals", can you help me and say how can I compeer two STL string's?

    ATL / WTL / STL help question c++

  • SQL 2005 Client problem
    D david bagaturia

    Hi All. I need Client tool to connect SQL-2005 (somting like 'SQL query Analyzer') and some API tool to connect SQL-2005 from VC++ 6.0

    Database database c++ json help
  • Login

  • Don't have an account? Register

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