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

    Associative Array Question

    I have a PHP Script that parses input from the user, then it selects a table from a database and loads the results into a memory for faster searching... Below is my code: $ingredientID = array(); if (!(empty($newQty)) || !(empty($newName))) { include_once("dbconn.inc"); global...
  2. PaulinKC

    Mod Rewrite ? on a Shared Host

    I am trying to rewrite some dynamic url's for a site that I manage because the url that gets generated looks something like this: index.php?page=rhinovations&content=Slideshow&type=bathroom&view=slide&album=2 and below is my mod rewrite statements in the .htaccess file: Options...
  3. PaulinKC

    CSS Issue with PHP Calendar Script.

    I have a calendar script that when ran, querys a database to see if any events exist, if any do, it should BOLD the font of the date associated with the date entry in the database. The code works, except for bolding of the font. I cannot figure out how to change the bolding of the font. Any...
  4. PaulinKC

    CSS Help! :)

    I am playing around with CSS and I am having a problem with a class not displaying properly in Firefox, but does display in IE 6 and 7 just fine. The site in question is -> http://www.infini-source.com/test_site/test.php The CSS file is -> http://www.infini-source.com/test_site/test.css The...
  5. PaulinKC

    Cisco 827 - Stealth Ports

    Is there a way to set all inbound ports to the dialer 1 interface as stealth and not closed? Right now, my router repsonds that all ports are closed and I would like for the router to not respond at all. I've looked in the interface's commands and couldn't find anything like that. Any ideas...
  6. PaulinKC

    Cisco 827 & SSH

    I have a Cisco 827 Router that currently does not port forward anything to the internal network. However, I do want to port forward to a linux box running SSH. How would I accomplish this? Any suggestions? Thanks, Paul
  7. PaulinKC

    Importing Excel Data into Access Database

    I am trying to find some information on how to import an excel sheet into an existing access database. I have VB.net 2003 Standard installed with Office 2003 Pro. What would be the easiest way to accomplish this? Any suggestions would greatly be appreciated!
  8. PaulinKC

    IADsGroup: Trying to add a user to a group but getting an error in th

    Hello... I am in the process of writing an application using VB.Net 2003 for my work that will batch process users from a CSV file. The problem that I am having is with this line of code: Imports ActiveDS Dim grp As IADsGroup grp =...
  9. PaulinKC

    Get a list of Active Directory Users that are currently logged on

    I can't seem to find what I am looking for... I need to be able to query Active Directory and get a list of users who are currently logged in along with the computer name that they are currently using. My company has some employees who can't follow simple instructions when the support tech is...
  10. PaulinKC

    CSS Image Positioning Question

    Hello, I have a small problem with a development page for my company. In Mozilla, the Infinite Logo appears correctly, but in IE 6 it does not. Here's the code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html> <head> <meta...
  11. PaulinKC

    Datagrid Hittest Question

    Ok I'm stumped now... I'm working on a vb.net app using the datagrid control that is bound to a dataset. I'm able to populate the datagrid with no problems... what I want to do now is have the user select a row in the datagrid that issues a sql select statement based on the row that is selected...
  12. PaulinKC

    UPDATE Problem...

    When issuing the following UPDATE cmd, it never updates, nor does it give me an error message... am I missing something? $query = &quot;UPDATE tblCustomers SET (companyName = '$companyName' AND customerEmailAddress = '$customerEmail' AND customerPhoneNum = '$customerPhonNum' AND customerFaxNum...
  13. PaulinKC

    2 Variables, how to display only one at a time?

    I've got a problem with a page that I'm trying to create. What I am wanting to do is have 2 links that display the results of a sql query based on which one was clicked. The first link would only display the current months news items and the second would display all news items. Here's my php...
  14. PaulinKC

    ADO Export To Excel Spreadsheet

    I've got a quick question regarding exporting an ADO recordset to an excel spreadsheet. The following code taken from msdn.microsoft.com exports the recordset to the spreadsheet, but I have yet to see an example of how to just create a new spreadsheet and then save the spreadsheet without ever...
  15. PaulinKC

    Mysql Select Problem

    Hello, I've got a little problem with a select statement using Mysql. I have a table named tblNews where I have a field named newsDate which stores the date the news article was created. I've used the following sql select statement to get all records where the month is the same as the current...
  16. PaulinKC

    CDO and Error Trapping problem from H***!!!!!

    Ok I am trying to trap a problem with the following code Public Sub doCDOmail() on error goto errorhandler With objcdo .Configuration = objCDOConfig .To = strTo .CC = strCC .BCC = strBCC .From = FromAddress .Subject = strSubject...
  17. PaulinKC

    GotFocu/LostFocus Question

    Visual Basic 6.0 Question: I know you can do numerous things when a control either gets focus or loses focus. What I am trying to accomplish should be rather simple, but I generally am trying to make things more complicated than it really turns out to be. What I want to do is instead of...
  18. PaulinKC

    Date Of Birth Query Question....

    I've got a problem that I can seem to figure out. Guess that's why I'm posting here huh? Anyway... here's my problem. I've got a table - tblEmployee that has various fields, one in particular is DOB, which is the employee's Date OF Birth in MM/DD/YYYY format. What I am wanting to do is run a...
  19. PaulinKC

    Datagrid, ADODC, SQL Strings - Error Trapping Nightmare From H*LL!!

    Private Sub DataGrid3_Click() On Error Goto DBErrorHandler Dim strSQL As String Dim ssql2 As String 'Check to see if we are going to display either the department or an individual employee If indiv = False Then 'Department was selected ssql2 = &quot;SELECT DepartName FROM...
  20. PaulinKC

    CR8.0 - Is there a way to Sort Records based on a Summarized Formula?

    Ok, I've got 3 formula fields, the first two just displays the field data for a particular field in the database. The 3rd field subtracts the first two and just returns a value. EX: FormulaTransactType = 3111 Total For 3111 = 2000.00 FormulaTransactType = 3112 Total For 3112 = 6000.00...

Part and Inventory Search

Back
Top