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 gkittelson 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. 4waystop

    MS Htmlctrl example problem - where to put include files??!

    Hi I'm a bit confused and think I may be missing an include file or a setting somewhere to tell the compiler where to look for the included file. I'm simply trying to get the MS example of the STHtmlDialog to run which I downloaded from: http://www.pocketpcdn.com/articles/htmldialog.html...
  2. 4waystop

    Install javax.comm and get it to work!!

    Haha! Yes there's a serial and a parallel port. Neither of them are found with any of the example programs provided with the javax.comm extension. I just get the no ports found error.
  3. 4waystop

    Install javax.comm and get it to work!!

    Sorry - I'm not sure how you get to this path variable. I've gone to the project properties window within eclipse and added comm.jar to the libraries listed withing the java build path. I haven't references the dll file anywhere, just the .jar file. The dll is in the jdk/dre/bin folder.
  4. 4waystop

    Install javax.comm and get it to work!!

    Hi I'm having trouble installing javax.comm onto j2sdk1.4.2_06. I've put all the files in the place detailed in the documentation, but all I get on running BlackBox is the "No ports found!" error. I'm using Eclipse, so I've pointed the build path to comm.jar. Eclipse is happy with the code and...
  5. 4waystop

    Add incremental number to username if already exists

    Hi I've got a table which holds account numbers, usernames and passwords. I already know the account number, but I want to add a username and password. Obviously the username must be unique, and the field is set not to accept duplicates. The username is going to be made out of the user's first...
  6. 4waystop

    Assign variables to an SSL connection

    Thanks for the clarification Genimuse. Its certainly makes more sense for it to be this way. It seems my trusty w3schools.com reference let me down for once!
  7. 4waystop

    #include with client-side javascript - WEIRD problem

    Haha just done that! Yeh well I was just coming back here to tell you guys not to worry - I don't really know what this issue was, but some typo I guess. Cut and pasted it out, tested then cut and pasted back and now it works. Who knows?! Thanks for your suggestions, but sorry for wasting your...
  8. 4waystop

    #include with client-side javascript - WEIRD problem

    The include file has <script lang...> ... </script> tags within itself. I've tried including it in various places - before and after the head and within the body. The error is not being returned on the include line. Its being returned by a call to a method within the include. I call a function...
  9. 4waystop

    Assign variables to an SSL connection

    But isn't a session variable stored on the client-side? (Quoted from http://www.w3schools.com/asp/asp_sessions.asp): ASP solves this problem by creating a unique cookie for each user. The cookie is sent to the client and it contains information that identifies the user. This interface is called...
  10. 4waystop

    #include with client-side javascript - WEIRD problem

    Hi I've got two pages, one page which I want to show to the client and another page whose sole purpose it is to house a bunch of client-side javascript functions. I'm trying to include this page with javascript functions in the page which I want to show the client. The problem is that although...
  11. 4waystop

    Assign variables to an SSL connection

    OK, fair enough I wasn't that clear! What I am trying to do is ensure the server knows exactly who it is talking to at all times. We're using an SSL connection at all times on this website. I don't want to any kind of cookie because users can play about with them. I just need a way to ensure...
  12. 4waystop

    Assign variables to an SSL connection

    Hi I'm wandering first if its possible to assign variables (such as a username) to an SSL connection at the server-end, so that the server will know for sure which client it is talking to. And secondly how do you do it from ASP or where do I even begin to look? I'm not having much luck with my...
  13. 4waystop

    Multiple JOIN statements

    Sorry - I forgot to put that in. The database I'm running this on is MS SQL Server 2000 (accessing it using server-side javascript). Do multiple inner joins work with SQL Server? It wouldn't work with inner joins either though so I'm not sure that mixed left and right joins is the problem. I...
  14. 4waystop

    Multiple JOIN statements

    Hi I'm having trouble trying to join the information of three tables together in an single SQL statement. It can be done in two statements but its a bit wasteful! I'm trying to get information from the Contract and ClientRT tables which fulfil certain specifications(Contract.FromDate must be...
  15. 4waystop

    Funny little Javascript Array problem

    I'm having a little problem with getting data back out of Javascript arrays. I guess the two different methods or storing slightly different data somehow. My array is initialized as such: var payment = new Object(); payment.cc = new Object(); If there is data present when the database is loaded...
  16. 4waystop

    Comparing .value string of combobox w/ JavaScript

    Hi I've got a form which calls an asp page with POST. Within this form I have a selection box which has a two different options, each identified by a short string - in this case either cc or ca. When I come to call the value of this using: var payMet = Request.Form("payMethod"); it is not...
  17. 4waystop

    Databases: Get ID of new record after INSERT

    Thanks guys. Turns out it was an SQL problem not a JS/VB problem afterall! For anyone else looking this page is really useful for explaining proper use of @@IDENTITY: http://www.kamath.com/tutorials/tut007_identity.asp
  18. 4waystop

    Databases: Get ID of new record after INSERT

    Hi I've been relentlessly querying google about this and got nowhere, all I can find is how to do it in VB Script or using LiveWire. What I want to know is once I've inserted a new record to the database (in this case MS SQL Server), how do I find out the Autogenerated indexing number for that...
  19. 4waystop

    Databases: Get ID of new record after INSERT

    Hi I've been relentlessly querying google about this and got nowhere, all I can find is how to do it in VB Script or using LiveWire. What I want to know is once I've inserted a new record to the database (in this case MS SQL Server), how do I find out the Autogenerated indexing number for that...

Part and Inventory Search

Back
Top