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

Search:

Type: Posts; User: xucaen

Page 1 of 7 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    4
    Views
    14,821

    Re: OnClick and HREF

    Hi, thank you for your reply. I am sorry about the way I posted my question. :blush:

    I changed my code and put the function call inside the href but when I click the link nothing seems to happen....
  2. Replies
    4
    Views
    14,821

    OnClick and HREF

    Hi, I am searching for an answer to a similar problem to Javascript not Working Correctly with OnClick and HREF. I have very simple javascript code but the onclick function is never called.


    In...
  3. Replies
    0
    Views
    784

    Macros in Visual Studio

    Hi, I didn't see a macros forum, so I'm not sure where to post this.

    I want to write a macro to manipulate the Debug Exceptions dialog in Visual Studio 2005.

    I can do...
  4. Thread: tabbed mdi?

    by xucaen
    Replies
    3
    Views
    1,341

    Re: tabbed mdi?

    I recently received a question regarding this thread. I've created a test rpoject that creates one parent Form, then attaches two MDI child forms. One of the child Forms has two tabs on it.

    Jim
  5. Replies
    0
    Views
    653

    databinding 2 rows together

    I have a scenario where I have 2 rows of the same datatable that I need to keep in sync. The first row has all columns databound to various controls. I do not want to create events for every control....
  6. Replies
    1
    Views
    3,950

    Bringing a tabpage to the front?

    Hi all, I have a tab control where all the tabs are created dynamically at run time. this works great, however when a new tabpage is created and added to the tab control i need to make the new...
  7. Thread: tables

    by xucaen
    Replies
    5
    Views
    869

    Hi, I can't locate the DateSource property of...

    Hi, I can't locate the DateSource property of the ListView. Do you know how to bind a DataSet to a ListView?

    thanks!!!

    Jim
  8. welp, *sigh* unfortunately I have no control over...

    welp, *sigh* unfortunately I have no control over the design. I agree with you that there is an inherent design flaw because we are not using the new model. Luckily this is only a demo and we will...
  9. Hi, I added the sealed keyword to my base class...

    Hi, I added the sealed keyword to my base class method definition and I get this compile error:

    "cannot be sealed because it is not an override"

    I can not add the override keyword because this...
  10. Hi Andy. I am using the private keyword. The base...

    Hi Andy. I am using the private keyword. The base class method is called first, then the derived class method. I need to stop program flow from going to the derived class method without getting build...
  11. stoping derived class methods from being called?

    Hi all, I have a situation where I want to add a method to a base class and make sure that no derived class can override it. Easier said than done! The problem is that we have a few hundred classes...
  12. Thread: SendMessage?

    by xucaen
    Replies
    2
    Views
    649

    SendMessage?

    Hi all, what is the C# equivilent of SendMessage?

    right now I am doing it wrong like this:


    private void Form1_Load(object sender, System.EventArgs e)
    {
    ...
  13. Replies
    1
    Views
    1,478

    Visual Studio Confirm

    How do I turn on confirmation for when I close Visual Studio?

    How do I turn on confirmation for when I save files? Save all assumes that unchanged files are being saved. This changes the time...
  14. Replies
    2
    Views
    1,073

    Yup, got that, but it's placement is not where it...

    Yup, got that, but it's placement is not where it should be. Right click puts the context menu at the mouse cursor, but the left click calling the show() method of the context menu places the context...
  15. Replies
    2
    Views
    1,073

    Left click Context menu?

    Hi all, how can I make a context menu appear on a left click? I must be doing it wrong because when I make it appear on a left click it is not lined up properly.

    thanks!

    Jim
  16. Thread: Convince me :P

    by xucaen
    Replies
    18
    Views
    2,493

    Oh, I am already giving it a try! :D My company...

    Oh, I am already giving it a try! :D
    My company is building a new client application all in C# and we plan to implement the auto update feature. Much cheaper than setting up all the Java servers we...
  17. Hi Poochi, I did try your idea. Two of my table...

    Hi Poochi, I did try your idea. Two of my table names are "Program" and "Vfile". Here's how I changed my code:



    string Output = "E:\\Test\\VFileDatabase.mdb";
    string...
  18. Thread: Convince me :P

    by xucaen
    Replies
    18
    Views
    2,493

    I'm confused.. what could I possible want to do...

    I'm confused.. what could I possible want to do in C# that I would need to subclass??

    In my opinion, if I were going to do real system level programming I would not use C#.

    Jim
  19. How to load multiple tables

    Here I am with today's lesson. :)
    Today I figured out how to load multiple tables from an .mdb file into a DataSet. First, I have my table names listed in a multidimensional jaged string array. I...
  20. Thread: two Main()

    by xucaen
    Replies
    19
    Views
    2,511

    did you download the project I attached for you?...

    did you download the project I attached for you? I got both projects to work there.

    Jim
  21. Thread: two Main()

    by xucaen
    Replies
    19
    Views
    2,511

    then the only way to do it is to comment out one...

    then the only way to do it is to comment out one of the Main methods so that the other can run. The language simply does not allow two main methods and there's nothing you can do to change that.
    ...
  22. Slowly but surley I am becoming DB literate

    Thanks to giladasaf's post located at http://www.codeguru.com/forum/showthread.php?threadid=244074&highlight=OleDbConnection I think I am getting closer to some answers.

    my code now looks like...
  23. This doesn't seem to work for doing inserts and...

    This doesn't seem to work for doing inserts and updates. What else should I be using? I've tried using Datasets and Datatables but can't figure out how to connect them to the OleDbConnection or to...
  24. Thread: two Main()

    by xucaen
    Replies
    19
    Views
    2,511

    I think you want to have three projects, one...

    I think you want to have three projects, one containing the CsDateConstructors class, another project containing the CsDateInheritance class and a third containing the Date classes. Then to run one...
  25. Replies
    0
    Views
    650

    Can we delete this post?

    I am following up in a different thread:

    http://www.codeguru.com/forum/showthread.php?threadid=268548
Results 1 to 25 of 170
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured