Search:

Type: Posts; User: Opel_Corsa

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Very helpful thread indeed. Thanks for sharing...

    Very helpful thread indeed. Thanks for sharing your experiences.
  2. First, thank you. To be honest with you I didn't...

    First, thank you. To be honest with you I didn't learn programming the usual way (I learned it the wrong way in fact). I know how to write code in both languages but there are many things that I...
  3. Java or C#: which has higher compatibility?

    Hello,

    I'm working on an application that does some SQL work by interacting with an Access database (i.e. will need ODBC/JDBC) with some GUI. I'm wondering whether I'm better off writing it in C#...
  4. Thanks. Hoewer I just managed to fix it in my...

    Thanks. Hoewer I just managed to fix it in my code.
  5. I understand your point, but there should be a...

    I understand your point, but there should be a way so that I can tell the code to use this user's permission template when trying to access that folder. e.g. using SYSTEM, or using a specific user...
  6. Accessing files/directories with different permission

    When my code tries to access the files in a certain folder, a bunch of permission denials are thrown back at me. How can I let the program access the folder using a certain user/permission set?
    ...
  7. Accessing directories with different permission

    I try to access the files in a certain folder using Directory.GetFiles() and a bunch of permission denials are thrown back at me. How can I let the program access the folder using a certain...
  8. Replies
    4
    Views
    1,134

    That's bad news then... One is written using the...

    That's bad news then... One is written using the .NET library (but in C++) and needs to be compiled using /clr (no support for /MT). The other one relies on a 3rd party API (Perforce -p4api) that...
  9. Replies
    4
    Views
    1,134

    Combining /MD and /MT codes

    I have a piece of code that can be compiled using the /MD keyword and another one that can be compiled only using the /MT keyword. Is there a way I could combine these two into one project, so that I...
  10. Replies
    5
    Views
    1,648

    Got it working from VC++ command prompt; couldn't...

    Got it working from VC++ command prompt; couldn't do it from the IDE. thanks anyways.
  11. Replies
    5
    Views
    1,648

    It has a jamfile instead of makefile, and I don;t...

    It has a jamfile instead of makefile, and I don;t want to install Jam Builder on my comp... Is there a way to do it in VC++ IDE?
  12. Replies
    5
    Views
    1,648

    Building with libraries

    It is a very basic question, but I don't know how to compile a .cpp that comes with 3rd party libraries. I have downloaded an API which includes a sample .cc file, some header files and some...
  13. Replies
    9
    Views
    1,806

    I posted the exact same question in Microsoft's...

    I posted the exact same question in Microsoft's C# forum, and shortly it was moved to the C++ forum by the mods... and by unsized array I meant an uninitialized array (maybe I used wrong wording)....
  14. Replies
    9
    Views
    1,806

    Alrite, finally I managed to solve this...

    Alrite, finally I managed to solve this...
  15. Replies
    9
    Views
    1,806

    I am writing my code in a C++ project, in a .cpp...

    I am writing my code in a C++ project, in a .cpp file, and all I have done is that I included mscorlib into my code. Since this dll is being used almost widely in C++ projects I guessed that someone...
  16. Replies
    9
    Views
    1,806

    String is in mscorlib.dll and is a part of the...

    String is in mscorlib.dll and is a part of the .NET framework.
  17. Replies
    9
    Views
    1,806

    Maybe I wasn't using the right syntax for...

    Maybe I wasn't using the right syntax for vectors, but I tried


    vector<String*> f = Directory::GetFiles(sDir);
    and it didn't work. I also tried vector<String> (without *) and still same thing......
  18. Replies
    9
    Views
    1,806

    Appending an unsized array

    Is there a way to append an unsized array (of strings) to the end of another one? I have the following incomplete function:


    String* all_files(String* sDir)[]
    {
    String* f[] =...
  19. Replies
    11
    Views
    2,479

    Your program is using default seed values to...

    Your program is using default seed values to generate rands. To produce real random values the best method is using the ctime library; this way since no two time values are the same you get perfectly...
  20. Replies
    4
    Views
    2,966

    Thanks Daved and Wraith. That's a good idea...

    Thanks Daved and Wraith.


    That's a good idea but to do that, how would I obtain the names of files and folders inside the parent directory?

    Also I've decided to use CSHA1 for the comparison...
  21. Replies
    4
    Views
    2,966

    Comparing 2 directories

    I am trying to write a program that compares the files of 2 directories. I am having all sorts of troubles even planning, so I'm just going to directly ask my questions:

    - How would I iterate...
  22. Replies
    5
    Views
    1,761

    would it make a difference if the path to the...

    would it make a difference if the path to the library is set in the user environment variables (win xp)?
  23. Replies
    5
    Views
    1,761

    importing libraries from elsewhere

    How would I include a lib that is in a different folder than vc7? e.g. the lib is in C:\abc\Lib. Is it possible to set something like a PATH value in C++ to allow it to look for libraries in specific...
  24. Replies
    5
    Views
    8,225

    I don't want to install the entire postgres on my...

    I don't want to install the entire postgres on my computer, only the libpq itself.
  25. Replies
    5
    Views
    8,225

    Yes, I have been there and my ultimate goal is...

    Yes, I have been there and my ultimate goal is using the libpqxx library. But the problem is that libpq is needed for libpqxx to work. So I'm wondering how I can install this library.
Results 1 to 25 of 80
Page 1 of 4 1 2 3 4