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
S

Shivarudrayya H

@Shivarudrayya H
About
Posts
41
Topics
20
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Internal buffer(I/O) size of serialport
    S Shivarudrayya H

    Hi friends, What is maximum size of data we can write to port & read from port? Is there any limit to it?

    Reagards Shiva

    C# question

  • How to write and read the data from USB port within the same application?
    S Shivarudrayya H

    Hi, I want to write a some data, as well read it from USB port. I am able to write the data, But unable to read it. Even the SerialDataReceivedEventHandler is not firing an event. I am getting TimeOut exception. Please help me to solve the problem.

    Reagards Shiva

    C# help tutorial question

  • How to get camera properties?
    S Shivarudrayya H

    Hi friends, I am using VFW to display the video stream in my application. I want to connect two or more than two cameras and same no of display windows. I want to select a camera to display in particular window. So is there any way to find the camera name so that i choose from a list. So help me in this issue.

    Reagards Shiva

    C / C++ / MFC help tutorial question

  • Dialog Create Problem
    S Shivarudrayya H

    Hi Friends, I have developed 3 MFC dll's. I am calling those in SDI application. I am using create fn to create the dialogs of dll. I placed the create code in initinstance of SDI app. The problem is strange...!! Only 2 of 3 get created other will throw an exception. I traced the code it hits at // separately create OLE controls in the dialog template if (pOccManager != NULL) { if (!SetOccDialogInfo(&occDialogInfo)) return FALSE; lpDialogTemplate = pOccManager->PreCreateDialog(&occDialogInfo, lpDialogTemplate); } (The error line is made bold) But same works with my other SDI app.Its only problem in main module.which is developed by other person(He modified the SDI to navigate to different views). Please help me to get out of this problem.....

    Reagards Shiva

    C / C++ / MFC help c++ com

  • Displaying Jpeg Image in MFC
    S Shivarudrayya H

    Hi, I am reading the jpeg image and writing the data to the text file(as binary). I want to reconstruct the jpeg image (like BMP) using the data written in text file. And I want to display it on dialog. Is it possible..?? If Yes let me know the procedure. Thanx in advance.

    Reagards Shiva

    C / C++ / MFC c++ question

  • Converting GUID to Hex
    S Shivarudrayya H

    How to convert GUID string of { 04C99667-DFF4-489F-92C5-5EFE5D18DDD5 } to { 0x00,0x7B,0x00,0x30,0x00,0x34,0x00,0x39,0x00,0x39,........}. Please help me.

    Reagards Shiva

    C / C++ / MFC help tutorial

  • Error in Create Dialog
    S Shivarudrayya H

    As i said earlier it wont paint the dialog.

    Reagards Shiva

    C / C++ / MFC help c++ question

  • Error in Create Dialog
    S Shivarudrayya H

    ya..

    Reagards Shiva

    C / C++ / MFC help c++ question

  • Error in Create Dialog
    S Shivarudrayya H

    I tried it.It wont paint the dialog.

    Reagards Shiva

    C / C++ / MFC help c++ question

  • Error in Create Dialog
    S Shivarudrayya H

    I traced it.Its crashing in following code. BOOL CWnd::CreateDlgIndirect(LPCDLGTEMPLATE lpDialogTemplate, CWnd* pParentWnd, HINSTANCE hInst) { ASSERT(lpDialogTemplate != NULL); if (pParentWnd != NULL) ASSERT_VALID(pParentWnd); . . . . . hWnd = ::CreateDialogIndirect(hInst, lpDialogTemplate, (CRASH)-----> pParentWnd->GetSafeHwnd(), AfxDlgProc);

    Reagards Shiva

    C / C++ / MFC help c++ question

  • Error in Create Dialog
    S Shivarudrayya H

    Ya..

    Reagards Shiva

    C / C++ / MFC help c++ question

  • Error in Create Dialog
    S Shivarudrayya H

    m_DlgClr.CreateSolidBrush(RGB(97,129,175)); I am creating it in OnInitDialog(). and in OnCtlColor(,,) HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor); if(nCtlColor == CTLCOLOR_DLG) return m_DlgClr; return hbr;

    Reagards Shiva

    C / C++ / MFC help c++ question

  • Error in Create Dialog
    S Shivarudrayya H

    Hi Friends, I am creating the dialog in my application. in that using CreateSolidBrush() to paint the dialog. But CreateDialog() is throwing an exception(wingdi.cpp).If i comment CreateSolidBrush()it works fine. what could be the problem?

    Reagards Shiva

    C / C++ / MFC help c++ question

  • Web.Mail - Configuration Error.
    S Shivarudrayya H

    I provided the right name.Here is the my code: SmtpMail.SmtpServer = "smtp.gmail.com"; msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate","1"); msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", textBox1.Text); // User name msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", textBox2.Text); // Password msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport","465"); msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusessl","true");

    Reagards Shiva

    C# csharp help sysadmin workspace

  • Web.Mail - Configuration Error.
    S Shivarudrayya H

    Hi Friends, I developed a mail application in C#.Net. I am using gmail account to send the mail. Its working fine in my system,But not on other (of same config). Its throwing an exception "The SMTP server name is required, and was not found in the configuration source". Please help me.

    Reagards Shiva

    C# csharp help sysadmin workspace

  • Using .Net tlb in VC++ 6.0
    S Shivarudrayya H

    Hi Friends, I am using .NET component in VC 6.0 MFC application. I created tlb file for .NET using RegAsm.exe and importing it in my MFC application. (I referred this link http://support.microsoft.com/kb/828736). Its working fine in my system.But the problem is it wont work on other systems. I installed VC++ 6.0 & VS 2005 (.Net Framework)both on my system. But other systems are only installed with VC++ 6.0. Is it necessary to install .Net framework, If yes what all to install, which version? Please help me..

    Reagards Shiva

    C / C++ / MFC c++ com help csharp dotnet

  • Converting Html To Word file
    S Shivarudrayya H

    Hi, I have developed an application in C#.Net, where Im converting Html file to word. I have two images embedded in html file.The converted word file shows the images also. But if delete the images from the disk (path), the images will not be displayed in word file.Please provide solution for this ??

    Reagards Shiva

    .NET (Core and Framework) csharp html hardware question

  • Creating pdf File
    S Shivarudrayya H

    Thats gr8.These r good one. Thanx.

    Reagards Shiva

    C / C++ / MFC c++ question

  • Creating pdf File
    S Shivarudrayya H

    Hi All, Given a data I want to write a pdf file. Is it possible to do it using MFC..???

    Reagards Shiva

    C / C++ / MFC c++ question

  • Calling .NET DLL from MFC App
    S Shivarudrayya H

    I am using Visual Studio VC++ 6.0. But that artical is specific to Visual Studio 2005..!!

    Reagards Shiva

    C / C++ / MFC csharp c++ 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