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

Shraddha Gautam

@Shraddha Gautam
About
Posts
14
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • const int *
    S Shraddha Gautam

    what is meaning of const int * & int * const.

    C / C++ / MFC question

  • problem in creating singleton class
    S Shraddha Gautam

    Thanks. We tried using that but it is creating two objects. Our application is not a multithreading.plz let know what has to be done.

    C / C++ / MFC help

  • problem in creating singleton class
    S Shraddha Gautam

    HELLO, We have tried creating singleton class. the code is as follows class singleton { private: static singleton * single; singleton() { } public: static singleton* getinstance(); }; singleton* singleton :: getinstance() { if(NULL==single) single = new singleton(); return single; } main() { singleton *obj_singelton; obj_singleton = singleton::getinstance(); } for this we are getting the following linker error undefined symbol singleton::single.

    C / C++ / MFC help

  • Using report viewer control in Windows forms with CLR suppport
    S Shraddha Gautam

    Hi, I am working on a project in Windows Forms VS 2005 .I want to use the report viewer control in this. I got some information on the net and implemented it in a sample project. It works absolutely fine. I tried implementing it the same way in my project, it does not work. What i am doin is i am adding a data source. On clicking on "Object" icon in data source wizard the assembly should be visible. But it doesn't appear in my final project. I tried finding out the difference in settings between the 2 projects. In the references options of the project,in "Configuration properties", in "General" suboption the "Common lanuguage runtime support" option were different. In the project in which the report viewer control works fine, the "Common lanuguage runtime support" option is selected is :: Pure MSIL Common Language Runtime Support(/clr::pure) In my project I need to make is as Common Language Runtime Support(/clr) because I am using Win32 dlls in my project. Please let me know what changes have to be made so that I ma able to view the assemblies in the wizard. Thanx in advance. shraddha

    Windows Forms dotnet visual-studio winforms lounge workspace

  • Problem with report generation
    S Shraddha Gautam

    Hi, I am developing an application in VC++ Windows Forms using Visual studio 2005. I need to generate reports for the application. I tried using Report Viewer control in it. After surfing the net i got a piece of code for report viewers in C#. I tried changing the code according to Windows Forms syntax... But it does not work...Please if any one could help me with this. Thanx in advance shraddha

    C / C++ / MFC csharp help c++ visual-studio winforms

  • Problem with Repalcing a view
    S Shraddha Gautam

    Hello all, I am facing a problem in replacing a view to display the output. I have a pieceof code as follows :: ************************************************************************** /// some print statements;; ... ... ////// CRuntimeClass *ptr = RUNTIME_CLASS(COutputRichEditView); pMainFrame->ReplaceView(0,1,ptr,CSize(200,200)); /// again some print statements;; ... ... ////// CRuntimeClass *ptr = RUNTIME_CLASS(COutputRichEditView); pMainFrame->ReplaceView(0,1,ptr,CSize(200,200)); *************************************************************************** The above code initially prints a set of statements and displays them to the user. Then it takes some other input from the user.Calculates the values.It again has some print statements. The second set of print statements are to be displayed after the first set. So i need to write the following 2 lines again. CRuntime.... pMainFrame.... As soon as i repeat the above statement, access violation occurs. I tried using following code as well. I defined a class COutputRichEditView1. CRuntimeClass *ptr = RUNTIME_CLASS(COutputRichEditView1); pMainFrame->ReplaceView(0,1,ptr,CSize(200,200)); But its not working... Any help in this context will be useful. I have already hunted information,but doesn't prove to be useful. Please help..Its urgent. Regards, shraddha

    C / C++ / MFC help

  • How to secure .avi files and a pdf file?
    S Shraddha Gautam

    Hello, Thanx for your reply.Sorry for late reply from my side.Can you please let me know how do i put the .pdf and .avi as resources in the exe..These files are actually lying in the folders outside the exe. Thanx in advance, Regards, Shraddha

    IT & Infrastructure help security tutorial question

  • How to secure .avi files and a pdf file?
    S Shraddha Gautam

    Hello all, I am stuck with a security issue.I want to provide security to a few swf, sound(.avi) files and a pdf file. Can you please sugest me some means has to how i can do this? I want only the authorized user to have acces to the above mentioned files. These files are present in a folder. Any suggestion in this regards will be appreciated. Thanx in advance Regards, shraddha

    IT & Infrastructure help security tutorial question

  • Problem in starting a new project in ASP
    S Shraddha Gautam

    Hi all, I have tried creating separate ASP pages in Interdev 6.0. They are working fine. I now want to ceate a new project in Interdev. I tried creating it but the first wizard asks for name and the second wizard wants to specify server and mode. I am curently using IIS on my local machine... Plz let me know wat should I enter in the edit box....I tried entering localhost, but it pops up an error message. Need some help in this. Thanks in advance. Regards, Shraddha

    IT & Infrastructure help sysadmin windows-admin

  • Problem in starting a new project in ASP
    S Shraddha Gautam

    Hi all, I have tried creating separate ASP pages in Interdev 6.0. They are working fine. I now want to ceate a new project in Interdev. I tried creating it but the first wizard asks for name and the second wizard wants to specify server and mode. I am curently using IIS on my local machine... Plz let me know wat should I enter in the edit box....I tried entering localhost, but it pops up an error message. Need some help in this. Thanks in advance. Regards, Shraddha

    Web Development help sysadmin windows-admin

  • Problem in ASP Validation
    S Shraddha Gautam

    Hi all, I am facing a problem in ASP project. Can anyone plz help me with validation of an html page. I want to validate the fields on an html page and then submit the details in the database. I am able to add the details to the database. But if any of the field remains empty, then that particular column remains empty in the database. I am also able to display a message on the neext screen, if the user clicks on Submit. I want a message to be popped up at the screen itself. I urgently need some help...Plz let me know. Thanks in advance Regards, Shraddha

    IT & Infrastructure help html database

  • Problem in ASP Validation
    S Shraddha Gautam

    Hi all, I am facing a problem in ASP project. Can anyone plz help me with validation of an html page. I want to validate the fields on an html page and then submit the details in the database. I am able to add the details to the database. But if any of the field remains empty, then that particular column remains empty in the database. I am also able to display a message on the neext screen, if the user clicks on Submit. I want a message to be popped up at the screen itself. I urgently need some help...Plz let me know. Thanks in advance Regards, Shraddha

    Web Development help html database

  • Problem in ASP validation
    S Shraddha Gautam

    Hi all, I am facing a problem in ASP project. Can anyone plz help me with validation of an html page. I want to validate the fields on an html page and then submit the details in the database. I am able to add the details to the database. But if any of the field remains empty, then that particular column remains empty in the database. I am also able to display a message on the neext screen, if the user clicks on Submit. I want a message to be popped up at the screen itself. I urgently need some help...Plz let me know. Thanks in advance. Regards, Shraddha

    ASP.NET help html database

  • Incorporating VC++ with flash
    S Shraddha Gautam

    Hi All, I am trying to incorporate flash in my vc++ project. Can anybody plz tell me how can i proceed ?? I have selectd the shockwavflashobject but plz tell me how to view the flash screen when the project is executing. Plz let me know soon Thanks in advance... Regards, Shraddha

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