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

Search:

Type: Posts; User: Tineras

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Re: Communication between Windows C# app and Linux web server?

    Thanks for the response. I will definitely look into this. I also had a friend recommend setting up an IIS server on the same machine as my client app (bypassing the need for a hosted website) and...
  2. Communication between Windows C# app and Linux web server?

    Let me preface this by saying I have never done any network/web programming. I don't even know if this is in the right subform. Here is my situation:

    I have a C# Windows Forms application (created...
  3. Re: Cannot create a new console application. Only XNA shows up.

    Ahhhh! Please ignore this thread. XNA was highlighted by default. I didn't realize that clicking on 'Visual C#' under project types would give me all the default options.
  4. Cannot create a new console application. Only XNA shows up.

    ---.NET 3.5 SP1 C# Express 2008---

    When I try to create a new project in C# Express 2008, I only get the following options:

    Project Types->Visual C# (XNA Game Studio 3.0)

    Windows Game...
  5. Re: Convert BSAVE (BSV) to BMP or other common format?

    Unfortunately, our "solution" had nothing to do with correcting the problem I mentioned above. We were trying to replace a line-printing (dot matrix style) printer with a network printer. The old...
  6. Re: Convert BSAVE (BSV) to BMP or other common format?

    We came up with another solution, so this post can be disregarded. Although, I wouldn't mind hearing any suggestions for my own peace of mind.

    Thanks
  7. Replies
    2
    Views
    1,040

    Re: Is there a way to force a key press in C?

    Nevermind this post. We came up with another solution.
  8. Replies
    2
    Views
    1,040

    Is there a way to force a key press in C?

    I have a program running that requires a key press to activate. I need to press Ctrl+Alt+T. Is there a way to force those keys with a C program?

    The original thread is here if this clears things...
  9. Re: Convert BSAVE (BSV) to BMP or other common format?

    Is there a way to force key commands from gwbasic? Or is there a way to force key commands through C?
  10. Re: Convert BSAVE (BSV) to BMP or other common format?

    Well, the problem is that this configuration has been used for many years and I don't think they plan on changing it any time soon. Unfortunately, I'm stuck using GWBASIC.

    I thought it might be...
  11. Convert BSAVE (BSV) to BMP or other common format?

    I wasn't sure where to put this post, so I decided to just put it here since it's related to BASIC (GWBASIC). (Feel free to move it somewhere else if there is a better place)

    I have a project at...
  12. Replies
    3
    Views
    738

    Re: Some namespaces not in Academic Edition?

    OMG! I just assumed all this time that I was missing stuff because I had the academic version. YOU ARE AMAZING!!!! THANKS!!!!!!!!!!!!!!!!!!
  13. Replies
    3
    Views
    738

    Some namespaces not in Academic Edition?

    Visual Studio 2005 Academic Edition(.NET 2.0.50727)

    I am trying to monitor and change system services using the ServiceProcess namespace.



    using System.ServiceProcess;


    Is this missing...
  14. Replies
    22
    Views
    3,552

    Re: Combining Arrays?

    True. With that mentallity you could even say, "Why use for loops? Why don't you just write every line out one by one?". I just need the code to be written quickly so I can get on with the rest of...
  15. Replies
    22
    Views
    3,552

    Re: Combining Arrays?

    I didn't predefine a size because I had not idea how many files would be returned. Is that a problem?
  16. Replies
    22
    Views
    3,552

    Combining Arrays?

    (.NET Version 2.0.50727) VS2005


    strGetFiles = Directory.GetFiles(strDirectory, strFileType[0], searchOption);

    strGetFiles1 = Directory.GetFiles(strDirectory, strFileType[1], searchOption);
    ...
  17. Replies
    1
    Views
    3,407

    Re: Menustrip Icon Placeholder?

    I found a solution. This worked:



    ((ToolStripDropDownMenu)(fileToolStripMenuItem.DropDown)).ShowImageMargin = false;
  18. Replies
    1
    Views
    3,407

    Menustrip Icon Placeholder?

    How do you remove the gray bar that is a placeholder for icons that appear next to 'File', 'Open', etc.?

    I have an example of what I'm talking about here:...
  19. Replies
    8
    Views
    830

    Re: Good website for file specifications?

    I surprised there are more databases with this information.

    I found some info on http://www.wotsit.org

    This is the kind of information I was looking for:



    X'FF', SOI
    X'FF',...
  20. Replies
    8
    Views
    830

    Re: Good website for file specifications?

    I'm sorry, I didn't know that it had detailed information. I guess I just wasn't paying close attention.
  21. Replies
    8
    Views
    830

    Re: Good website for file specifications?

    I'm actually wanting to read and edit the Hex data in the file headers of various file types. For example, if I want to find out the image width of a .jpg file, my program would use BinaryReader to...
  22. Replies
    8
    Views
    830

    Good website for file specifications?

    Does anyone know of any good websites that list several different file specifications? (ex. .txt, .jpg, .xxx)

    I am wanting to read files using binaryreader and want to know which parts of the file...
  23. Undeclared Identifier when trying to use an object

    I created an object array when a button is clicked. When I try to use any of the objects in another function, it is saying that it's an undeclared identifier.

    What do I need to do to make sure I...
  24. Re: Undeclared Identifier when trying to reference an object

    Sorry. I'm still new to programming. I didn't know there was a difference in Visual C++ an Visual C++ .Net
  25. Re: Undeclared Identifier when trying to reference an object

    *bump*

    I just need to know how to add picBlocks[j] as a class member. If you need additional code accurately anser this question, I'd be glad to post it.

    Thanks
Results 1 to 25 of 31
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured