Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: vgeng
  • Content: Threads
  • Order by date
  1. vgeng

    retrieve data from url

    Using the following URL and code I get always the 'message' that firstname = undefined my url equals : file:///H:/test2.html?concert=ACDC my code <HTML> <HEAD> <SCRIPT LANGUAGE="JavaScript"> function getParams() { var idx = document.URL.indexOf('?'); var params = new Array(); if (idx != -1)...
  2. vgeng

    Keydown problem - in combination with button

    I have the following code which is working fine Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown Select Case e.KeyCode Case 40 Timer1.Enabled = True Case 38...
  3. vgeng

    transpose column to riows

    I have the following table A B C and I would like to create one query to get A B A C anyone an idea ? thanks regards
  4. vgeng

    create a new record with only default values

    When my forms open, it will open a new record and fills all values (user-id + timestamp) automatically. when the user closes the form by clicking on it, Access 97 doesn't recognize the record as a new one because now values are changed, so it doesn't save it. does anyone have a solution ...
  5. vgeng

    combobox in powerpoint

    I have the next code Private Sub ComboBox2_DropButtonClick() ComboBox2.Clear ComboBox2.AddItem "a" ComboBox2.AddItem "b" ComboBox2.AddItem "c" ComboBox2.AddItem "d" ComboBox2.AddItem "e" ComboBox2.AddItem "F" ComboBox2.Style = fmStyleDropDownList End Sub But the only way I succeed to show the...
  6. vgeng

    DISK FULL - unable to open database

    I was working in a database until Access gave me a message that the disk was full and closed the application. Now, I'm not able to open the database at all. I don't get any error message. Renaming or copying the database didn't help neither does repairing or compacting. Anybody an idea how to...
  7. vgeng

    Formula in a form

    I have next formula in my form : =Sum(IIf([check]=Yes;[IN];0)) Access only recalculate the formula when I select another record Isn't there a possibilty to recalculate the result at the moment I change the checkbox [check] from No to Yes ? Thanks Gette
  8. vgeng

    use field value as field name in formula

    I have a table with a field program (eg x, y, z) and several text-fields (eg. a, b and c) In another table i have a field containing the different program names and in another field is mention a, b OR c so my tables would be programs fielda fieldb fieldc...

Part and Inventory Search

Back
Top