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

  1. Terwin

    SQL/.NET - Multiple Transactions

    Well, the issue is that the record id is an autonumbered field, so I don't have that information until the record is actually inserted. I need to insert the record, then somehow get the auto-generated id of the record I just inserted returned to me. Thanks! T
  2. Terwin

    SQL/.NET - Multiple Transactions

    Hi all, I usually don't ask such general questions, but I'm having trouble finding anything useful on the web - so here goes. I have a user control that inserts a record into an MSSQL database. After inserting the record, I need to insert a second record (into a different table). The second...
  3. Terwin

    Writing to Output Pane in VS.NET

    Ladies and Gents, I am something of a VS.NET newbie, and I've been trying to navigate the labyrinth of the VS docs to no avail - so here's my question: I have a routine that converts SqlCommand objects to DataSet objects, and I would like to write the text of the SQL query associated with the...
  4. Terwin

    Help with an SQL Update

    Rob, Thanks for your reply - it was just what I needed to get my thinking on the right track. Using the query profiler, I determined that the parameters the sp was receiving were not the updated params, they were the original ones. Yikes, I didn't realize the page was posting back before...
  5. Terwin

    Help with an SQL Update

    I have a form that is updating site information in a MS SQL database via an SQLCommand and a stored procedure. When I run the stored procedure from the server explorer, supplying the parameters myself, it works fine, so I know the sp is not the culprit. Any suggestions for how I might go about...
  6. Terwin

    search not working

    I can't say with certainty that what you're doing is wrong or won't work, but why not just add event handlers to the button instance rather than creating listener objects? I'd try that and see if it works.
  7. Terwin

    Pulling text from between <a> tags

    Thanks, Lrnmore.
  8. Terwin

    Pulling text from between <a> tags

    Hello all, I'm attempting to put together a page indexing another page that has an extremely long list of links (350 or so). Right now, I can obtain the document.links object and filter out the links I want, but I can't come up with a good way to obtain the actual linked text for each...
  9. Terwin

    Drop down box and key-value Structure

    Well, Good explanation, at least I now understand your problem. I don't use ColdFusion (hiss), but I GUARANTEE you that you can do these things with a minimum of JavaScript. All of your data (keys and values -- for which I usually use a hashmap or similar data structure) should be in objects...
  10. Terwin

    How not to reload a page on BACK

    You know, I don't think this sort of state maintenance is possible in JavaScript without cookies. Here are some basic tutorials and examples. http://javascript.internet.com/cookies/ Good Luck, T
  11. Terwin

    Back button woes

    You know, I was wondering about that technique, but how does the image get returned.. or does an image even get returned? My formhandler page hits a servlet, which may be able to forward the request to an image url after processing. Is that how it's done, lest I get a big red x? Thanks for...
  12. Terwin

    Drop down box and key-value Structure

    I think you need to explain your problem a bit better, and possibly post some code. I read your post several times, and I cannot figure out what the Chess Club, Soccer, Golf, have to do with the "structure" (which could also use some more explanation - what is it? an object you've...
  13. Terwin

    Back button woes

    For several somewhat unfortunate reasons, I've implemented a hit counter for a site of mine using an invisible iframe that does a form.submit to a server where the database resides. The problem is, the iframe screws up the navigability of the site by being referenced by the back button, which...
  14. Terwin

    Question for you servlet gurus

    Hello all, My question involves running users through an authentication scheme and subsequently forwarding the request (or redirecting the response). The authentication routine is there to pick up some data about the user IF they have the authentication client open (it's a sort of side car...
  15. Terwin

    Masking Oddity

    Amazingly, once I embedded the fonts in the textfields, everything worked properly. Thanks yet again, wangbar. T
  16. Terwin

    Masking Oddity

    I have a component that attaches a substantial number of movie clips to itself as it initializes. The component, once created, is masked by a pane via setMask. The masking is behaving strangely, however. The component is draggable, the idea being that it can be dragged around the pane, but...
  17. Terwin

    Recursive Variable Loading

    In case anyone's interested, I succeeded with wangbar's original suggestion of dynamically generating LoadVars objects with unique and predictable names. I actually replaced the custom objects representing tree nodes with LoadVars objects (which do the job just fine since it was essentially a...
  18. Terwin

    Recursive Variable Loading

    I was going to try and avoid using XML because I've had so much irritation with the Flash XML Object.. mostly its useless ignoreWhite method and having to constantly check for null nodes. I was actually just playing around with instantiating many unique LoadVars objects in the style you...
  19. Terwin

    Recursive Variable Loading

    Flash actually seems to be able to load variables into the same LoadVars object that sent them.. but your point is well taken from an organizational perspective. The chief difficulty I'm having, however, is controlling the loading of the nodeData so that the objects have time to populate (and...
  20. Terwin

    Recursive Variable Loading

    I have a flash movie loading variables from a java servlet, and I have a question about how I can go about loading the data recursively. The data is being loaded into a tree-like class, so I hope to be able to call the loading function recursively in order to populate the entire tree. My...

Part and Inventory Search

Back
Top