Search results for query: *

  1. tschoepi

    Resolved Drag&Drop

    Hi JuggaloBrotha, in the event DragDrop you can check with e.Data.GetDataPresent("FileName") if there is a file dropped onto your form. With e.Data.GetData("FileName") you then can get the filename(s). Hope, this will help Markus
  2. tschoepi

    Drop Down List / Drop Up List?

    Hi Ross, I think you have to create a custom control for this. Place a textbox and a button with a dropdown icon on a user control so that it looks like a combobox. If the button is clicked, display a listbox above the textbox. You have to resize the control depending on the size of the listbox...
  3. tschoepi

    Question Creating an Excel Chart

    Hi posix32, maybe this example How to create a Chart in Excel 2007 in VB.NET may help you. Markus
  4. tschoepi

    3rd Party DataGrid(View) control

    Hi PhilD, have a look at ComponentOne FlexGrid control. You can set options how to deal with DbNull values and you can set any control you like as editor of any column. DataBinding is very fast, too. And you have a lot of possibilities to change, how the control should look like. Hope, this...
  5. tschoepi

    Question Extended shortcuts on usercontrol

    If I use events like KeyDown in my UserControl they only will fire, if the control has the focus. But the Shortcuts should work, no matter which control the focus is on. We could implement this by setting KeyPreview of the form to true and than put the code in the KeyDown event of the form. But...
  6. tschoepi

    Question Extended shortcuts on usercontrol

    Hi everyone, I'm new to this forum. So, if this question already has been discussed, please give me a hint, where I could find the solution. By the way, I didn't find it by searching the forum. I'm responsible for a usercontrol (a button). It gives our application a common look and feel and...
Back
Top