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

Search:

Type: Posts; User: binayak

Page 1 of 9 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    5
    Views
    2,306

    Re: GDI+ A generic error occurred

    Yes
  2. Replies
    5
    Views
    2,306

    Re: GDI+ A generic error occurred

    I'm getting error on both of these methods from 2 different occassions from 2 different classes.

    g.MeasureString(
    placeholder,
    ...
  3. Replies
    5
    Views
    2,306

    GDI+ A generic error occurred

    Hi,

    In my windows application if I'm getting ExternalException when I use the following to methods if the text parameter is too large.

    g.MeasureString(text, font, size, format);...
  4. Replies
    0
    Views
    2,359

    client callback to update gridview

    Hi,

    In my code I would like to update my gridview with a client callback to the server (update, insert and delete).
    Client callback just returns a string, how would I use that to say insert a...
  5. Replies
    4
    Views
    1,167

    WinForm design question

    Hi,

    I would like to create a winform application using c#, that looks kind of like Adobe Photoshop. That means the main window will have some small dockable windows inside the main window (those...
  6. Replies
    1
    Views
    686

    Re: Dataset.merge() Question

    Well, if I specify the MissingSchemaAction.Add then I can see in the watch window the schema for the table A is changed. BUT, if I use the adapter.update (ds, "datatablename"). the schema change is...
  7. Replies
    1
    Views
    686

    Dataset.merge() Question

    I have a table A in a db which has only one column. I want to merge this table with with table B which has the same column and 3 other columns.
    I want to merge B into A and populate the changes in...
  8. Replies
    7
    Views
    955

    Re: C# & ADO.NET question. Plz Help

    This just shows how to execute the script, but how to create the script from my c# program from the source DB?
  9. Replies
    7
    Views
    955

    Re: C# & ADO.NET question. Plz Help

    Right, because the destination table doesn't exist yet. Can you please tell me what query I can write to create the other db and copy schema all from ado.net code? Remember the dbs are located in...
  10. Replies
    7
    Views
    955

    Re: C# & ADO.NET question. Plz Help

    Can someone help please?????
  11. Replies
    7
    Views
    955

    C# & ADO.NET question. Plz Help

    Hi,

    I have a table in a sql server Db. I want to get the schema info from that table using ADO.NET and create a new table with the same schema (in a different db server, maybe sql/oracle). I don't...
  12. Replies
    0
    Views
    939

    How to copy tables?

    Hi

    I have a basic question. I want to copy a table in a db to another db (in the destination the table has to be created first with proper columns). the table name and schema will remain same....
  13. Replies
    1
    Views
    748

    How to set background color?

    Hi,

    This is a newbie question. How can I set the background color of the web form page from code behind page model?

    I want something like:


    private void Page_Load(object sender,...
  14. Replies
    0
    Views
    694

    ** Problem Updating MS Access DB **

    Hi

    I'm trying to update a MS Access Database from my ASP.NET Application. I keep getting this error:


    Exception Details: System.Data.OleDb.OleDbException: Operation must use an updateable...
  15. Replies
    3
    Views
    881

    Simple C# Interface question:

    In the following example why I can't put the public keywords in the implemented methods in class MyClass?


    interface IFirstInterface
    {
    int myFunctionOne();
    }

    interface...
  16. Replies
    1
    Views
    741

    Drag-drop...How?

    I want to drag and drop files onto my usercontrol. I want to know which eventhandler to write in this case and how to get file info in that handler?

    Help please
  17. Replies
    1
    Views
    2,180

    Re: ShellExecute in C#

    found it
    Process.start
  18. Replies
    1
    Views
    2,180

    ShellExecute in C#

    Is there anything like ShellExecute to launch an application c#?
  19. Replies
    7
    Views
    1,763

    Re: Context Menu (submenu) question

    Thanks dude!
  20. Replies
    7
    Views
    1,763

    Re: Context Menu (submenu) question

    Thanks. Help me out a little more.
    How to find out info about the menuitem that's clicked from the handler/


    private void MenuItem_Click(object sender, EventArgs e)
    {
    // Add code here
    }
    ...
  21. Replies
    7
    Views
    1,763

    Re: Context Menu (submenu) question

    I tried your code but it gives error:

    error CS0117: 'System.Windows.Forms.Menu.MenuItemCollection' does not contain a definition for 'Click'

    for the line


    mnuFile.MenuItems.Click += new...
  22. Replies
    7
    Views
    1,763

    Context Menu (submenu) question

    Hi,

    I am creating a submenu at the runtime and this submenu can have many items (the number is not known at compile time). I want to how to create event handler for these menuitems. Is there a...
  23. Replies
    5
    Views
    802

    Re: Very simple question!

    got it!

    Thanks
  24. Replies
    5
    Views
    802

    Re: Very simple question!

    I did not understant. Maybe if I state my problem it will be a little clearer.

    In the host application I have menus. I want those menus to be handled from the Usercontrol that's included in the...
  25. Replies
    5
    Views
    802

    Very simple question!

    I have an usercontrol with some controls and a hosting windows-form application which includes that usercontrol.
    I know how to handle the events in the usercontrol from the hosting application. I...
Results 1 to 25 of 213
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured