Search results for query: *

  1. D

    Question Reportviewer control - Export to PDF - default filename

    Hi. When a user goes to export out a PDF report of mine using the built-in Export icon in the Reportviewer toolbar.... is it possible to set a default filename? Regards Matt
  2. D

    Mouse Click in another application - WinAPI calls

    Hi, Lets say I have an application running called 'Test App', and in another application that's running I want it to perform a mouse click in 'Test App' at specific co-ordinates. How do I go about doing this please, and can you provide full code. I've googled a bit, and can see it has something...
  3. D

    DataGridview with the Validating method being circumvented by Tab keypress

    Hi Guys, Am having a problem with the Datagridview control and the validation process. As an example, try this : Have a small form, with DataGridview control with 2 columns added. In the first column(txtCol1 in code below) I want to only to be able to accept numbers. So in the Validating...
  4. D

    Question DataGridview preventing top row being selected.

    Hi. Just started toying with the DataGridview, and realising what a complex control it can be. I've got a DGV that has a total row at the very top that totals up figures beneath it. All that works fine. This row is shaded a different colour and is read only. What I want to do is prevent that...
  5. D

    Question Using a List of Custom Class as Datasource for Datagridview

    Hi. Ok, I must be missing something really simple here. I have a form with just a Datagridview on it Why doesn't this work? Imports System.IO Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles Me.Load Dim filelist As New List(Of MyFileInfo)...
  6. D

    Question WebBrowser Control Pointing to Folder

    Hi. I have a Windows From that has a WebBrowser control on it. Instead of using this to display HTML webpages, I have pointed it to a backend folder that sits on a SharePoint site so it lists all of the files in that folder....so good so far. The nice thing about this control is that as...
  7. D

    Question Datagridview Refreshes

    Hi all, Newbie to the forum, so this is my first post! I'm relatively new to VB.Net, and have a question regarding the DataGridView control. I have a Form with a DataGridView, which is bound to an underlying table using a BindingSource etc which is working fine. The App itself is a...
Back
Top