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 SkipVought 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: dbrom
  • Order by date
  1. dbrom

    Wrong value being updated with wrong value

    I would check the HTML code and see if there are naming errors of input fields. <Dmitriy> dbrom@crosswinds.net
  2. dbrom

    Don't Want to hard code password in the code? Is there any other way?

    The way I include my connection string into pages is by using Application level variables. conn.Open(Application(&quot;ConnStr&quot;),Application(&quot;Uname&quot;),Application(&quot;Pwd&quot;)) You can also use an include file in which you specify uname and pwd. You shouldn't hardcode it even...
  3. dbrom

    VBscript equivalent to array.split(&quot;,&quot;) in JScript

    myArray = StringVar.split(&quot;,&quot;) HOpe this helps :-) <Dmitriy> dbrom@crosswinds.net
  4. dbrom

    netscape loading slllloooowwwww

    I agree. Use paging. Imagine your users have to access the table over the dial-up for some reason... Also, some browsers have crashed on me in the past (on Win98) when too much information is passed, so it's not a good idea to do that. Here's a great resourse on paging (which I use on almost...
  5. dbrom

    Calling an ASP page from a HTML page

    You mean you want to dynamically include an ASP page into HTML page, like you do with include files? I am pretty sure you can't do that... You can use frames to do it, though. Or, why not just rename .htm file to .asp? Is there any specific reason you don't want to do it? Then, in page1.asp...
  6. dbrom

    Changing a user password in a Access Database using ASP?

    Here ya go: NOTE1: It's in Javascript, but should give you some ideas even if you use VBScript NOTE2: I hope my sourcecode is not going to get interpreted as HTML... <%@ Language=JavaScript %> <!--#include virtual=&quot;/include/adojavas.inc&quot;--> <% // if username is already taken...
  7. dbrom

    Stop backspace acting as the Back Button

    I would suggest physically removing the backspace key from the keyboard - that should do it :-) If you're using IE, you can try to find a browser that doesn't use backspace as BACK button. But I do know how frustrating it can be when you use backspace to modify content of input field, then...
  8. dbrom

    Saving a query (querydef)

    Sorry,I do not understand a question... What do you mean by saving a query??? <Dmitriy> dbrom@crosswinds.net
  9. dbrom

    Can not creat object error

    I don't know what happend in the past... Strange things happen with these computers sometimes :-) No, it can't register itself, so maybe this was related to a problem inside a COM component (like a memory leak, or if after a certain number of times it is created it stops working), but that's...
  10. dbrom

    Can not creat object error

    good luck :-) <Dmitriy> dbrom@crosswinds.net
  11. dbrom

    ASP Upload file to Access Database

    You mean you want to store the actual file in the database? If so, then 1) I am not sure you can do it in Access 2) It is not a very good idea - the database is going to be pretty hard to manage... When I upload files, I only record their names in the DB, and then store them as actual files...
  12. dbrom

    Can not creat object error

    Hmm... Never heard of an object that would be produced by Server.CreateObject(&quot;Program.WebUtility&quot;)... Google search doesn't produce anything as well. So chances are it is an internally developed COM component that your company is using... If I am right, then I have no idea how to...
  13. dbrom

    Can not creat object error

    Can you post the part of code that creates an object? It should be something like Server.CreateObject(&quot;BLAH_BLAH&quot;) Maybe the dll you are referring to is not properly registered... Is it a built-in object you are trying to create or a custom component your company uses? <Dmitriy>...
  14. dbrom

    What's the quickest and most efficent method for recalling data

    You are right. Stored procedure is going to be the fastest since it is pre-compiled imside SQL server. And it is pretty simple to use. Instead of SET RsN = Conn.Execute(Sql) you just do SET RsN = Command.Execute() (Of course you need to create stored procedure and command with appended...
  15. dbrom

    Back (Urgent !!!! Help Please)

    As is everyone :-) <Dmitriy> dbrom@crosswinds.net
  16. dbrom

    Creating Mailing Labels

    Hey, I may be doing this doen the road too, so I thought about different ways of doing it. I think it can be done using PDF files with predefined layout. THen you can insert text into the PDF from the database or an HTML form. You can use either ActivePDF component (haven't tried it yet) or...
  17. dbrom

    Basic Array Question

    Well, Why can't you just do this: Application(&quot;arrMonthNumbers&quot;)=(&quot;01&quot;,&quot;02&quot;,&quot;03&quot;) Application(&quot;arrMonthNames&quot;)=(&quot;January&quot;,&quot;February&quot;,&quot;March&quot;) I am pretty sure you can't store two-dimensional arrays in Application...
  18. dbrom

    How to display from opne table based on id

    SHOULD BE: INNER JOIN Products p <Dmitriy> dbrom@crosswinds.net
  19. dbrom

    How to display from opne table based on id

    Looks like you need a JOIN statement: SQL Sample: SELECT o.orderID, o.orderDate, p.manufacturer FROM Orders o INNER JOIN Products ON o.ProductID = p.ProductID WHERE orderID = <order_ID> I hope that is in the general vicinity of what you were looking for :-) <Dmitriy> dbrom@crosswinds.net
  20. dbrom

    Response redirect

    <META HTTP-EQUIV=&quot;Refresh&quot; CONTENT=&quot;5;URL=http://www.some.org/some.html&quot;> There's the META tag Dynapen was talking about. Use this or Javascript I provided above Good luck <Dmitriy> dbrom@crosswinds.net

Part and Inventory Search

Back
Top