Search results for query: *

  1. whitezombie

    Moving Circles within a form?

    Anyone have a good example or some code I can examine that will do this? The purpose of this (maybe there is a better method I don't know) is to so the user can say what order they want pieces of code to be compiled in. Sort of like a flow-chart. I want it somewhat animated, so, example being...
  2. whitezombie

    Help working from modules

    Disregard, I found a solution. Public Sub subCREATEARRAY() For Each foundFile As String In My.Computer.FileSystem.GetFiles("c:\temp\parse") arrFILES.Add(foundFile) Next End Sub
  3. whitezombie

    Help working from modules

    Hey folks, I am re-writing some code and I need to be able to do the same function in a module aspect as opposed to a FORM method. In my old code I for example got the directory contents and dumped it into a listbox. I need to now dump it into an array instead. Anyone have a good example of...
  4. whitezombie

    Private, Shared, Public etc.

    Can someone please give me a good resource that explains the difference between a Private, Public, Shared Functions/Sub/Variables? I normally use Public for Subs/Functions inside of Modules I call from other parts of the program. But I'd like to get more of an understanding of how and when to...
  5. whitezombie

    String and Date Convert Process?

    Thanks so much for your detailed explanation on this. I've figured it out now all is working, thanks again!
  6. whitezombie

    String and Date Convert Process?

    Hey folks, I'm new to these forums but am really enjoying reading the various posts. I have a question regarding string to date converting. I have the following string from a file I need to convert to a valid DATE in VB, but I am unable to with the attempt's I have tried. The date is: "Thu...
Back
Top