Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MikeParc

  1. MikeParc

    ListView_DoubleClick with problems...

    hi, what can I do about it ?? how can I declare it and instantiate it...? Mike
  2. MikeParc

    ListView_DoubleClick with problems...

    Additional information: Object reference not set to an instance of an object.
  3. MikeParc

    Object reference not set to an instance of an object.

    hi, works almost as I need it....it places the "otherinfo" in the second column, BUT it places it in the next line... this is the whole function I'm using... Dim fle As String Dim filename As String Dim lvi As New ListViewItem() For Each fle In...
  4. MikeParc

    ListView_DoubleClick with problems...

    hi, i get an error with this...is there a mistake in it ? Private Sub lvMedia_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles lvMedia.DoubleClick Dim strFilename As String Dim FileToPlay As String Dim strAppPath As String FileToPlay...
  5. MikeParc

    Object reference not set to an instance of an object.

    well that's not exactly what I meant, I need to know how to display the FileInfo in another Column of the ListView Mike
  6. MikeParc

    Object reference not set to an instance of an object.

    hi, works perfectly...but, how can I display the fileinfo in another column ??? the filenames are all displayed in the first column and I need to display the fileinfo in another one... Mike
  7. MikeParc

    Object reference not set to an instance of an object.

    Hey thanx, that's pretty good...but would be good to know, HOW MANY Files are in that folder (path) because I need to display them in a ListView...and I think that only works with this: for i = 0 To NumberOfFiles ListView1.Items.Add(files(i)) next MIke
  8. MikeParc

    An unhandled exception of type 'System.StackOverflowException'

    It's alright now...I found the error in the second form... Thanx for your help.. Mike
  9. MikeParc

    Object reference not set to an instance of an object.

    Well it still sais that the object reference is not set to an instance of an object. What can I do about it... code looks now like this: [COLOR=red]hFile = FindFirstFile(StartPath & "\" & File & ControlChars.NullChar, FileData)color] And it also didn't work without the...
  10. MikeParc

    Object reference not set to an instance of an object.

    HI, I got this error above in the this code: hFile = FindFirstFile(StartPath & "\" & File & vbNullChar, FileData) Please help me, I'm new to .NET Mike
  11. MikeParc

    An unhandled exception of type 'System.StackOverflowException'

    ok...false alarm....it isn't Dim mpMedia As MediaPlayer.MediaPlayer IT WAS THE SECOND FORM.... But why ?? I need to have a second form... Mike
  12. MikeParc

    An unhandled exception of type 'System.StackOverflowException'

    well I found the Error...it's the line: Dim mpMedia As MediaPlayer.MediaPlayer What'S wring with it ??? Mike
  13. MikeParc

    An unhandled exception of type 'System.StackOverflowException'

    Well, I did as you said but FIRST: I set a breakpoint at the Form1_Load function and it didn't arrive... SECOND: There is nothing in the Stack trace.... AND: It's an unknown Module... Thanx for help... Mike
  14. MikeParc

    An unhandled exception of type 'System.StackOverflowException'

    hi, i checked for breakpoints but there weren't any...but could you tell me what 'runaway recursion" is ??? And what's that "cantrols can fire" ??? Thanx for help. Mike
  15. MikeParc

    An unhandled exception of type 'System.StackOverflowException'

    Hi, I tried to compile my vb.NET program and it displays this error: An unhandled exception of type 'System.StackOverflowException' occurred in Unknown Module. Fatal stack overflow error. If I try to see the error, it says: There is no source code available for the current location So, how...

Part and Inventory Search

Back
Top