CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: srishi1302

Search: Search took 0.02 seconds; generated 26 minute(s) ago.

  1. Replies
    1
    Views
    3,457

    compiling log4cplus in vc6

    Hi all,

    I compiled the log4cplus code in vc8 it compiled correctly and i can able to use it in vc8 projects, and then when i tried to use the dll in vc6 i got 2 unresolved functions... as usual i...
  2. Replies
    2
    Views
    1,114

    Restricting User to Access Text File

    Hello all,
    I am having third party exe for which i don,t have source code which is taking one text file as input. i want create one more win32 application which creates this input file. for third...
  3. Replies
    4
    Views
    37,658

    Re: Restricting User to Access Text File

    ok i will post under vc++ programming....

    Thanks
  4. Replies
    4
    Views
    37,658

    Re: Restricting User to Access Text File

    do u have any idea on applying security descriptors on text file. so that permission can only be given to the third party exe and my exe to access the file
  5. Replies
    4
    Views
    37,658

    Restricting User to Access Text File

    Hello all,
    I am having third party exe for which i don,t have source code which is taking one text file as input. i want create one more win32 application which creates this input file. for third...
  6. Replies
    4
    Views
    1,252

    Re: creating primitive type

    No, u cant create primitive data types..
    they are supported by compilers only ..
    but u can create your own type in vb
  7. Replies
    8
    Views
    1,607

    Re: Problem with mdi container

    Hi..

    Just i am giving advice... i am not sure of this..
    cant u have a handler for tool bar buttons next and previous and then use data grid functions to move the records programatically...
  8. Re: Implementing C++ Compiler for Microcontrollers

    Thank you very much .. Erik
  9. Implementing C++ Compiler for Microcontrollers

    Dear All,

    I am planning to implement the c++ compiler on wide range of microcontrollers. since the c++ compiler is not availaible for freely for embedded controllers. i am planning to take the gcc...
  10. Thread: HTML Parser

    by srishi1302
    Replies
    1
    Views
    938

    Re: HTML Parser

    i think u should first convert your html code to xhtml
    then you can use xml parser (ie) a com component to parse your xhtml.
  11. Replies
    4
    Views
    1,078

    Re: conversion operator in template

    Hello
    Make this correction in your code
    f2<int>(b1);

    it will work

    i copied ur code and corrected
    its working ..
  12. Replies
    18
    Views
    26,252

    Re: string in Stack or Heap ?

    I have the question in same line
    then why reference of string is not passed to any of my function
    ie

    code:
    public static void swap(string s1, string s2)
    {
    // If Pass strings from main to this...
  13. Loss of Control by Moving from MFC to .Net

    Hell all
    My question is
    what is the loss in terms of control over the window objects by moving from win32 or MFC to .Net
    what one can except from .net
    what are the things i need to sacrifice......
  14. Replies
    5
    Views
    1,103

    Re: I've a question about SetWindowHookEx

    No need that ur procedure in dll
    it may contain in ur own process also
  15. Replies
    15
    Views
    2,395

    Re: Self Member Function Pointer

    #pragma warning(disable:4786)

    #include <iostream>
    #include <map>
    using namespace std;

    class myClass
    {
    private:
  16. Replies
    4
    Views
    1,191

    Re: ActiveX Control.....?????

    u will get this as obj in ATL Wizard as ATL Object
    u will get implementation also
  17. Replies
    4
    Views
    1,191

    Re: ActiveX Control.....?????

    interface IComponentRegistrar : IDispatch
    {
    [id(1)] HRESULT Attach([in] BSTR bstrPath);
    [id(2)] HRESULT RegisterAll();
    [id(3)] HRESULT UnregisterAll();
    [id(4)] HRESULT...
  18. Replies
    14
    Views
    1,972

    Re: Functions with one parameter problem

    change it to return 0;
    since by default main() declaration is like below
    int main();
Results 1 to 18 of 18





Click Here to Expand Forum to Full Width

Featured