Search results

  1. K

    array problem

    Private Sub OpenToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenToolStripMenuItem.Click OpenFileDialog1.FileName = "Select File" If OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.Cancel Then Return End...
  2. K

    Array Question

    So i declared an array, "yoda(2, 1000001)"......because i want to have 2 columns and have alot of rows Number Score xxxxxx yyyyyy xxxxxx yyyyyyy xxxxx yyyyyy xxxxxx yyyyyy xxxxxx...
  3. K

    Module Calculations

    So i got a form with a bunch of buttons on it that do calculations of various natues (simple ones)...I typed my actual calculation codes using function in a module. For instance Function Meter(ByVal Temp As Integer) As Integer Temp = Temp / (3.2808) Return Temp End...
  4. K

    Timer and countdown

    so i gots to a listbox with values 0-55 with increments of 5. i display this number in label.text.........how do i declare a timer to equal the value in the label1.text and have it countdown and refresh every second.
  5. K

    Using The Date Class

    hey guys, i got a program that has a label with the Date.Now method to display the computer date and time.....i also have about 5 drop-down boxes for which i want to return segments of the date....for example...if the date read-out is now.....2/6/2007 7:10:46 PM.........i need one one of the...
  6. K

    5 Text Boxes...Need to display DB info

    I've got 5 text boxes (box1, box2, box3, box4, box5). I am creating a form for a database that uses these. When the first record is entered, the value is stored in the proper field along with "box1" (temporaily). the 2nd entry is put in box 2, 3rd in box3 and so on..... until they enter the 6th...
  7. K

    Import Excel Sheet Command button

    I'm deisgning a data-entry form. My short term goal is to have a button that prompts a user to import a excel file, and have that excel file stored in a temp. table. I am struggling with the "DoCmd.TransferSpreadsheet." Am i unaware of a method or do i need another object. Any ideas? I am quite...
Back
Top Bottom