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

    haha....nice... thanks for the help, i think that should take care of it.....sry about being dumb
  4. K

    Module Calculations

    umm...yea thats what i got....what do is wrong though?
  5. 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...
  6. 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.
  7. K

    Using The Date Class

    Yea ok, i suck...........anyway i am "designing" (more like cant figure it out) a countdown program..... not working here its what i got so far. I load up my first combobox with the months (in strings)...then load up the year 2000-2099....then i try to use if...then statements to load up the...
  8. K

    Using The Date Class

    Good post.....however, i want the month to return a String, not a integer....is the only way do to something like this ComboBox1.Text = DateInterval.Month If (ComboBox1.Text = 1) Then ComboBox1.Text = "January" ElseIf (ComboBox1.Text = 2) Then ComboBox1.Text = "February" ElseIf...
  9. 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...
  10. 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...
  11. K

    Import Excel Sheet Command button

    touche my friend....tocuhe
  12. K

    Import Excel Sheet Command button

    good help..... I cannot quite find the proper syntax for actually opening a Pop-up dialog box that asks for the user to locate the file. For instance when you use the DoCmd.TransferSpreadsheet you have all the variables it runs with......one of those is the location of the file to import...
  13. 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