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

    Scan Text file for Email addresses

    Hello, I have a database of newsletter subscribers (about 12000) and recently sent a newsletter out. I set up a pop3 account to catch all bounces and unsubscribe requests. Using Outlook XP I exported all these emails to a text file. I want to scan this text file for any emails addresses so I...
  2. puitar

    DB Design Help

    Hello, I build websites for a real estate company.eg www.prd.com.au The client wants to incorporate a "surrounding suburb" search when searching for properties. eg When a user searches for real estate within a suburb the search results will include all real estate in nearby suburbs as well...
  3. puitar

    order by - sorting

    Hello, I have a sql statement.. select * from Properties where PropertyType = 'Land' order by 'TotalPrice' The client wants to display certain records first eg (where agent = 'HeadOffice') and then display the rest. Can this be done with sql or do I have to do it with two seperate queries...
  4. puitar

    Codepages

    Hello, I'm building a system that needs to support Japanese. The code below shows how I can either.. 1. Response.write("JAPCHARACTERS") or 2. Response.write(rs("JAPDATABASEDATA")) I am unable to do both on the same page without changing the codepage. ps.. you may need a...
  5. puitar

    Japanese text -SQL Server to Email - jmail

    Hello, I have a SQL 2000 database that is configured to store japanese text. I am able to input via a form and output via asp japanese text successfully from the database. I am having problems using this japanese data to create dynamic emails using jmail version 3.7.0. Whenever I send...
  6. puitar

    Destroy ASP.NET cookies-how?

    Hello, My application uses ASP.NET cookies eg response.cookies("CartID").Value = 389 I need to be able to destroy this cookie so I can... if Request.Cookies("CartID") Is Nothing then 'create a new cart end if Thanks
  7. puitar

    Table is locking after ASP.NET query

    Hello, I have a ASP.NET app that accesses a MS Access 97 db. The table i'm accessing keeps locking!!! this is shitting me. Please help.
  8. puitar

    Dynamic ASP Menu?

    Greets, I've been looking around for code to generate web menus generated with asp and sql data with no luck... Can anyone point me in the right direction? I want the menu to act similar to a treeview control. I would like to write some asp code to allow clients to edit the menus themselves...
  9. puitar

    Functional Requirements Specs

    Greets, Where can I find a template for functional requirements specifications. There would have to be heaps around, I just can't find any. Thanks
  10. puitar

    for each Item in Request.Form---Sort Order Question

    Greets, I have a form with many tick boxes. Example names for these are... tckERD023_USQ_MOD1_0023, tckERT023_USQ_MWD1_0223.... When I use.. for each Item in Request.Form [boring code goes here] next the order the tick boxes are processed looks random. I want to look at each tick box...
  11. puitar

    Powerpoint object-conversion

    Greets, A client wants me to convert powerpoint slides into images via an asp page.. Where do I start? Are there any good examples/resources of doing this using an ActiveX object? pete:)
  12. puitar

    Construct this SQL statement using VBScript

    Greets, I want to construct a SQL statement that queries table called FAQ. eg.. tSQLStr = "select * from FAQ where keywords like '" & txtSearchString & "'" but... txtSearchString might contain a few words like... txtSearchString = "help bugger user interface&quot...
  13. puitar

    Print page in 'Landscape' , no header/footer - IE5+

    Greets, How do I force a web page to print in Landscape instead of Portrait? I wan't to get rid of headers and footers on the page as well. Thanks, p
  14. puitar

    Force Landscape Print with IE5+

    Greets, How do I force the browser to print a web page in Landscape? Also, how do i get rid of the header and footer? Thanks, p
  15. puitar

    Long text field not showing data

    Greets, Why does my data stored in a SQL Server 2000 'Long Text' field show '<Long Text>' instead of the proper data? This happens in my ASP pages as well as when I return all rows in the table view. p
  16. puitar

    Sound and Music in Web Pages

    Greets, I'm an ASP DB programmer and want to know if anyone has successfully made interactive pages that play sound and music. My interest is making cool pages that play different samples and tunes using vb events such as onClick() etc. I have seen it done well using flash but my strenth is...
  17. puitar

    Music and sound in Web pages

    Greets, I'm an ASP DB programmer and want to know if anyone has successfully made interactive pages that play sound and music. My interest is making cool pages that play different samples and tunes using vb events such as onClick() etc. I have seen it done well using flash but my strenth is...
  18. puitar

    Update but can't delete Access 97 DB record

    Greets, I get this error.... Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [Microsoft][ODBC Microsoft Access Driver] Cannot update. Database or object is read-only. /dcs/fpdb/Delete.asp, line 67 The Access 97 database is not read-only. I can edit and add records successfully through...
  19. puitar

    Convert + add all field data for insert into one field

    Greets, The following procedure is designed to insert a record into an audit table. I have to convert some of the fields to varchar type so I can add them together to form one big string to insert into the DATA field. I get an error message if I don't. The problem is that when I convert the...

Part and Inventory Search

Back
Top