Search results for query: *

  1. H

    List read out informatie

    I have made a list, and i maneged to get the info in to the list. List class Public Class BSartikelList Public Property Artikel As String Public Property Artikelnaam As String Public Property Artikelbsnr As String Public Property Eenheid As String Public Property Inhoud As...
  2. H

    Use included image file in solution

    Well one thing i know already, is dat i need to get the String of the image in my.resources. Can you tell me how to get that string?
  3. H

    Use included image file in solution

    What do you mean by that? the full code of the sub is. Public Sub InsertPicture() With xlWorkSheet1.PageSetup.RightHeaderPicture .Filename = My.Resources.Vermaat_logo_web.ToString .Height = 50 .Width = 75 .ColorType =...
  4. H

    Use included image file in solution

    i know that, and the error is "Identifier expected", but i don't how i can fix the error.
  5. H

    Use included image file in solution

    With xlWorkSheet1.PageSetup.RightHeaderPicture .Filename = My.Resources.Vermaat_logo_web Error 4 Identifier expected. C:\Users\hcontent\Documents\Visual Studio 2010\Projects\Vermaat Logistiek\Vermaat Logistiek\RapportModule.vb 424 54 Vermaat Logistiek can you...
  6. H

    Use included image file in solution

    I have included a file in my project solution. Now i want to use in my code. What's is the code to call the image file. rather then specifying a location on my computer?
  7. H

    How to call the console in a windows forms application

    i want to use it as a debug screen to do a read out of settings in the application. Because their are many options to controle, when i can open the console i read them out and easily find out the problem.
  8. H

    How to call the console in a windows forms application

    Can any tell me how to get the console to work. When console.read is being run nothing happens. Console.WriteLine(SL) Console.Read()
  9. H

    Installation problems

    the application is a deployment and it wants to get download from the original computer where i build it form. Can publish an self containing installation file that does not want to download any think.
  10. H

    Installation problems

    After publishing a new version i got the following error code. Does anyone know what i have to do to get it fixt? And can i deactivate the remote server in my application? PLATFORM VERSION INFO Windows : 6.1.7601.65536 (Win32NT) Common Language Runtime : 4.0.30319.18408...
  11. H

    Class building

    oke, but when i want to make a sub level of settings myVermaatApplicationUser.settings.Logistics where logistics a boolean is?
  12. H

    Class building

    I have created a class and now i want to add a extra level. Variables 1 until 4 i have created. But in one variable i want to make sub variables how can i program that? Public Class VermaatApplicationUser Private _name As String Private _UserID As Integer Private...
  13. H

    Listview not all the rows are filled

    I finished my application and loaded the data in the database and now when sending a request the data loads in to a listview. But when it shows not all the rows are filled correct and you see empty rows in the list view. It looks like uncoupling of the rows Private Sub...
  14. H

    Bring to the front

    this is what i use in the loginform Private Sub LoginForm1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.BringToFront() frmMain.SendToBack() Me.UsernameTextBox.Focus() End Sub
  15. H

    Bring to the front

    I'm loading a form Frmmain and when it is loaded, i load the loginform. But when i do that, the loginform goes to the back. and i can't get in front, so the user knows he has to logon first. Before he can really use the application.
  16. H

    Creating A project connection

    Thank you... That is working fine. But i have a question, i loaded the data from the database in a adapter en loaded that in to a datagridview. Because my database gives an empty row at the bottom that goes in to the adapter en show in the datagridview. How can i avoid showing the NULL row...
  17. H

    Creating A project connection

    Thank you!! When i am correct you start each form with the opening of the database connection and then retrieve the informatie form the database!
  18. H

    Creating A project connection

    I am starting to build a forms application. And i want to open a database connection at Startup of the application. Now is my question hou can i set up a connection that runs thrue out the whole program. rather then opening a connection in each form.
Back
Top