Search results for query: *

  • Users: klanda20
  • Content: Threads
  • Order by date
  1. K

    IIS not running ASP.NET 1.1

    The title pretty much says it all. I'm trying to create a web application and I just installed IIS, but I guess its not running ASP.NET 1.1. Any suggestions??? Thanks, Kyle
  2. K

    mschart? ANd AxMSChart20Lib.AxMSChart

    My professor sent me a simple chart program he made and I can't run it. This line is giving me problems.... Me.chtsales = New AxMSChart20Lib.AxMSChart The Errors are .... C:\Documents and Settings\Kyle\Desktop\VB Projects\Chart\Form1.vb(33): Type 'AxMSChart20Lib.AxMSChart' is not defined...
  3. K

    Calling a function

    Hi all, I have an array of labels that are being populated with text from a database. While these are being populated I would like to be able to somehow give them the ability to call a function when they are click on in the form. My Code: Private Sub myForm_Load(ByVal sender As...
  4. K

    Can't connect to datasource

    Can't connect to my datasource not sure why. Private Sub myForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim Connection As New System.Data.OleDb.OleDbConnection Dim SQL As String Dim count As Integer count = 0 Dim message As MessageBox Dim downer As...
  5. K

    2 connections in 1 function?

    I'm trying to connect to the same database twice in the same function My Code: Dim Connection As New System.Data.OleDb.OleDbConnection Dim SQL As String Dim count As Integer count = 0 Dim message As MessageBox ' TODO: Modify the connection string and include any ' additional required...
  6. K

    Dynamic Picturebox help

    Hi All, I have an application that reads in pictures from a database. THe problem is there is not a set number of pictures that are gunna be read into the form. Therefore I need to somehow read in X number of pictures at one time. So I can't just have a static number of pictureboxs on the...
  7. K

    Connection Problem

    I'm trying to use Access as the back-end and I can't even connect to it. For some reason in my Visual Studio when I look for providers it is defaulted at Microsoft OLE DB Provider for SQL Server and I'm trying to use Jet. My code: Private Sub myForm_Load(ByVal sender As System.Object...
  8. K

    Parsing problem

    Hi All, I have a openfiledialog box that puts a user selected file path into a textbox. I would also like to parse this data to remove the path and simply have the name of the file in another text box. Thanks
Back
Top