Search results for query: *

  1. M

    MySQL & VB.NET Newbie :)

    Hi Guys, I have sucessfully linked VS.NET to MySql using the MySQL ODBC driver, but what i am having trouble with is actually displaying the table information in a textbox. Any help to kick start me will be great. Cheers Mattcya
  2. M

    Show Information in a label

    So i add a refernce to excel and then connect using a odbc. soryy but would you be able to give me an example Much appreciated :)
  3. M

    Show Information in a label

    Hi Guys, Just want to know how to display a spreadsheet column from excel into a label field. Here is my code i am new to vb.net so be nice ;) 'Displays Spreadsheet information in label fields Dim Xl = CreateObject("Excel.Application") Dim XLB As Object Dim XlS As Excel.Worksheet XLB =...
  4. M

    reading from excel sheet

    Putting spreadsheet column info into a label The code you put down works beautifually but what would i have to do to put each column field into a label box e.g: Label1 = Firstname info, label 2 =lastname info??? Cheers, Mattcya
  5. M

    Viewing Spreadsheet data in VB.net form label

    Hi Guys, Just wondering how to view information of an excel spreadsheet. What i want to be able to do is have a label show the information from each column e.g: Label1 = Firstname, Label2 = Lastname and so on Hopefully you can help Cheers, Mattcya
  6. M

    default webbrowser

    Great Thanks for that it works like a charm. :) You guys!! "Like i have said in prior threads" Are Champions! Cheers
  7. M

    default webbrowser

    Sorry that code again hehehe :) Private Sub BtnSearch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) 'Opens a Web Browser to the following Link System.Diagnostics.Process.Start("Iexplore"...
  8. M

    default webbrowser

    I am having a similar problem but the difference is it seems not to load the web page when i click the button. Here is my code i might be missing something...... Cheers Mattcya :) 'Opens a Web Browser to the following Link System.Diagnostics.Process.Start("Iexplore"...
  9. M

    Collections

    Hi I am trying to addd five employee objects to a myEmployee collection that are listed in the Employee object table but i am having trouble on how i would do this. I am having trouble telling vb.net to reference to the employee object Hope i can get help Thanks guys & Gals Here is my...
  10. M

    Finding MdiParent property

    Hi, You can tell when the your form is an MDI is when the first form is highlighted as grey. Then what you can do is add the code to open another form in the MDI window. For Example.... Dim listWindow As New frmList() Dim cnt As Integer listWindow.MdiParent = Me listWindow.Show()
  11. M

    Does this code look Cool

    Thanks your a legend :)
  12. M

    Does this code look Cool

    Hi Guys, Does this code look cool, because i am getting frustrated with Visual studio 2002 architect edition telling me it hates it. Just wanted to double check. Cheers Mattcya PrivateSub mnuQuit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuQuit.Click If...
  13. M

    Newbie studying MCSD.NET

    here is the code to the employee class if it helps ;) thatnks i might have to post you a beer hehehe. Public Class Employee Private Shared mCounter As Integer Protected mintID As Integer Private mstrName As String Private mdblSalary As Double Public Sub New(ByVal name As String, ByVal...
  14. M

    Newbie studying MCSD.NET

    ok i see, but can you explain a little more detail regarding _strLanguage = ProgrammingLanguage does this mean say for example mintid = ??
  15. M

    Newbie studying MCSD.NET

    Cool it is sort of making sense to me. What i need to do is create a constructor and add a value of 1000 to an integer variable called mintid Any suggestions Cheers Matt
  16. M

    Newbie studying MCSD.NET

    Hi All, I am new and studying my MCSD.NET i am currently trying to create a constructor in a class that inherits from the base class, that refers to a constructor in the base class I know that you use the mybase keyword to create the constructor but i am getting stuck with the code...
Back
Top