Search results for query: *

  1. formlesstree4

    Question Moving files with console application?

    Module Module1 Sub Main(ByVal File, ByVal Location) If System.IO.File.Exists(File) = True Then System.IO.File.Move(File, Location) Console.WriteLine("File Moved") End If End Sub End Module Error: Error 1: No accessible 'Main' method with an...
  2. formlesstree4

    Database Driven Login form with Admin backend (Image Heavy)

    Well, I asked around here, got a partial answer that really helped out, but I decided to write an official How To on a database driven login form. I'll include the Administration Backend to go along with it soon. Dial-Up users should not use this thread, it is image heavy So, here we go...
  3. formlesstree4

    Question A login form using a database

    Well, I've been trying for about 3 weeks now (sad, I know) to get a login form read from a database. I've tried a lot of things, and so far, nothing works. This is what I have so far: Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click...
Back
Top