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 strongm 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. vbdewd

    return false; form help - ready to give up :'(

    gia999 Sorry, my idea is no good. I've been playing with a simple form and can't get anywhere with "return false" in onsubmit. In my first post I said: "I'd try an asp hiddenfield on the form with name, id and value properties." That's a mistake. An asp:hiddenfield has no name attribute. If...
  2. vbdewd

    return false; form help - ready to give up :'(

    Does the javascript work? Or is the problem getting the Postcode from the javascript? Assuming the javascript works: I'd try an asp hiddenfield on the form with name, id and value properties. Then write the Postcode to the hiddenfield value somewhere in the javascript using the hiddenfield's...
  3. vbdewd

    Convert From ASP to Javascript

    feherke, First, I'm wondering why Krus1972 doesn't use asp to do the redirect (if it's an asp page). How would it help me? I'd look at the result and see if I could come up with an alternate route besides what you posted using a combo of asp and js.
  4. vbdewd

    Convert From ASP to Javascript

    Can you post an example URL from the browser address bar and also do a Response.Write(q) when (q = "") and when q <> "" and then post the two results?
  5. vbdewd

    How to deal with Decimal Number

    thanks johnwm. I do understand why but I was hoping somebody has found a soultion or some type of conversion.
  6. vbdewd

    Javascript Validating Hidden Fields

    I don't understand why you can't know which fields are visible. You should be able to determine that with code. Why not give a default value to fields that are hidden from the user and this should take care of the "required fields" business". Handle the default values in the validation.
  7. vbdewd

    How to deal with Decimal Number

    Greetings Folks, This is an old issue but I still wonder if there's a quick solution. When I multiply a number such as (0.0000001 * 1000000), The answer comes up to 0.099999999999999999 instead of 0.1 Aside from using parseFloat and/or .toFixed, can you tell me of a way to get the correct...
  8. vbdewd

    SQL Express Linked Tables

    I did set the default of 0 for the yes/no fields. That's how I cleared up the problem with the NULL business. I was getting a message that another user is trying to change the table at the same time when I tried to delete a record. Thanks for your input!
  9. vbdewd

    SQL Express Linked Tables

    Thanks dhookom, I did set up the relationships in SQL after I exported the tables to the remote box. It seems to work, however I did have some trouble with a CheckBox field concerning NULL values. What is the correct procedure for setting up the relationships? Locally in Access or remotely in...
  10. vbdewd

    SQL Express Linked Tables

    Greetings Folks, I could use some advice with table relationships. Using Access 2002, I just exported my Access tables to SQL Express 2005 database running on remote server. I then linked by "getting external data" which sets up the linked tables as "dbo_mytable" format. I changed the data...
  11. vbdewd

    VB 2005 and searching a MS database

    I'm assuming you're using a .mdb dBase and have an AccessDataSource control on the form that functions as a DataSet. Try something like this: AccessDataSource.SelectCommand = "SELECT * FROM TableName WHERE ColumnName = @ColumnName" AccessDataSource.SelectParameters.Add(New...

Part and Inventory Search

Back
Top