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

    JCIFS and Tomcat

    Hi, I'm currently running a web site with JCIFS and its running correclty. But I want some users that are not on the domain (contractors) to connect on the web site by a login page where they will enter user / pwd stored in a database. I just want to know if it can be done and what do I have to...
  2. TheBestOfMe

    Foreign key on serial column

    It has work. Strange because the serial column was a primary key and it is suppose to be unique by default.
  3. TheBestOfMe

    Foreign key on serial column

    thanks, I'll try it.
  4. TheBestOfMe

    Foreign key on serial column

    Hi, I want to make have a foreign key on a integer column ta a serial column (the same thing as we can do in Access). When I execute my file, the following error occurs: ERROR: UNIQUE constraint matching given keys for referenced table "auberges" not found. Here is an example...
  5. TheBestOfMe

    Random Timeout Expired

    Hi, the table has 10 or 12 colums with some primary keys. The table contain data pre-calculated, so I don'y have any join in my query. If I execute the sp in query analyser, the execution time is 1 sec or less. I think the network could be the cause of the problem, because the lan is 10mb and...
  6. TheBestOfMe

    Random Timeout Expired

    Hi, I have a weid problem in a VB6 application using ADO conection to a SQL Server 2000. I do have sometime a timout expired on a stored procedure call that return a sigle row in a table (less than 1000 rows). In debug mode, if the error occured and I resume, I press F8 to see if the query can...
  7. TheBestOfMe

    Create a dynamic cross-table in a function

    I've done it with a dynamic table instead of a function and it works perfectly.
  8. TheBestOfMe

    automatically update record in database

    I think you can to this with triggers.
  9. TheBestOfMe

    Create a dynamic cross-table in a function

    Hi I want to create a cross table with dynamic column. This is quite easy in a stored procedure, but I need to make a inner join on it with another table. The only way was to put this in a function. But a function cannot exec a string or another stored procedure. I tried different syntax and I...
  10. TheBestOfMe

    Read a file on a different server

    you could also use the FSO object fso.OpenTextFile in example. you just have to specify the path like you would do on the network and have your IIS permission on the other computer to do want you want with the file.
  11. TheBestOfMe

    Input type file readonly?

    The file input is readonly for you to put a value, only the client can select a file, you can't spécify anything. This protect the client from a site who wants to graba file in a computer.
  12. TheBestOfMe

    document.write & Netscape

    Are they enemy 'cause I have troubles with them. I'm trying to take a textarea value and write it down in a frame below. Here is an example: function preview() { parent.preview.document.write('allo'); } If I try in IE it works perfectly, but it Netscape, nothing happen ans sometime the...
  13. TheBestOfMe

    FileSystemObject

    Set fs=Server.CreateObject("Scripting.FileSystemObject") set text_sort = fs.OpenTextFile("d:\www\...\liste.txt", 2, true) The syntax his not the error because even if I copy source code on msdn, the same error occurs (the script is running and running).
  14. TheBestOfMe

    FileSystemObject

    I made a cool script using FileSystemObject. It works perferctly on my development server and when I put it on the production server, it doesn't work. I can make a instance of the object, work with it (getFileName, getExtension, ...), but when I want to read or write a file, it doesn't work. I...
  15. TheBestOfMe

    Keep getting the alert...

    here's what I use to validate if a radio button is checked function radio_button_checker(radio) { // set var radio_choice to false var radio_choice = false; // Loop from zero to the one minus the number of radio button selections for (counter = 0; counter < radio.length; counter++) { //...
  16. TheBestOfMe

    write to opener (window)

    I used something like that and works well. The only problem is that Explorer doesn't like it, so it freezes. see the post : new option in a <select multiple> but not in the same window
  17. TheBestOfMe

    wallpaper question

    I just know that Explorer can put an image in background by rigth-clicking on yhe image and selecting put in background. I don't know how you'll do that.
  18. TheBestOfMe

    new option in a &lt;select multiple&gt; but not in the same window

    I open a pop-up window and I take a <select multiple> values and move them to another <select multiple> but the window that called my pop-up. the code works well under Netscape, but freeze my Explorer6. I use the same code as if I was moving my values between two <select> in the same window...
  19. TheBestOfMe

    include function

    this works perfectly. the only thing is that the include must be on top of all others function.
  20. TheBestOfMe

    include function

    I want to do something like this <script language=JavaScript> <!--#include file=&quot;funcion1.js&quot;--> <!--#include file=&quot;funcion2.js&quot;--> function TestSomething() { if ... } </script> this include method is good for asp page, but I don't think is...

Part and Inventory Search

Back
Top