Search results for query: *

  1. S

    Question After Splash-screen shows, Main form is in the back

    Not sure if this helps, but I actually just found out that if I click on the given splashscreen while it is there, this behavior does not happen.
  2. S

    Question After Splash-screen shows, Main form is in the back

    I set it up a while ago, so I am not 100% sure what steps I took, but I used the project menu to add a splash screen to the application, I made some esthetical changes to it. In the project properties, at the bottom, i set the splash screen to "SplashScreen1" (yeah, i did not even change the...
  3. S

    Question After Splash-screen shows, Main form is in the back

    I am having the following problem: I have a splash screen, the default from Visual studio. It loads up, is shown for a few seconds, then, when it disappears, the main form is loaded. Now here is the problem: the main form appears in the back, behind the windows explorer window I load the...
  4. S

    .Net Framework 3.5 for users?

    I wrote an application and would like to give it to a user, but because I used the .NET 3.5 framework to write it, the user needs it as well to run the application. I was expecting that the user does not need to install the entire .Net Framework 3.5 developpment kit, but I am somewhat unable to...
  5. S

    how to copy/paste from Excell into Datagrid

    I have a datagrid that will be filled with a whole bunch of numbers that the user has stored in other files, mostly excell files. I would like to be able to select a number of cells in my excell file, then move to my datagrid and paste the values into the cells there at runtime. Is there an...
  6. S

    Question cutting off digits and rounding up/down

    Thanks. This helps a lot.
  7. S

    Question cutting off digits and rounding up/down

    I need a function that takes a decimal, with a certain number of digits behiond the comma and convert it to a string with a different number of n digits behind the comma. (to display it) My problem is the rounding ip/down. like 123,789 with n = 2 --> 123,79 or 123,4 with n = 0 --> 123 or...
  8. S

    assembly troubles with release

    Can I maybe solve this issue by using .net 4.0? Would there be any downsides to using .net 4.0?
  9. S

    assembly troubles with release

    I am using that one indeed, and I have found that solution beforeas well, and tried it, followed the steps, but it does not help me. How should I be drawing graphs if I do not want such hassle?
  10. S

    assembly troubles with release

    I have written an application and I am almost finished. Now I want to test it on other machines, and thats where things go south. Preferably I would like to just provide an .exe and whatever else is needed to run the application, but apparently that is not an option. The appropriate .Net needs...
  11. S

    Discovering which item is clicked in a dynamic context menu?

    indeed :) e.ClickedItem quite simple once you know where to look. Thanks
  12. S

    Discovering which item is clicked in a dynamic context menu?

    I have a DataGrid and I want each of its cells to display its own customized ContextMenuStrip. So I have a handler that listens to clicks on the datagrid. It opens an existing ContextMenuStrip, clears it and fills it with strings using Me.ContextMenuStrip1.Items.Add(fileName) So far so good...
  13. S

    VB Forms, is MDI what I need?

    For some reason, it was intuitive to me to use forms. I have now looked further into usercontrols and I am already getting rid of most of my previous troubles. Thanks for the advice, helped me greatly
  14. S

    VB Forms, is MDI what I need?

    Thanks for the answer. I am going with forms inside panels now. MDI was a stupid idea. Is there actually an advantage to use controls inside panels as opposed to using forms inside panels?
  15. S

    VB Forms, is MDI what I need?

    Is my question that wierd that noone can answer it? :(
  16. S

    VB Forms, is MDI what I need?

    I would like some advice on the use of VB Forms. I have to write an application that consists of mainly one main form, but several different things I wanna display. Pretty standard I guess. So there is a menu, some controls, and the main stuff below (ranging form graphs, tables, dropdown boxes...
Back
Top