Search results for query: *

  • Users: poets
  • Order by date
  1. P

    How i can determine resolution for my project

    did you mean it as to adjust you application res to users res. ? _____________ You can get the resolution using this function : Public Function ScreenResolution() As String Dim intX As Integer = Screen.PrimaryScreen.Bounds.Width Dim intY As Integer = Screen.PrimaryScreen.Bounds.Height Return...
  2. P

    Printing TextBox - Difference in spaces and tabs

    Nice day to all, does anybody know how to solve my problem ? I try to print the TextBox control using my printiclass which includes this code. Everything seemed to be Ok until I have found there is an difference in gaps shown in textbox and finally seen in print preview...
  3. P

    Open the file on another disk or PC. IIS, ASP

    Hello, please could anybody advise ? I had my local application that saves its files created as pdf into the folder on server. Now I have to make the webbased application that allows some people to view this files through the explorer. I match the problem how to solve this if I do not wish...
  4. P

    Space Length in TextBox

    Hello, does anybody know if it is possible to make the space length of TAB in textbox shorter ? The problem I have that the default is maybe twice longer then the one you have by pressing tab in WinWord. Is it possible to solve this somehow ? Thank you for any info.. .
  5. P

    Print Form - Non Visible Area

    Thanks ! Thanks a lot ! I found what I was looking for. Seems to be working even I have to spend some time to understand this.
  6. P

    Print Form - Non Visible Area

    To be honest my experiences with printing in VB.net are infitesimal. Now I face the fact that I need to print the prepared purchase order form that contains the company logo and some richboxes filled from sql. Unfortunately I did not found better solution then to print the form as I need to...
  7. P

    Print Form - Non Visible Area

    Hello, please help. how should I do if I want to print the winform ? I have found plenty of solutions usualy using PrintScreen method but this does not solve the problem if the form is bigger then the screen. Thanks for any comment :D
  8. P

    Printing Form

    Hello all, I face the problem of printing the form. I have found lots of solutions that print the visible area of form but does anybody know how to print the form if it has some scrollable / not visible area ? tx for any responses
  9. P

    Image in DataGridView

    Good day to all, could you please help ? I am a very noob to DataGridView and can not solve the problem of displaying the image in it. I fill the grid from datatable and based on values in column("File") I want to decide which picture will be displayed in programmatically added...
Back
Top