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

Search:

Type: Posts; User: JonnyPoet

Page 1 of 5 1 2 3 4

Search: Search took 0.13 seconds.

  1. Re: importing RowName and ColumnName from an excelfile to a datagridview ...

    sorry but no one is interested to download an exe file. If you want help zip the project after removing all data in the bin and obj folder so there is no exe dile included into your project and add...
  2. Re: Left docked (vertical) toolstrip on C# form

    wow, where did he find that old one and brought it up to present time?
    hehe I didn't look at the date, I simple solved it showing the code :D
  3. Re: Left docked (vertical) toolstrip on C# form

    I attached the code into here:ehh:
  4. Re: Left docked (vertical) toolstrip on C# form

    TTake a toolstrip and place it wherever you want it and align it on the left side vertically. Then add some buttons to it
    when thios is done use the codeview of the method InitializeComponents()...
  5. Replies
    1
    Views
    254

    Re: windows application

    As you are a newbie in Cä first I would recommand to read a good bookabout C#
    I'm sure there are lots of them available on the web.

    Learning something like a language starts with knowing about...
  6. Re: Concept of pages system using by UserControl

    Thx !

    I looked to your program and saw yor problem

    ]


    privatevoid typepage_Load(object sender, EventArgs e)
    {
    if (parent != null)
  7. Re: Concept of pages system using by UserControl

    Sorry I didn't get your idea. Maybe zip what you already have and post the zupped code Maybe when I test your code I'll get the idea behind that code.
    Is the maonForm an MDI window? what isthe forms...
  8. Replies
    5
    Views
    599

    Re: Delegates and Event

    namespace WindowsFormsApplication1
    {
    public partial class Form1 : Form
    {
    private BatchInfo info;
    /// <summary>
    /// Constructzor
    /// </summary>
    public...
  9. Replies
    3
    Views
    460

    Re: Enabling / Disabling Menus

    I would hide menue points that are not used in a given form. When some changes occur and the other menueheaders are needed, then I would make them visible. Different buttons in a menue I would...
  10. Replies
    4
    Views
    1,630

    Re: Visual C# simple problem

    Sorry if you only delete the errormessage and recompile you will still get the same erormessage you really need to go to the click event in the design view and there deleting the event delegate so...
  11. Replies
    4
    Views
    1,630

    Re: Visual C# simple problem

    This error is quite clear you unfortunatly created a click event by doing some clicks in the enviroment and when you delete the click events delegate you also need to delete the line where this...
  12. Re: Add controls from one panel to the other

    class AllUsers{ // Ok you are un class AllUsers
    public void AllUsers_Load(object sender, EventArgs e)
    {
    // Here you are creating a totally other class
    // This class has no link...
  13. Replies
    3
    Views
    2,737

    Re: how to open .csv file

    Simple use the Excel classes by adding them to the project. Which one depends on what excel file it should create e.g. Excel 2003 or 2007

    The open command can open the file and then save it as...
  14. Replies
    2
    Views
    587

    Re: Help beginner with a simple code.

    Hi !
    There arer different ways you may get an error when using that code, because in the easiest way it may happen when one of the textboxrd idt empty!!! Or if you have an entry containing an alpha-...
  15. Re: Assign checkBoxes values to clicked radiobutton

    Like already Cimperiali told you there is more to be known about that to help you. For giving you correct advice I wanted to see that codeparts where you are actually working on. But what I got is...
  16. Replies
    5
    Views
    620

    Re: HELP! Question about C#

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Data.OleDb;
    using System.Data;

    namespace Connect2
    {
    class ConnectInfo
  17. Replies
    27
    Views
    2,370

    Re: [RESOLVED] iteration from the database

    Maybe, but I cannoz find even one line of code of what you are describing here
  18. Replies
    27
    Views
    2,370

    Re: [RESOLVED] iteration from the database

    The problem is I cannot find any of the code you have already shown here in previous topics in the code you sended me. Even the names of that forms are not existing maybe thhey all are derived from...
  19. Replies
    27
    Views
    2,370

    Re: [RESOLVED] iteration from the database

    private void solutionPanel_MouseHover(object sender, EventArgs e)
    {
    Intermediate intermediate = new Intermediate();
    DialogResult dialogues =...
  20. Replies
    27
    Views
    2,370

    Re: [RESOLVED] iteration from the database

    click to my name and write me an email. Sendd the file that way
  21. Replies
    27
    Views
    2,370

    Re: [RESOLVED] iteration from the database

    You did an error The zip file only contains the dln file nothing else But you should dsend all teh application including fatabase only not including any file located in the bin or object folder,...
  22. Replies
    27
    Views
    2,370

    Re: [RESOLVED] iteration from the database

    int counter = 0; define this in the header of the class (panel or form)
    // in the event delegate where you want to count do the following
    if(rolePanel.Controls !=null){
    ...
  23. Replies
    27
    Views
    2,370

    Re: [RESOLVED] iteration from the database

    private void linkUser_Click(object sender, EventArgs e)
    {
    if(circumstancePanel.Controls!=null){

    for (int i =...
  24. Replies
    2
    Views
    414

    Re: A window of a folder is open or not

    Sorry firoz, but this is not C# !!

    Saeed:
    Are you trying to catch Folders of the directory and wanting to know if they are visible on the screen ?
    Whats the purpose of that can you tell a bit...
  25. Replies
    27
    Views
    2,370

    Re: [RESOLVED] iteration from the database

    OK As I can see you did not get the idea behind all of that. So I'll explain that to you.
    Each Control may have Properties, methods and and events
    Using the intellisense will show you all of them ...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width