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 Mike Lewis 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
  • Order by date
  1. vgeng

    retrieve data from url

    Explorer was the problem It works fine in FireFox and on an virtual server Thanks Feherke and thanks tsuji for your alternitive
  2. 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)...
  3. vgeng

    Keydown problem - in combination with button

    this seems to work thx v
  4. 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...
  5. 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
  6. vgeng

    create a new record with only default values

    It works !!!! Thank you all for your help G
  7. vgeng

    create a new record with only default values

    I'm sorry guys, but i'm afraid this won't work Because the user didn't introduce any field himself, access thinks he hasn't something to save and disregard the saverecord command completely G
  8. 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 ...
  9. 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...
  10. vgeng

    DISK FULL - unable to open database

    I do but i prefer not to loose my today's work G
  11. 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...
  12. vgeng

    Formula in a form

    Problem solved Thanks G
  13. 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
  14. vgeng

    use field value as field name in formula

    thanks but the problems is that I have many programs, so my IIF-formula is gonna be rather long the second table is needed to determine which field of the first table is needed to get to my final result the reason of this all : I have to match two entries but the common reference isn't...
  15. 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