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

Search:

Type: Posts; User: dizuane

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    551

    Database Programming

    I have an Access Database with 2 different tables in it. Table1 lists different skills that a character class can have. Table2 has a place for the skill, and then 3 yes/no fields. What I need to do...
  2. Replies
    0
    Views
    758

    Access Tables..

    I have an Access Database with 2 different tables in it. Table1 lists different skills that a character class can have. Table2 has a place for the skill, and then 3 yes/no fields. What I need to do...
  3. Replies
    2
    Views
    1,915

    ContextMenuStrip

    Alright.. so I'm having a problem with positioning a context menu strip. Here's the code I'm using:


    private void btnRoll1_Click(object sender, EventArgs e)
    {
    if...
  4. Replies
    4
    Views
    1,091

    Re: Not Calling Correctly

    Alright.. well as far as buttonToMenu variable is concerned, is there a way to constantly pass it? For example.. I've got 6 different buttons that all call the conextMenuStrip when clicked. Is there...
  5. Replies
    4
    Views
    1,091

    Re: Not Calling Correctly

    I see.. so how do I call my already created frmMain?

    And thanks.. I'll try to work through that..
  6. Replies
    4
    Views
    1,091

    Not Calling Correctly

    I have the code laid out, but can't seem to find my error. I have all the buttons, text boxes, etc. set to public on a Form (frmMain) and am trying to call them from a class (Assign.cs). I get no...
  7. Replies
    0
    Views
    913

    Force Deletion (Access Table)

    I'm trying to force a table to be deleted. In this case, a table is linked to another and thus when I try to DROP the table, an exception is thrown (oledbexception) and the table isn't dropped. How...
  8. Replies
    3
    Views
    875

    Re: Windows Forms - Saving Images..

    Doesn't work.
  9. Replies
    3
    Views
    875

    Windows Forms - Saving Images..

    Hi.. I'm working with databases, Access databases to be exact, and I have a database in which there is an OLE Object type to store pictures. I have no problem retrieving these pictures and showing...
  10. Testing to see if a Method was Successful...

    Ok.. I'm back again. I can't figure out, or find info, on how to test if a method was successful in execution. I'm using a DataAdapter.Update method and I want to know if it was successfully added to...
  11. Replies
    1
    Views
    794

    More fun with Databases...

    Ok, so I'm using the Northwind Database (an example that comes with Microsoft Access, or you can download it from Microsoft) and creating a "front end" for it as kind of an experimental project to...
  12. Thread: DataGrid

    by dizuane
    Replies
    3
    Views
    1,223

    Re: DataGrid

    What do you mean you "mapped" the CellClick event? I have 2 DataGridViewLinkColumns, unbound. One is to "edit record" one is to "delete record." How do I differentiate on which is clicked? I've...
  13. Thread: DataGrid

    by dizuane
    Replies
    3
    Views
    1,223

    DataGrid

    Hi.. currently I'm working on a project accessing an access database and populating a gridview with the information. All that's fine and dandy, but I've added a DataGridViewLinkColumn Column and I...
  14. Replies
    21
    Views
    2,512

    Re: While loop crash

    Yah just caught that. :blush:
  15. Thread: C# method

    by dizuane
    Replies
    10
    Views
    1,332

    Re: C# method

    Actually the O'Reilly books are solid. It's the "Pro" books (from Apress) that you need to be weary of as a beginner. Also - get a few books (or even e-Books of actual textbooks, most big publishers...
  16. Replies
    21
    Views
    2,512

    Re: While loop crash

    Try:


    #include <iostream>
    using namespace std;

    void main ()
    {
    int num1 = 0,
    num2 = 0,
  17. Re: Parameter Arrays and a few other questions...

    An overloaded method? Can you give an example?
  18. Parameter Arrays and a few other questions...

    Hey.. first post here, but I've been reading a lot and I'm not quite grasping the use of parameter arrays. I mean I understand the core concept, being able to pass an unknown amount of parameters but...
Results 1 to 18 of 18





Click Here to Expand Forum to Full Width

Featured