Search results for query: *

  • Users: Streen
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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