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

Search:

Type: Posts; User: Krishnaa

Page 1 of 80 1 2 3 4

Search: Search took 1.00 seconds.

  1. Replies
    5
    Views
    5,239

    Re: Is this a good programming practice?

    Try learning one language at a time.
  2. Replies
    1
    Views
    7,189

    Re: Class Diagram in C# 2010 Express?

    It's not there in Express version.
  3. Replies
    1
    Views
    1,273

    Re: ASP.NET MVC3 Mini Forum Help?

    I don't think the design would be discussed with such a small and confusing data. However,I don't think your inheritance idea is rightly applicable for models. Can you explain further if you have...
  4. Replies
    3
    Views
    3,532

    Re: Webservice to send an xml file over TCP

    You should use WCF with TCP binding.
  5. Replies
    2
    Views
    1,077

    Re: Help! Locked in Excel Jail!

    I dont think this is enough data on your problem. If I have understood correctly, you just want to import the data from XL to Access without the headers in XL, right? So using your code ignore the...
  6. Replies
    4
    Views
    1,407

    Re: ScrollWindowEx not repeating

    Isn't it obvious that your myView.left, top, bottom and right values go beyond the screen ordinates after a while ?

    Have you tried debugging this code?
  7. Replies
    21
    Views
    9,289

    Re: Wake monitor from sleep... updated method

    Waking up the monitor just for the message seems not so good idea, if the user is there he/she will anyway wakeup the monitor by pressing keys and then automatically see the message. So I would...
  8. Replies
    10
    Views
    28,379

    Re: Determing the version of Windows SDK

    So, then you do not have Windows SDK, you have the default SDK that comes with Visual Studio, whose version is not important.
  9. Replies
    8
    Views
    1,697

    Re: __declspec / DLL / C++ confusion

    You can not export a class, but you can export the methods and variables individually, you can also export these with C++ way of exporting. You have Visual C++ project types like MFC DLLs that export...
  10. Replies
    10
    Views
    28,379

    Re: Determing the version of Windows SDK

    I don't think it's the registry, look at tools->directory settings, there it fixates onto those SDK versions based on the configuration.
  11. Re: How to change the positions this small circle in the Graphics...

    Then let's take one error at a time.
  12. Replies
    10
    Views
    28,379

    Re: Determing the version of Windows SDK

    Visual Studio refers to the latest SDK that you have installed by looking at the environmental variables such as Include and Lib.
  13. Re: Unable to access dll's from my personal folder

    SetDllDirectory() will work, but if the DLL's that you use are all in given directory and other folders which are part of PATH.

    So, show us t6hat code and lets then comment about that.
  14. Replies
    5
    Views
    1,497

    Re: Automatic Assignment

    Does this kind of program need any algorithm (other than simple steps to follow) ???
  15. Replies
    1
    Views
    775

    Re: voices between computers

    Learn socket programming, try transferring text first, if you do that well then learn how to read in & play the audio input from your program and then do the audio transfer.
  16. Re: Recent CS Grad: Is it better to find a steady career or contract work?

    As you are a beginner, you should do a full time job and train yourself well, doing contracts is for people who specialize in the type of work and that's how they can keep getting good money out the...
  17. Replies
    8
    Views
    1,274

    Re: type intitializer error in C# module

    You need to use a tool like process explorer to see loaded DLLs on the source comp and then see on target comp for the application that you are running.
  18. Re: Ways to insert unique ID into a logging function

    Do whatever way man, try sequencing classes, then may be try doing 1.1, 1.2 for the functions.
  19. Replies
    8
    Views
    1,274

    Re: type intitializer error in C# module

    This error is only seen when some of the DLLs are not passed on to machine where you are trying to run the app. So check again and make sure that these dlls are there.
  20. Thread: HTTPS Upload

    by Krishnaa
    Replies
    4
    Views
    1,711

    Re: HTTPS Upload

    Using HTTP(s) upload, you can not upload to a directory, you can only POST to a page, so you need a page which can take this.

    http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=115
    ...
  21. Replies
    6
    Views
    1,155

    Re: A question regarding LPARAM of WindowProc

    You can always search for the Message on MSDN and get the details of it's parameters (WPARAM and LPARAM), you dont need to go to a central place and look for your message.
  22. Replies
    8
    Views
    1,274

    Re: type intitializer error in C# module

    Are all dependant DLLs present there ? i.e. the DLLs that you imported.
  23. Re: Is it possible to have new allocate more than 4Gigs?

    IMO, if there is more than 4GB attached (memory extensions) then it can be allocated even on 32 bit system. I think the limit is 2^36, if allocated with help of memory mapped files then this works,...
  24. Re: Adding video file as a linked resource to an VC++[MFC] project

    You can implement your own mechanism to have Linked resource, there is no standard mechanism to do that.
  25. Replies
    9
    Views
    9,041

    Re: CreateProcessAsUser() from service

    If CreateProcessAsuser returns non-zero value that means you do not need to check for last error, the function has succeeded, some internal API call resulted in the last error but the internal code...
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured