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 derfloh 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: *

  1. Dummy99

    Open HTML file with Javascript?

    I have a "Menu" frame and a "Main" frame. At the start, "MyMenu.html" gets opened/displayed in "Menu" frame and "MyHomePage.html" gets opened/displayed in "Main" frame. By clicking "Log-In" in the "Menu" frame, the user gets a Log-In form in the "Main" frame. Upon completeing & submitting the...
  2. Dummy99

    Cookies Code

    Tsuji, I have made the changes you stated but I still get the same results, i.e., the cookie displayed is always the same: "RemID; UserID=yes", even if I enter a new user id. There must be some other problem. Something else you should perhaps know. I am in development stage only and so I am...
  3. Dummy99

    Cookies Code

    ...function createCookie(name, value, days) {if (days) {var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString();} else {var expires = ""; document.cookie = name+"="+value+expires+"; path=/";}}...
  4. Dummy99

    Right Justify Numbers

    Can't find any info in HTML so I presume it has to be done in Javascript. I have an Input box for Quantity to be entered by the user and an Input box for the Price to be filled in by a JS function. Can you tell me how to right justiy these fields with the Price being shown as $xxx,xxx Tks Michael
  5. Dummy99

    Allign Left without using <p allign=left>

    After doing a <center>, how can I start my next line left alligned without using a <p align=left>. I want my next line to start immediately following the <hr> but I don't want a line skip. e.g. of code follows: <center> <hr width="80%" size="6" noshade></> <font color ="Blue" size=2><p...
  6. Dummy99

    Calling JS funtion with paramater &amp; If/Else

    ...{ alert (mysel) if mysel = "one" { if (document.getElementById('Benefits').value = "yes") {document.getElementById("pr01").value = (225 * (document.getElementById('q01').value))} else {document.getElementById("pr01").value = 0} } else if mysel = "two" { if...
  7. Dummy99

    Get element from document

    I'm trying to pick up the content of iInput box "q01" with the following code qty=document.getElementById('q01') but I get "[Object]" instead of the content. What is the correct coding? Thanks
  8. Dummy99

    Access 97 to Access 2000

    I've developed an Access application under Windows 95, Access 97 and I need to transfer this to a Windows 2000, Access 2000 instalation. Problems: 1) Access 2000 wont open the application saying the application needs to be converted and I haven't got rights to convert it - don't remember the...
  9. Dummy99

    Access Error Msg instead of Mine

    I import a text file into a TABLE where duplicat keys are not permitted. If I have a duplicat condition, instead of getting my error message I get the Access generalized message saying unable to import all data... My code is: On Error GoTo Import1_Err DoCmd.Echo False, True...
  10. Dummy99

    Forms Screen Size

    Thanks Peter! I'll stop trying. Dummy99
  11. Dummy99

    Macro Not Foud but no Macro Specified

    I have two reports (Keys & Info) with a customized Toolbar which includes an &quot;Exit&quot; button and this &quot;Exit&quot; button was tied to a macro called &quot;MM.ExitBtn&quot;. These reports get opened via Menu Form X. I later introduced a Menu Form Y to selectively preview print...
  12. Dummy99

    Forms Screen Size

    Hi Brad, No it's not the Maximize. I already use that and it's fine when I'm on my Laptop. When the forms get opened, they blow-up to the size of my Laptop screen. When I transfer/install my application on a PC which has a bigger screen than my Laptop, the Maximize blows-up the forms but...
  13. Dummy99

    Forms Screen Size

    I developed my Access applications on a Laptop. When I transfer them to PCs, which have lager screens, forms are still the Laptop screen size. Is there a way to have forms automatically adjust to the screen size in use? Thanks, Dummy99
  14. Dummy99

    OpenRecordSet Error

    My following code gives me error message: &quot;Too few parameters. Expected 1.&quot; It appears to me to be from the last line of code but I don't understand it / can't resolve. Please help! StrSQL = &quot;SELECT Keywds,keyid,key FROM Keys WHERE Keyid = Forms!Info.Key&quot; Set qdf =...
  15. Dummy99

    Compact Database Problem

    Hello Darylle, Thanks for the idea - I should have thought of that myself. However, it didn't work - because of &quot;chain reactions&quot;, i.e., it can't proceed because this Form is not there and then it can't proceed because this Query is not there, etc. The way I found the culprit was by...
  16. Dummy99

    Click Equivalent?

    Maquis, Thanks for you help. The &quot;On-Current&quot; in the sub-form didn't work but I found a solution: In the &quot;On Key Down&quot; of the control in my main form I entered &quot;[Event Procedure]&quot; and coded the procedure as follows: Private Sub SolutionCell_KeyDown(KeyCode As...
  17. Dummy99

    Click Equivalent?

    Hello Mag, The form has only one control so the tabbing order is just that one control. It's a continuous form so the records get displayed on the screen as follow: rcd1 (in the one control) & this one has the focus to start. rcd2 (in the one control) rcd3 etc. It all shows as one display and...
  18. Dummy99

    Click Equivalent?

    Can anyone tell me how I can get the equivalent of a Click or Double Click by using the keybord, e.g. using the Enter key. I have one and only control in a continuous form and it has a subform to it. To get the sub form, my user has to do a double click on the control item he's interested in...
  19. Dummy99

    Compact Database Problem

    I'm getting the following error messages when I try to Compact my Access database Application and it doesn't seem to be compacting. First: Invalid database object reference. - I OK it. Second: Same msg. - I OK it. Third: The MS Jet datbase engine could not find the object '~sq_fMM'...
  20. Dummy99

    Display a Non-Access File from Access

    Hi Jdegeorge, Yes very annoying, particularly when a solution works at night and doesn't work in the morning or it works on my PC (connected to server and net) at the office but doesn't work on my stand-alone laptop at home. This morning, I expanded on my solution and it now works beautifully...

Part and Inventory Search

Back
Top