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 TouchToneTommy 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. deltaflyer666

    retrieve image from database and view without refreshing

    Create a seperate page in your webfolder called GETIMAGES.PHP or whatever you like put the following code in it... <?php mysql_connect("yourdatabaseserver","username","password"); mysql_select_db("yourdatabase"); $image = stripslashes($_REQUEST[imageid]); $rs = mysql_query("select FIELDNAME...
  2. deltaflyer666

    newbie problem with DirectX

    I am taking my first foray into DirectX and trying the simple triangle tutorial program, however whenever i run the program i am getting the windows form with a large red X throughout it, below is the code i am using copied straight from the website tutorial so it should work just fine, any...
  3. deltaflyer666

    AccessDataSource UpdateQuery problem

    Have you made sure that there are only the relevant fields in the query parameters? Sounds like the original 5 parameters are still present instead of the 3 you want. If you have deleted the first two ?s from the query but not the parameters from the parameters list your query would equate to...
  4. deltaflyer666

    Ajax Custom Runtime Styles

    Sweet, worked like a charm, thanks Benson.
  5. deltaflyer666

    Ajax Custom Runtime Styles

    I am trying to put together a site that will change style dependent upon the url data provided The "Type" querystring value determines which data is returned from the database, i.e. type 1 = fish, type 2 = clothes, type 3 = spoons etc etc etc I have the style sheet created that contains the...
  6. deltaflyer666

    Ajax Custom Styles

    I am trying to put together a site that will change style dependent upon the url data provided The "Type" querystring value determines which data is returned from the database, i.e. type 1 = fish, type 2 = clothes, type 3 = spoons etc etc etc I have the style sheet created that contains the...
  7. deltaflyer666

    VB5 Media

    Thanks for that, I will try it and advise the outcome.
  8. deltaflyer666

    VB5 Media

    I am trying to locate a copy of Visual Basic 5.0 as i have recently received source code from a new client that was written in this language. Ultimately the code needs to be rewritten into .Net 2 but the client wants the changes made before a rewrite begins as the rewrite will take 4-5 months...

Part and Inventory Search

Back
Top