Search results for query: *

  • Users: 1kat
  • Order by date
  1. 1

    Printing a form panel

    Sorry, I didn't paste the code correctly. Not sure how to paste it so it looks like code. <System.Runtime.InteropServices.DllImport("gdi32.dll")> _ Public Shared Function BitBlt(ByVal hdcDest As IntPtr, ByVal nXDest As Integer, ByVal nYDest As Integer, ByVal nWidth As Integer, ByVal nHeight...
  2. 1

    Printing a form panel

    Hello, I came across this code online that helped me with printing a panel in my winform. <System.Runtime.InteropServices.DllImport("gdi32.dll")> _ Public Shared Function BitBlt(ByVal hdcDest As IntPtr, ByVal nXDest As Integer, ByVal nYDest As Integer, ByVal nWidth As Integer, ByVal...
  3. 1

    Appending to text file on server

    Thanks jmcilhinney, I would have wasted more time looking for a way to do that. I did however find a workaround that accomplished my goal since downloading the file to make the changes and then uploading it wouldn't have worked in my situation. You have to know PHP for the workaround and it...
  4. 1

    Appending to text file on server

    Is it possible to append text to a text file located on a webserver from a winform? If so, can you please point me in the right direction. I've searched this forum but can only find documentation on appending a local text file.
  5. 1

    Question Creating a simple rdlc report (without a database)

    Hello everyone, I have tried searching this forum, and everywhere else, before posting this and have not been able to find an answer. I would like to create a simple rdlc report that displays some static text. That's it. Well, my final project will be a bit more complex but I need to start...
Back
Top