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 bkrike 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: WebNickson
  • Content: Threads
  • Order by date
  1. WebNickson

    Retrieving the address list from Exchange

    Is it possible to retrieve the address list of a particular user from his acct in the Exchange server using ASP? rgds, Nickson
  2. WebNickson

    Table Design Qn

    Hi, I have a Form that comprises of abt 50 entries in the same page. Most of the entries can only have 1 value except for 3 entries which can have multiple values. There is no constraints imposed on each other for these 3 entries. Under such circumstances, how should the database tables to...
  3. WebNickson

    Putting values into an Excel file

    Hi, Basically, I need to retrieve the values from my database and put these values into a Excel file (a template file). After completion of the generation, I need to save the file and let the user retrieve it. How best should I accomplish the above? If VBA is used, wouldn't there be problems...
  4. WebNickson

    Always On Top Button

    Hi, Can someone teach me how to do a "Always On Top Button" using the simplest code possible? I only need it to work in IE. Thx in advance. rgds, Nickson
  5. WebNickson

    Always On Top Button

    HI, Can someone teach me how to do a "Always On Top Button" using the simplest code possible? I only need it to work in IE. Thx in advance. rgds, Nickson
  6. WebNickson

    Export to Excel Problem

    Hi, I've created a web page that exports the data directly to Excel using "Response.ContentType = "application/vnd.ms-excel". But it does not open in machines with IE 5.5. I've tried on machines with IE 6 and they work perfectly! For IE 5.5, the screen just appears blank and it...
  7. WebNickson

    Capturing a Tab Keystroke

    Hi, Can someone show me how to capture a Tab Keystroke in an input box? I tried the following code but it's not working... if (window.event.keyCode == 09) {alert('That\'s the TAB key')}; rgds, Nickson
  8. WebNickson

    DBLink Question

    I currently assess data from one database to another db located on another server using dblink. My question is 1) How long does Oracle keep the dblink connection "alive" since the first connection? 2) If ODBC connection is used to execute the query using the dblink, will the ODBC...
  9. WebNickson

    Poor performance calling a stored procedure

    Hi, I've a performance problem when calling an oracle stored procedure for a record insertion. Below is my code : For n = 1 to 5 ...Some other code... Set Command1 = Server.CreateObject("ADODB.Command") With Command1 .ActiveConnection = CONN_STRING .CommandText =...
  10. WebNickson

    Problem when passing null values to command parameters

    I have created a command object to call an SP. My parameters consist of integers, strings and dates types. It is possible that the values I pass to is null or an empty string. This seems to give error to my Command object even though I have routines in the SP to handle null or empty strings...
  11. WebNickson

    Calling Oracle SP Using ADO Command

    I always seem to have lots of problem calling my Oracle Stored Procedures using the ADO Command. There is always some error and it's so difficult to debug because of the ambiguous error msg! I always read lots of talk that it is good to use stored procedures because it is fast and so on and so...
  12. WebNickson

    Repeating actions in source code

    I am trying to create a command to repeat my code insertion steps at specific locations in my source code in dreamweaver. But I realise the command seems to be limited to actions in the design mode only. Wonder if someone could teach me how to repeat my code insertion steps at specific...
  13. WebNickson

    PL/SQL that returns a Recordset

    Can anyone show me a simple sample as to how I can create a PL/SQL that returns a recordset. E.g. The PL/SQL should return the result from Select id, name from employee where name like 'A%' rgds, Nickson
  14. WebNickson

    Web Page Editor for novice users

    Do you guys think DW is good even for novice users? I have users, who are quite computer illiterate and needs simple to use web page editor to update the web page content. Some time ago, I introduced and bought DW for them and did send them to DW course as well. After like 6 mths, they feedback...
  15. WebNickson

    Smart Window Resizing

    Has anyone created a javascript that resizes the window according to the content page size width and height? My criteria are : 1) There is a preset min. and max. width and height limit. 2) The script can detect on the fly the table width and height and set the window to slightly bigger than...
  16. WebNickson

    Customising Dreamweaver MX

    Hmm... I've been thinking of customising my DW MX to make faster and hiding away unwanted info but am not sure how to do it. Here's what i would like to do : 1) Change the Reference selection to just ASP and Javascript. 2) Add my own codes to the generated SQL statements for Oracle date...
  17. WebNickson

    Moving to an anchor in the parent window from a child window

    Hi, I'm trying to move to an anchor in my parent window using a function called in the child window. I tried the following code but it just returned my child window in the parent window. parent.window.location.href='#Instruction1'; Please help! My hair is all white alrdy (lol) rgds, Nickson

Part and Inventory Search

Back
Top