Search results for query: *

  1. T

    Question Menustrip disapers when form is resized

    here is the complete file, added .txt so I could attach it
  2. T

    Question Menustrip disapers when form is resized

    Is it this you mean? // // menuStrip1 // menuStrip1.Items.AddRange(new ToolStripItem[] { fileToolStripMenuItem, adminToolStripMenuItem, languageIdiomaToolStripMenuItem, helpToolStripMenuItem }); menuStrip1.Location = new Point(0, 0)...
  3. T

    Question Menustrip disapers when form is resized

    MinimumSize is 0,0
  4. T

    Question Menustrip disapers when form is resized

    Hi, I have a menuStrip1 that is has setting DOCK =TOP. The Form has MainMenuStrip set to this menuStrip1. When the form is resized (read smaller) the menu disappears together with the top content of the form. I have tried this setting with no result, it still disapers: menuStrip1.AutoSize =...
  5. T

    Set order of prerequisites installation

    The problem is if you run the Access 2016 database engine standalone it will install VCredist 14 as part of its installation, but if you include it as a prerequisite it will throw an error message box when it starts installing but will continue to install after you press OK
  6. T

    Set order of prerequisites installation

    Tried this, does not work unfortionally, it resets when building the setup
  7. T

    Set order of prerequisites installation

    How can I change the order of the prerequisites in a setup project? Access 2016 seems to need VC Redist 14 but the Setup tries to install Access first. How can I change the order of the prerequisites so it install VCredist flrst?
  8. T

    Resolved Setup project missing Access Database Engine

    Resolved: There was an extra TAB in the beginning of one Product.XML
  9. T

    Resolved Setup project missing Access Database Engine

    When doing the setup project for my application it cant detect MS Access database Engine. When I tri to manually set it as an prerequisite it won't show up in the list. So I followed this guide: ClickOnce Bootstrapper Packages for access database engine 2016/2010 for Visual Studio 2019/ 2017 -...
  10. T

    View PDF in Winform application?

    I ended up showing it in the deafault browser
  11. T

    View PDF in Winform application?

    Its proberbly the best way but I am displaying all other files in the application so it would have been nice .
  12. T

    View PDF in Winform application?

    What is the best way to view a PDF within the Winform application?
  13. T

    Add row to dataGridView

    Thanks remove static did the trick.
  14. T

    Add row to dataGridView

    There is only one form = Form1 The DataGridView component named InfoGrid is placed in that form InForm1.Designer.cs this is how it looks: partial class Form1 { /// <summary> /// Required designer variable. /// </summary> private...
  15. T

    Add row to dataGridView

    Have a dataGridView (without a datasource) with four columns. When I try to programmaticly add a new row I get this error in Visual Studio: CS0120: An object reference is required for the non-static field, method or property 'Form1.dataGridView1' and it wont compile. I have done exactly the...
  16. T

    How do I add one attached property?

    Hi all In the middle of a C# windows form project and need to add DataGridExtensions ( GitHub - dotnet/DataGridExtensions: Modular extensions for the WPF DataGrid control ) to my datagrid. I have installed the extension. To enable filtering in the DataGrid you should only, and I quote: How and...
Back
Top Bottom