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. Ferrian

    XSD - trying to understand complextypes

    That explains my confusion! Thanks very much ~Ben Occasional sparks in a darkened room
  2. Ferrian

    XSD - trying to understand complextypes

    I have been given a set of XSD documents by a company in order to pass them data. They are a huge sprawling series of interconnecting types and it is taking hours to unravel it all. I am fairly new to XML and completely new to XSD so I have been learning a lot, but I am stumped by one section...
  3. Ferrian

    Check to see if username exists before submitting form

    But if you're using a sign in system to a website you can't have 2 people with the same username. I don't think it's about uniqueness in the DB, but about making it possible for users to sign in without the DB getting confused who is attempting to sign in. ~Ben Occasional sparks in a darkened room
  4. Ferrian

    Check to see if username exists before submitting form

    It feels like you're making this more complicated than it needs to be. Why not have a button beside the username textbox which the user clicks to check the username is available, if it is available the name is inserted into the db with the rest of the fields blank (to make sure no other users...
  5. Ferrian

    Checkboxlist not being picked up as control

    I recently wrote something similar to this to reset a group of controls, but problems arose with the amount of time it takes for this script to run. Checking through every control on the page is a lot of server load for the page to process. In the end I simply wrote a hardcoded list to clear...
  6. Ferrian

    Extra Trigger appearing when I save

    It seems the problem was related to the Ajax controls I had installed. I had the AjaxToolkit, but not the Extended Toolkit. Once this was installed the issue seems to have cleared itself up. ~Ben Occasional sparks in a darkened room
  7. Ferrian

    Extra Trigger appearing when I save

    I have an intriguing issue. And when I say intriguing, I mean really irritating. I use Visual Studio 2008 and have started having problems with triggers. I write my code and put in the triggers I require, such as <Triggers> <asp:PostBackTrigger...
  8. Ferrian

    Best option for text display

    I have had a look and haven't yet found any actually free flash tools, but there are a few which offer a free trial period. That means you can get it and work for a few days to get what you want done and deploy it. Of course they may watermark such a piece until you pay for the software, I...
  9. Ferrian

    Best option for text display

    Very interesting idea, not something I had ever considered. Making text appear one word at a time would be quite difficult in Javascript I would think, as you'd probably have to code each word as an individual element (though I might be wrong, I'm not so hot on javascript). If you want it to...
  10. Ferrian

    Please Check my SQL Stmt

    When you execute the Update query does it hang for a while before telling you 0 rows were updated, or go straight there? Maybe your DB has a short timeout and the time taken to update that many rows is causing the function to die and rollback the changes made. ~Ben Occasional sparks in a...
  11. Ferrian

    Line breaks in XSL files

    A quick search of Google gave me: http://www.stylusstudio.com/xsllist/200505/post90120.html There's lots more different forum articles and posts out there to help you. ~Ben Occasional sparks in a darkened room
  12. Ferrian

    Intermittent Images

    If your server hosts are not being helpful, I would tell them straight out that you're going to move your business elsewhere if they don't help you track down the problem. If you're paying for a service then they should be doing their best to fix any issues you have, not just telling you it must...
  13. Ferrian

    Help with javascript validation

    You're using Javascript to validate users? Are you aware that this gives all the information to a user of the website? I can't work out whether you're actually printing out important information, but if you're using ASP then you should try to do as much as possible server side, rather than...
  14. Ferrian

    Need Help Manipulating String

    Because if you have 12 spaces, replacing all the double spaces with single spaces would still leave you with 6 spaces, hence the loop to make sure all spaces are single. Dim myq As String = strQs(i, 1) While myq.Contains(" ") myq.Replace(" ", " ") End While...
  15. Ferrian

    Help getting started (Video capture SDK required)

    Good morning all, My company is currently looking to add a HD camcorder to their current recording software and as such we are looking for a Video Capture SDK to plug in to our existing software which will stream direct from the camcorder to the PC via a HDMI cable. I have been tasked with...
  16. Ferrian

    Finding Rows which do not belong

    Fast and spot on. Thanks very much. ~Ben "Insert witty statement here
  17. Ferrian

    Finding Rows which do not belong

    Our database contains two tables, one of which contains Registration details and the second of which contains Company details for each registered user. Every row in registration should have one matching Company details row and each Company details row should refer to only one Registration row...
  18. Ferrian

    can't select list option in IE7

    If it's a difference from IE6 to IE7 it's most likely a JavaScript issue. Maybe try the JavaScript forum. ~Ben "Insert witty statement here
  19. Ferrian

    Browse for a File and pass the Link

    So rarely think about using basic HTML that often I don't think about these things either. Definitely better to ask than fabricate something complex in the background which does the same thing! ~Ben "Insert witty statement here
  20. Ferrian

    Adding Extensions to the php.ini file correctly

    [PHP_MYSQL] extension=php_mysql.dll entension=libxml2.dll You misspelled 'extension' here. Did you spell it correctly in the .ini file? ~Ben "Insert witty statement here

Part and Inventory Search

Back
Top