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

Search:

Type: Posts; User: jo15765

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,108

    Re: Convert string to Bool

    Another young learning mistake made by myself....instead of it being "=" it should have been "=="

    Maybe this can help someone who comes across this post later on.
  2. Replies
    1
    Views
    1,108

    [RESOLVED] Convert string to Bool

    I have a windows form where I have a textbox that the user selects text from and then based on that text selection code will execute. I now need to set up a if statement that will if the user...
  3. Thread: SaveAs For C#

    by jo15765
    Replies
    1
    Views
    1,016

    Re: SaveAs For C#

    Well I answered my own question after HOURS of googling --- thanks to all who viewed my beginner question

    Here is the solution I used...


    Excel.Application myApp;
    Excel.Workbook myWorkBk;...
  4. Thread: SaveAs For C#

    by jo15765
    Replies
    1
    Views
    1,016

    C# to Create Excel Workbook

    In C# how would I add an Excel Workbook, and explicitly name the worksheet that is added to the workbook?
  5. Replies
    1
    Views
    777

    Help writing java code

    I have this code thus far:



    public class Date
    {
    int month;
    int day;
    int year;
  6. Thread: Mail Merge

    by jo15765
    Replies
    0
    Views
    556

    Mail Merge

    I have an access query set up to run a mail merge on a word doc. When the word doc opens it asks for the Employee ID that I want to run the merge on. Which word doc that I open is dependent upon...
  7. Replies
    1
    Views
    702

    [RESOLVED] Code to Open A Excel Workbook

    I may not be able to do this in C#, but I am wanting to write code (similar to a bat file maybe) that would open a specific excel workbook, and then I will code in Excel to run a macro on open. Can...
  8. Replies
    14
    Views
    1,695

    Re: Specify to open Access 2000

    When I look at my solution explorer in Visual Studio, and I see Access, and when I double click on that it brings up a new window of the object browser. From there, it displays an endless number of...
  9. Replies
    14
    Views
    1,695

    Re: Specify to open Access 2000

    DataMiser how would I check my reference?
  10. Replies
    14
    Views
    1,695

    Re: Specify to open Access 2000

    Tellon --- If I go to start---> Run and type access I get an error that Windows can not find 'access' make sure you type the name correctly and then try again.
  11. Replies
    14
    Views
    1,695

    Re: Specify to open Access 2000

    But I actually want it to open access. I just need it to open Access 2000 as opposed to 2007. Is there a command in C# where you can specify to open Access.Access2000 or something like that?
  12. Replies
    14
    Views
    1,695

    Re: Specify to open Access 2000

    This is the onclick event of a button that I have on my form that opens the access database:


    app = new Access.ApplicationClass();
    app.Visible = true;
    ...
  13. Replies
    14
    Views
    1,695

    Re: Specify to open Access 2000

    I am not sure how to answer this question. I am opening an access database, and pulling in data from a query in that database. So I guess I am opening an instance of Access as well as connecting to...
  14. Replies
    14
    Views
    1,695

    Specify to open Access 2000

    I am working on a computer that has Access2000 and Access20007 installed on it. I am using a form, and the background code was written in C#.....when I press one of the buttons on the form, it opens...
  15. Replies
    0
    Views
    529

    C# Compile Error Help

    I am having numerous compile errors with a project that someone else began building and I "inherited" and I am stuck!!! And again I am at the mercy of the oh so gracious and knowledgeable C#...
  16. Re: Hiding/Unhiding txt boxes on a form

    Of course, something so simple. Thanks!
  17. Re: Hiding/Unhiding txt boxes on a form

    Great, now my next ? is. I have a Create button on the form, that runs some code, and in will display the results. If once the results are displayed, I decide to change from Test1 to Test2, how can...
  18. [RESOLVED] Hiding/Unhiding txt boxes on a form

    I have a combo box on my form, that has 2 options to select from. When my form loads, under the form_Load() Event I have numerous text boxes set to ...Visible = False; Depending upon what selection...
  19. Replies
    12
    Views
    1,350

    Re: Help with Debugging C# Project

    Alrite, so I fixed all compile and debug errors, but now I have a few other ?'s.

    For those of you who have looked at the project.....
    Since uploading I added a combo box on the form with 3...
  20. Replies
    12
    Views
    1,350

    Re: Help with Debugging C# Project

    Arjay thanks for the definitions of Debugging and Compiling, I honestly thought that any issue preventing your program from running was a debugging issue! Show's my newbieness.
  21. Replies
    12
    Views
    1,350

    Re: Help with Debugging C# Project

    Oh okay, thanks for the clarification. These were minor issues, but I didn't even think of just pasting in what the debug issues were.
  22. Replies
    12
    Views
    1,350

    Re: Help with Debugging C# Project

    Oh I didn't even know you could do the "Exclude from Project"

    That's great to know, because I was wanting to somehow add in about 4 - 5 different "Main" (basically copy all of my files from...
  23. Replies
    12
    Views
    1,350

    Re: Help with Debugging C# Project

    That must be what the issue is then, because I did not do that in my project. I will add those features in, and report back once I get home from work, and have had a chance to add those elements.
    ...
  24. Replies
    12
    Views
    1,350

    Re: Help with Debugging C# Project

    So if I understand the link correctly, I need to use this syntax:



    class Base
    {
    // in my base class use this
    protected virtual string GetMood() {...}
    }
  25. Replies
    12
    Views
    1,350

    Help with Debugging C# Project

    I am working on a project, and I thought I had it set up properly, but it is throwing a couple of debug errors, and I am not sure what to do to fix them, so I am reaching out for some assistance...
Results 1 to 25 of 44
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured