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

  • Users: xenology
  • Content: Threads
  • Order by date
  1. xenology

    Select on multiple servers

    I'm guessing I'm not searching on the right keywords but I can't find any information on how to accomplish this. I'd appreciate any point in the right direction or links to any documents. I have a production POSTGRES database on one server and a development version on another. What/how do I...
  2. xenology

    location.reload problem

    Problem: why does location.reload not work unless there is an alert call right before the statement? background on my page: a lot of extensive code that i don't want to make you sort through...ultimately, the page loads a table of work queue items. at the top is are drop down list boxes to...
  3. xenology

    Line spacing

    I'm new to CSS and have inherited a PHP with CSS app. The page appears fine in Firefox and Safari but has gaps between every line in IE. Can anyone offer suggestions on what to look for in the CSS file to correct the display in IE or what I might need to add to fix the problem? Thanks for any...
  4. xenology

    select only numbers from field

    Is there a postgres function I can use in a SELECT statement that will strip out non-numeric characters from a field? I only want numbers from the field returned. i.e. say its a phone number field. (555)123-4567 should return 5551234567 and 1-800-petmeds would return 1800 Thanks in advance!
  5. xenology

    help in debugging querries

    How do you display messages while a query is running? For example, how would you do the "print" statement below? select username from users where active=true; if found then print 'inside the if statement'; end if; This is useful when debugging functions and you have multiple conditional...
  6. xenology

    Where scrolled at when user clicked?

    I have a div tag set to scrollable (overflow:auto). In the div tag i have a table. The div area is set big enough to view 10 rows of the table and the table has 100 rows (each with an anchor). Clicking a cell in the table carries you to another page where the user can enter or alter data that...
  7. xenology

    Conditionally test then insert or update

    First and foremost - thanks for any help offered (I'm a newbie to PostgreSQL and PHP but proficient in SQL and .NET)! My question: Most appropriate way (and how) to conditionally test for records existence and then insert or update and delete. The App: a calendar reservation system. Imagine...
  8. xenology

    Append From but skip 1st row

    I have my table structure with column names I use. I want to import (Append From) a tab delimited text file but the text file has their column names in the first row. Is there a way to tell Append From file.txt For "Recno() <> 1" Delimited With Tab ? TIA! ~xeno
  9. xenology

    How to change Span tag color on client side

    I build a large 'spreadshet' style grid and dynamically create textboxes for number entry and span tag's for row and column totals. I have it updating the span tag's with the new total every time the number in the textbox changes through an added onblur attribute. My question is, how can i...
  10. xenology

    Can I tell when one looks at my Calendar?

    Using Microsoft Outlook 2003 edition. By default, everyone's calendar in the company is shared for scheduling meetings and such. I feel one individual is continually monitoring my activity through accessing/viewing my calendar. Is there anything out there that will tell me who/how often...
  11. xenology

    looking for sum grid row concept

    just looking for any ideas on a direction to start in on what i am needing to do. ASP page with two frames. top frame has a label for total approved. bottom frame has a DataGrid control populated through a dataset with some template columns for checkboxes to approve or deny and a textbox to...
  12. xenology

    Listbox selectedvalue is nothing

    I have four listbox controls on my page. Each is bound to a dataset (listbox.datasource to the dataset, listbox.datatextfield to dataset.column, listbox.datavaluefield to dataset.keycolumn). In form load I set the parameter to the data adapter, fill the dataset, and listbox.databind. When...
  13. xenology

    Keep button(s) from printing

    I have a simple asp.net form that allows the user to update a couple of fields. one of the buttons is a print button (required by client - they don't like the toolbar print button) so I have at the top of page_load btnPrint.Attributes.Add("onclick", "window.print();") My question is, how can...
  14. xenology

    vfp6 and 'as' in select stmt

    Using vfp6 and modifing an old program. I would like to use an IIF to determine the name of the returned field in the select statement. Is this possible? example: select first, last, dob as iif(year(dob)<1980,"Young","Old") from member Of course, in this example, there would be four columns in...
  15. xenology

    Image when size by Percentage not showing

    I have an image control on an asp page that is not behaving correctly. When I specify a size by pixel, it shows as that size, however, if I specify as a percentage, there's no error, the page displays (all other info) but the image itself does not show. I can view source, copy and paste the...
  16. xenology

    Display different URL?

    Is there a way to display a different URL in the web addess bar instead of the actual page the user is on? For example, they may actually be on http://www.mysite.com/admin/usermaint.htm but I want the address in the toolbar to display http://www.mysite.com FYI - so they will always bookmark...
  17. xenology

    Changing displayed URL

    Is there a way to display a different URL in the web addess bar instead of the actual page the user is on? For example, they may actually be on http://www.mysite.com/admin/usermaint.asp but I want the address in the toolbar to display http://www.mysite.com FYI - so they will always bookmark...
  18. xenology

    ?web user control? on multiple pages

    Maybe I'm going about this the wrong way so please feel free to offer a better choice instead of solution... I need a custom toolbar on several pages. The toolbar will have the same functionality on every page but handle data specific to that page. i.e. btnSave on person.aspx will need to...
  19. xenology

    Option to View and Save the same file

    I have some pdf and xls files that I will post to my intranet. I want to give the user two buttons for each file. One button would display the popup Save As window so the user can download the file and the other button would display the file in the browser window. What's the easiest way to...
  20. xenology

    Path for #Include File

    I have myFunctions.asp in the root of folder. Several pages need to include this file. Some of the pages are in the root directory, some are in sub-directories two or three levels deep. <!--#include file=&quot;myFunctions.asp&quot;--> and <!--#include file=&quot;..\myFunctions.asp&quot;--> and...

Part and Inventory Search

Back
Top