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
D

dSolariuM

@dSolariuM
About
Posts
135
Topics
113
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Can not move controls over a user control
    D dSolariuM

    Hi everybody, I have a user control that has a webbrowser in it. I've used a user control to see where to put controls on an html form.Everything is great except the fact that I can't move (drag and drop) controls like textbox and datagrid over this user control and it is making this hard to place controls in their right position. Please help me solve this issue, Thanks. P.S : I am using Windows Forms Application

    Every new thing you learn,Gives you a new personality.

    .NET (Core and Framework) help html winforms

  • PrintPreviewControl and HTML
    D dSolariuM

    Can you explain more about the second one?(Maybe an article or something?)

    Every new thing you learn,Gives you a new personality.

    C# html hardware help question

  • PrintPreviewControl and HTML
    D dSolariuM

    I'll wait.thanks

    Every new thing you learn,Gives you a new personality.

    C# html hardware help question

  • PrintPreviewControl and HTML
    D dSolariuM

    Hi all, I have some html files (Custom Reports) and I want to show the print preview of them to the user.I don't want to use IE print preview or web browser because they are not embedded in my application and I can not control them the way I want. I was wondering if there is a way to preview a html file in PrintPreviewControl (or any other components like that)? Please help me. thank you.

    Every new thing you learn,Gives you a new personality.

    C# html hardware help question

  • Load print templates
    D dSolariuM

    hi all, How can I load html print template in web browser control in C#? Thank you.

    Every new thing you learn,Gives you a new personality.

    C# question csharp html wpf

  • IE Page size
    D dSolariuM

    Hi all, I want to change the default paper size in internet explorer and print preview... For example I want to have A5 size when some page in going to be previewed... Please help me. thanks.

    Every new thing you learn,Gives you a new personality.

    C# help tutorial

  • OpenCV application error
    D dSolariuM

    I have global declarations of opencv classes and I am using "additional dependencies" section in Linker options.

    Every new thing you learn,Gives you a new personality.

    C / C++ / MFC help

  • OpenCV application error
    D dSolariuM

    I have the problem with opencv only... I have included all the files and libraries... Then I write a simple code that uses opencv libraries... Then I debug the app and the error appears... Before even clicking on the button that contains the code...

    Every new thing you learn,Gives you a new personality.

    C / C++ / MFC help

  • OpenCV application error
    D dSolariuM

    Hi, thanks for quick reply... I mean my application (.exe) file. after i press F5 button to debug the error appears.

    Every new thing you learn,Gives you a new personality.

    C / C++ / MFC help

  • OpenCV application error
    D dSolariuM

    Hi all, I am new to opencv and I want to use it. But Before the application starts an error appears: "The application was unable to start correctly (0x0150002).Click OK to close the application" Please help me(I am using opencv2.0 and running windows vista) Thanks.

    Every new thing you learn,Gives you a new personality.

    C / C++ / MFC help

  • Samples To Bytes
    D dSolariuM

    Hi all, I want to convert samples in a wave file to byte address in the file(MPEG Layer3 format) ... Please help me. thank you.

    Every new thing you learn,Gives you a new personality.

    C# help

  • PNG files
    D dSolariuM

    Hi all, I have problem with showing png files in mfc. I've used CImage::Draw function and CDC::AlphaBlend function but they don't work perfectly. Please someone tell me how to draw a png file (with transparent background) perfectly... Thank you.

    Every new thing you learn,Gives you a new personality.

    C / C++ / MFC c++ help tutorial

  • Programming over internet
    D dSolariuM

    Hi all, I want to write an application that contacts to another application over internet. I don't want to user a web service... because the application may send files,voic,video ,etc. please help me. thank you

    Every new thing you learn,Gives you a new personality.

    Managed C++/CLI help

  • Memory usage and dialogs
    D dSolariuM

    Hi all, I have a problem with dialogs... After using ShowDialog() method to show a dialog, memory usage (in Task manager) rises Up about 3 Mega bytes. But after closing that dialog only 1 mega byte of memory releases. I don't know how to free the extra memory that a dialog makes after closing it! please help me... Thank you.

    Every new thing you learn,Gives you a new personality.

    Managed C++/CLI help performance tutorial

  • RAR compression
    D dSolariuM

    Hello, I want to use RAR compression in my MC++ project ... Please help me.

    Every new thing you learn,Gives you a new personality.

    Managed C++/CLI c++ help

  • UDP messages
    D dSolariuM

    Hi all, I have a server application that sends a udp message to clients, But it receives the message as well, And I don't want this.... I want only other clients Receive the message. Please help me, Thank you.

    Every new thing you learn,Gives you a new personality.

    Managed C++/CLI sysadmin help

  • send Packet to all computer with synchronized
    D dSolariuM

    this code read a some data from file and send to all computer by repeat ring synchronized. but this code dont work .becuase this code make Thread very much . i think existed a way for this work but i don't know. do { Packet=gcnew TcpPacket; Len=file->Read(Packet->data,0,4096); Packet->Length=Len; for (int ClientNumber=0;ClientNumber<SocketsCount;ClientNumber++) { Thread ^ThreadUdp =gcnew Thread( gcnew ParameterizedThreadStart(this, &SendBuffer)); info->Add(Packet); info->Add(ClientNumber); ThreadUdp->Start(info); } }while(Len>0); ///////////////////Send Buffer private:void SendBuffer(Object ^obj) { ArrayList ^arr=(ArrayList ^)obj; TcpPacket ^packet=(TcpPacket ^)arr[0]; int ClientNumber=(int ^)arr[1]; /////////////// SendPacket(packet,ClientNumber); }

    Every new thing you learn,Gives you a new personality.

    Managed C++/CLI

  • Problem with Dialogs....
    D dSolariuM

    Hi ... I have asked this question but nobody answered ... I want to call a function in the parent class of a dialog... How to do that? p.s When I include parent header file in the child and child header file in header I get this error: /////// Form1 #include "Form2.h" Form2 ^f=gcnew Form2; f->ShowDialog(); /////////Form2 #include "Form1.h" Error: syntax error : identifier 'Form2' error C2065: 'f' : undeclared identifier error C2065: 'Form2' : undeclared identifier error C2227: left of '->ShowDialog' must point to class/struct/union/generic type

    Every new thing you learn,Gives you a new personality.

    Managed C++/CLI help question tutorial

  • Get Message
    D dSolariuM

    in Mfc #define WM_MESSAGE WM_USER+1000 ON_MESSAGE(WM_MESSAGE,Function) but i don't know how to create in vc.net

    Every new thing you learn,Gives you a new personality.

    Managed C++/CLI c++ tutorial

  • Get Message
    D dSolariuM

    hi how to get message from other window such as OnMessage in Mfc

    Every new thing you learn,Gives you a new personality.

    Managed C++/CLI c++ tutorial
  • Login

  • Don't have an account? Register

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