K
Kyote
Sorry, but I have no idea how to phrase the subject better than that.
I've come across this a few different times and decided to ask in case
there's a way to do it. It would simplify things a bit and I figured
if anyone knows, more than likely that someone is here.
I have a class for storing filenames and it's path along with a little
more info. Here it is
Public Class myFiles
Public oldFileName As String
Public oldPathAndName As String
Public newFileName As String
Public newPathAndName As String
Public fileExtention As String
End Class
Now when using functions and such that are built in and you begin
typing VS.net either pops up with what you can possibly use or you can
force it by ctrl+space. Thats pretty much what I want to do. I may be
doing something wrong that is making it so it isn't including it, but,
if so hopefully any replies will point that out to me.
I declare a new arraylist
Public sourceArray, directoryListing As New ArrayList
Then in a sub I do this
For x As Integer = 0 To sourceArray.Count - 1
If sourceArray.Item(x).oldFileName.Contains(",") Then
MessageBox.Show(sourceArray.Item(x).oldfilename)
Else
MessageBox.Show("No comma in name!" & vbCrLf & _
sourceArray.Item(x).oldfilename)
End If
Next
Ok, now when I go to typing
sourceArray.Item(x).oldFileName
and I get this much done
sourceArray.Item(x).ol
or even if I just get to this
sourceArray.Item(x).
pressing ctrl+space should popup, or at least I would like it to, the
possible variables/methods/fuctions/etc.. I have for that class
stored in the arraylist. Did I explain this enough for you to
understand what I'm trying to accomplish? If so, is there a way for me
to get the classes variables to popup in the drop down box of the
'code completer'?
Even though it doesn't automatically popup for quicker completion it
does work just fine when I run it. But my memory isn't the greatest
for all the different names and such I use in different parts of my
project and would love to have the 'code completer' assist me with
this.
Thank you in advance for any help anyone can provide.
I've come across this a few different times and decided to ask in case
there's a way to do it. It would simplify things a bit and I figured
if anyone knows, more than likely that someone is here.
I have a class for storing filenames and it's path along with a little
more info. Here it is
Public Class myFiles
Public oldFileName As String
Public oldPathAndName As String
Public newFileName As String
Public newPathAndName As String
Public fileExtention As String
End Class
Now when using functions and such that are built in and you begin
typing VS.net either pops up with what you can possibly use or you can
force it by ctrl+space. Thats pretty much what I want to do. I may be
doing something wrong that is making it so it isn't including it, but,
if so hopefully any replies will point that out to me.
I declare a new arraylist
Public sourceArray, directoryListing As New ArrayList
Then in a sub I do this
For x As Integer = 0 To sourceArray.Count - 1
If sourceArray.Item(x).oldFileName.Contains(",") Then
MessageBox.Show(sourceArray.Item(x).oldfilename)
Else
MessageBox.Show("No comma in name!" & vbCrLf & _
sourceArray.Item(x).oldfilename)
End If
Next
Ok, now when I go to typing
sourceArray.Item(x).oldFileName
and I get this much done
sourceArray.Item(x).ol
or even if I just get to this
sourceArray.Item(x).
pressing ctrl+space should popup, or at least I would like it to, the
possible variables/methods/fuctions/etc.. I have for that class
stored in the arraylist. Did I explain this enough for you to
understand what I'm trying to accomplish? If so, is there a way for me
to get the classes variables to popup in the drop down box of the
'code completer'?
Even though it doesn't automatically popup for quicker completion it
does work just fine when I run it. But my memory isn't the greatest
for all the different names and such I use in different parts of my
project and would love to have the 'code completer' assist me with
this.
Thank you in advance for any help anyone can provide.