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
P

pix_programmer

@pix_programmer
About
Posts
135
Topics
72
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to get the index of a cell in a Table
    P pix_programmer

    Hi! I've to print the index of a selected cell in a Table. The table has eight rows and eight columns. The rows are labled from A to H and the cloumns are labled from 1 to 8. If I click the cell in the first row and first column I've to print A1. Similarly If I click the cell in the first row and Second column I've to print B1 My function has to return the index of each and every cell in the table. How to code that function in C++?

    Algorithms c++ database tutorial question

  • Long pointer to character C++
    P pix_programmer

    Is it possible in C++ to declare a pointer as long?( like long int). I'm reading some string from a XML file and assigning it to a const char* variable. But the application crashes, when string is huge. Is there any maximum limit for char * variable? How to avoid the crash,when the string is huge?

    C / C++ / MFC c++ xml tutorial question

  • Merging Arrays
    P pix_programmer

    How to merge two arrays? Consider the following two arrays: int a[3] = {2,3,5}; int b[3] = {4,6,8}; These two arrays has to be merged and stored in a third array c. My expected result would be : c[6] = {2,3,5,4,6,8}; How to do this?

    C / C++ / MFC data-structures tutorial question

  • Fatal Error C1902
    P pix_programmer

    Deleting mspdb80.dll file didn't work. It seems a virus problem. Will a repair install of VS2005 work?

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

  • Fatal Error C1902
    P pix_programmer

    I've deleted not only the mentioned file but also the folders like Debug and Release. But the error remains as such. Can you tell me the error is due to Service Pack or redistributable? I forgot to mention the VS version. VS 2005 on both the machines.

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

  • Fatal Error C1902
    P pix_programmer

    Jochen Arndt wrote: delete all files except the source and project files and rebuild. I deleted the Program Database (.pdb) file. By all files you mean what other files?

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

  • Fatal Error C1902
    P pix_programmer

    Hi! I got the following erros during compilation. Error 2 error BK1506 : cannot open file '.\Compilations\PlugIn_Debug_Win32\PlugIn.sbr': No such file or directory BSCMAKE Error 1 fatal error C1902: Program database manager mismatch; please check your installation d:\plugin\stdafx.cpp 1 The source is transferred from another machine. When I rebuild the code for the first time(I've not modified the code),it compiles fine. But when I made changes to the code and recompile it shows the above two errors. Both machines have SP1 for VS2005. How to resolve the above two errors?

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

  • Random Number
    P pix_programmer

    Hi! I've to select a number radomly from 1 t0 6. What is the C++ code for this?

    C / C++ / MFC question c++ lounge

  • Linker Error :C1900
    P pix_programmer

    Hi! Installing the SP1 for Visual Studio 2005 fixed this error. Thank you.

    C / C++ / MFC dotnet help tutorial question announcement

  • Linker Error :C1900
    P pix_programmer

    Hi! Can any one tell me how to solve this error? C1900: Il mismatch between 'P1' version '20060201' and 'P2' version '20050411'

    C / C++ / MFC dotnet help tutorial question announcement

  • Help about Windows Batch file.
    P pix_programmer

    Hi! I'm calling an exe from a Batch file using CALL statement. The exe is not the same folder with batch file. The exe is inside some other folder. The exe has some dependencies(VC++ DLL's). How to include/call those DLL's also inside the CALL statement so that my exe would run without errors? The code that I use is:

    PushD .
    Cd ..
    Call Gen /AssetManager:Disable /DisplayErrors:off /ReturnErrorsCount:off /Log:Enable /Log:Html /Log:Verbose /Window:Normal /CreateObjectHash /RemoveSources:On /CreateResourceHash /GenerateDisplayLists:On /GenerateSceneLists:Off /GeneratePreDrawOT "france_1222\Test.xml" france_1222\%_SDF_% "iPhone"
    PopD

    "Gen" is my exe name.

    C / C++ / MFC c++ html ios xml help

  • Data Encapsulation
    P pix_programmer

    Hi! Can any one explain with reference the following code: (1)Where Data is encapsulated (At which line of code does the encapsulation)? (2) Where Data Abstraction is done(At which line of code does the abstraction)?

    #include "iostream"

    using namespace std;

    class Rectangle
    {
    private:
    float width,height,Area;
    public:
    Rectangle()
    {
    width = 35.0;
    height = 25.0;
    }

         Rectangle(float w, float h)
         {
            width = w;
            height =h;
         }
         void GetArea()
         {
          Area = width \* height;
          cout<<"Area of the rectangle is \\t"<
    
    C / C++ / MFC oop question

  • C++ Program without main()
    P pix_programmer

    Richard MacCutchan wrote: using the Linker /ENTRY[^] I checked the project property pages. It's also empty. From where it comes?

    C / C++ / MFC c++ question

  • C++ Program without main()
    P pix_programmer

    Hi! Is it possible to write a program with out main() function in C++? If yes, Erom where the execution begins for such a program?

    C / C++ / MFC c++ question

  • HTML 5 Tutorial
    P pix_programmer

    Hi! I'm new to HTML 5. Where can I find a Tutorial to HTML 5?

    JavaScript html tutorial question

  • new and free
    P pix_programmer

    Thank you Sir :) .

    C / C++ / MFC c++ performance question

  • new and free
    P pix_programmer

    Hi! Is it possible to deallocate a memory that was allocated by new using free function? Otherwise what will happen if we deallocate using free function while the memory is allocated using new in C++?

    C / C++ / MFC c++ performance question

  • ShellExecute in WPF
    P pix_programmer

    Hi! I've to change the state of the application to minimized before opening the URL. I'm using this code.

    #if WINDOWS
    this.WindowState = WindowState.Minimized;
    #endif

    But it shows the following error: The name 'WindowState' does not exist in the current context How to minimze the application before opening the URL?

    WPF question csharp wpf help tutorial

  • ShellExecute in WPF
    P pix_programmer

    Pete O'Hanlon wrote: Process.Start(url); I've used this. It's opening the URL many times. I want only one time. How to do this? What about ShellExecute with WPF?

    WPF question csharp wpf help tutorial

  • ShellExecute in WPF
    P pix_programmer

    Hi! What is the namespace to include for ShellExecute to compile? I've to open a URL from WPF Emulator. How to do this? I tried

    Process.Start()

    But it opens many times. ShellExecute() doesn't compile. It gives the following error: The name 'ShellExecute' does not exist in the current context How to open a URL in WPF?

    WPF question csharp wpf help 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