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
A

Anand Amirineni

@Anand Amirineni
About
Posts
12
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • DCOM with Visual C++
    A Anand Amirineni

    Use this. HRESULT CoCreateInstanceEx( REFCLSID rclsid, //CLSID of the object to be created IUnknown *punkOuter, //the controlling IUnknown DWORD dwClsCtx, //CLSCTX values COSERVERINFO *pServerInfo,//Machine on which the object is to be instantiated ULONG cmq, //Number of MULTI_QI structures in pResults MULTI_QI *pResults //Array of MULTI_QI structures ); Cheers, Anand ;)

    C / C++ / MFC c++ question

  • receiving a Boolean type in VB
    A Anand Amirineni

    Just more Info for you. In C++, TRUE is +1, but VB and automation clients use TRUE as -1 and FALSE as +1. If you use BOOL, all you can see is clouds of confusion over your application. so use VARIANT_BOOL(boolean type), VARIANT_TRUE(true),VARINAT_FALSE(false) Whenever you are using C++(COM), you should avoid using bool, BOOL in your application. Cheers, Anand:-D

    COM c++ help com question

  • DCOM, Events and Performance
    A Anand Amirineni

    Usually Events in COM are a kind of painful. these were designed for in- process DLLs. Each event takes 5 round trips from source to sink to complete its duty. Just imagine, how much load on the network due to these round trips.. If you have 8- 10 events.........think.. 40-50 round trips( calls) I will come up with more info.wait.. Cheers, Anand.

    COM question com sysadmin performance

  • DCOM with Visual C++
    A Anand Amirineni

    Use this. HRESULT CoCreateInstanceEx( REFCLSID rclsid, //CLSID of the object to be created IUnknown *punkOuter, //the controlling IUnknown DWORD dwClsCtx, //CLSCTX values COSERVERINFO *pServerInfo,//Machine on which the object is to be instantiated ULONG cmq, //Number of MULTI_QI structures in pResults MULTI_QI *pResults //Array of MULTI_QI structures ); Cheers, Anand

    COM c++ question

  • Id like some help please....
    A Anand Amirineni

    I got the same problem. you need to have .NET on target machine. http://msdn.microsoft.com/downloads/default.asp?url=/downloads/sample.asp?url=/msdn-files/027/001/829/msdncompositedoc.xml. try to download this and have fun. - Anand :)

    C# csharp help announcement

  • CAB files Vs Hotmail
    A Anand Amirineni

    I tried (5 times)to attach CAB file, but no luck.. Its not giving any error, but simply ignores what you doing..

    C# visual-studio question

  • CAB files Vs Hotmail
    A Anand Amirineni

    Just to share with you guys, Hotmail is not accepting CAB file as an attachment. Anybody tried? -Anand

    C# visual-studio question

  • Deploying C# Application?
    A Anand Amirineni

    Hi, I am trying to run my C# application on different machine by copying executable. I am getting this error. " A required, MSCOREE.DLL, was not found". Can some one guide me how to deploy.?(FYI: I am creating Cab Project and set up project) Any restrictions on target machine for deployment.?:confused: Thanks, Anand.

    C# tutorial csharp sysadmin help question

  • C# properties
    A Anand Amirineni

    I think ONE. ( may be this approach can help us) As we know , this the way of accessing member variables( state of the class) through methods(get,set) without breaking the client code. Often memeber variables (State) need to be computed.(ex: get and set to/from DB),then this way of accessing will be useful. I think this the trade-off.(If we really wasting space) Check your MSIL using ILDASM.exe( NET FWk/SDK/ bin). in your example, NAME is property and name is member variable. Next, value is implicit parameter for "set" method CLR reads your program as set(value) { membervariable = value; } Thanks, Anand.

    C# question csharp

  • C# and .NET books
    A Anand Amirineni

    C#: -Programming C#, Jessy Liberty.: ISBN 0596003099 -C# and the .Net Platform : ISBN 1893115593 .NET -.NET Framework Essentials, 2E : ISBN 0596003021 I prefer bookpool, ( www.bookpool.com)( Save some money here) You can preview books @ http://safari.oreilly.com Cheers Candy

    C# csharp question learning

  • help in treeview needed
    A Anand Amirineni

    try to get code from this book. chapter 13 - Programming C#. by Jesse Liberty Link for source code is in this web site. www.libertyassociates.com

    C# data-structures help tutorial question

  • Errors & Exceptions in C#
    A Anand Amirineni

    How to solve "System.StackOverflowException" I am getting this, when I try to set a value to memeber variable. namespace StackOverFLow { /// /// Summary description for Class1. /// class StFlow { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { StFlow STF = new StFlow(); STF.Name = "CodeProject"; string str = STF.Name; } public string Name { get { return Name; } set { Name = value; } } } } Thanks, Candy

    C# csharp 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