Search results for query: *

  1. A

    Question how to disable column tab in datagridview

    a very annoying problem when working with datagridview is accidently pressing the column tab which changes the order of the data in the grid. i would very much like to to disable that feature or at least override it with my own sort method. i have tried the following with no effect: foreach...
  2. A

    Question bring form to front

    in a c# windows form project i have created and showed a new form within the main form load the problem is nothing is working to bring it to the front and since its a setting dialog for new users and required for the program to run i need the 2nd form to show on top of the main form all of these...
  3. A

    Question packaging up a completed project

    im just about finished with a project that I have been working on for a while. and I have a few questions. 1. how to create and install file or package the exe for distribution 2. how to include data files into the project as of now i just place then in the open source folder
  4. A

    Answered read only folder

    im having some problems when accessing a folder that spontaneously switches to read only after each time i change the properties of the folder by hand. this is throwing an exception each time i try to change the contents of the folder in my code. i have tried to search google and all the code i...
  5. A

    Resolved on key press

    i have written a app to run along side a game. and as of now i need to use the windows button to remove focus from the game to add focus to the app to press a button. i would like to wire a key that i can press without having to removed focus from the game. see this demo: please dont direct me...
  6. A

    button event handler

    I have created a dynamic button and a general event handler in a sperate class that catches the click event public static void buttonClick(object sender, EventArgs e) However in this handler I am unable to do things like change the button text and image although the debugger hits the lines...
Back
Top Bottom