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

    Custom Insert Statement

    I am working on some forms, and when I try the "Add New Record" method that pops up as one of the options in the actions for a new command button, it does not work for my form. Some fields it does not even let me enter information into at all. So, what I am going to do is create a whole new...
  2. kosmokramer

    Modifying the SQL behind the Field List

    Nevermind...I got it. I guess it helps to read previous posts!!
  3. kosmokramer

    Modifying the SQL behind the Field List

    Sorry, I am new to this. Is there a way to add fields to the Field List for the form after you have already completed the wizard? When I go into the design view, and click on the Field List button, I can see the SQL query written in the titlebar of the Field List window, but can't add fields...
  4. kosmokramer

    Open a form instead of msgbox

    Thanks for the help, but about 5 minutes after I posted this question, I figured out what I needed to do! I just went through all the options in Intelisense that seemed to make any sense (no pun intended!).
  5. kosmokramer

    Open a form instead of msgbox

    Hey. This is a really simple question, but how do you open a new form in response to a button click on the first form? I am creating an application that will have information listed on the main form, and if the user wants more information about a particular record, they can click a button...
  6. kosmokramer

    Query loop?

    Alright, now you're just showing off! Just kidding. Thanks for your help
  7. kosmokramer

    Query loop?

    Cool! Thanks for the fast response :-)
  8. kosmokramer

    Query loop?

    I have a table that has actions listed for each company, and since a company can have multiple actions, the company name is listed multiple times. These actions all have different dates as well. I want to create a recordset that will pull out the latest date for each of the companies. If I...
  9. kosmokramer

    Cropping a page for use in frame

    Thanks for the help everyone. I have not gotten to try them out yet, but when I get back from work today, I'll see how they work. Vragabond, the reason I didn't want to crop the image and do it that way is because in the main content page, I have a client side script that determines the screen...
  10. kosmokramer

    Cropping a page for use in frame

    Hey everyone. I am trying to make a website that will use frames. The navigation will be in buttons on the left hand side, and will remain a static page while one on the right changes. Alright, so far that is simple enough. The problem is that I want the background image in the page on the...
  11. kosmokramer

    Syntax error in response.write statement

    Yeah. I was not thinking of that when I created the subs. Usually I just declare a lot of global variables and never have to worry about that since I don't usually work with subs. So, back to my question, how would you pass the objRS object? Is it something like: closeConnection(ByRef objRS)
  12. kosmokramer

    Syntax error in response.write statement

    Hey. Thanks Chopstik. Though all you did was ask a question, it made me look at which line again, and lo and behold, I found the error. What happened was that the first line of the closeConnection() sub was throwing the error. I suppose because the objRS object was not being passed to it...
  13. kosmokramer

    hide password in traffic and source

    Humm...not sure about ASP, but I know in PHP there is a function called md5() which creates a string 32 characters long. Here's an example password generator (In PHP) <?php $String = "This is the text which will be encrypted so that you can create a random password" $Length = 8; //This...
  14. kosmokramer

    Syntax error in response.write statement

    Woo hoo! Got it working! Thanks winston. Alright, now I am having another problem: Microsoft VBScript runtime error '800a01a8' Object required: 'objRS' I think this problem has to do with objRS being closed out, but not being redefined. I don't see why this is a problem... Here are my...
  15. kosmokramer

    why is this code not working

    hey. Actually, I think it should be <INPUT NAME="lname<%=i%>" SIZE="20"> Also, I tend to like to just Response.Write the whole thing: (I am assuming you are doing it in a loop) <%Dim p p=10 For i=0 to p Response.Write "<input name='blah" & i & "' size='20'>" Next%> This way seems to...
  16. kosmokramer

    Syntax error in response.write statement

    Humm..I was wondering about that. Thanks for the help, but I am still getting the same error: Microsoft VBScript runtime error '800a000d' Type mismatch: 'openConnection' I even tried it with hard coded variables: temp = "Bourne Identity" temp2 = 5 Response.Write ("</td><td>" &...
  17. kosmokramer

    Syntax error in response.write statement

    I am trying to test the variables being sent to a sub, so I am only getting it to print out the variables once they are sent to the sub. The problem is that I am getting a type mismatch error in the string I am writing out that calls the sub Here's the string: Response.Write ("</td><td>" &...
  18. kosmokramer

    Problems with showing all of webpage

    Thanks. I didn't need the <span style=&quot;visibility:hidden&quot;> part though. That made all the content on the page invisible!
  19. kosmokramer

    Problems with showing all of webpage

    I am using absolute positioning on my webpage to place some text. The problem is that when you view the webpage (on a screen set to 1024x768), you can't see the text because it is too far down. I thought that because there is still more content on the webpage (the text), there would be a...

Part and Inventory Search

Back
Top