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

    ASP to PPT

    Quick question for you guys: Do you know of any software plug-in, add-on, or whatever that will create a dynamically generated powerpoint presentation from a dynamically generated asp page?
  2. TonyRosen

    Values from Functions

    The Code: function getprojectinfo(pn,pd,yr,var) call opendb() strsql = "select pid," & var & " from pbr where projectnumber = '" & pn & "' and period = '" & pd & "' and year = '" & yr & "';" 'response.write strsql set objrs = objconn.execute(strsql) if objrs.eof or objrs.bof then strsql...
  3. TonyRosen

    CreateObject - Page Cannot be Displayed

    Okay ... I have an ASP which is creating a page with information pulled from an SQL database. Within this page, there are scripts (via an include) that generates a PPT and saves the PPT file to the server. When I run the page without the PPT scripts, the page loads in one second .... when I...
  4. TonyRosen

    Excel VBA: Check When Cell Changes

    How do I use VBA etc.. to determine when a specific cell changes and then run a macro if it does?
  5. TonyRosen

    Read Word From Access?

    I have a MSWord document that has a table with 8 rows and 2 columns. The first column lists questions (1 per row). The second column is answered either "yes" or "no". Is there a way to retrieve that "yes" or "no" from MSAccess using VBA?
  6. TonyRosen

    Error Creating a SQL with ASP

    I create a table: strSQL = "CREATE TABLE test (fieldname(50) not null)" Set objRS = objConn.Execute(strSQL) and then I receive this error: [Microsoft][ODBC SQL Server Driver][SQL Server]There is already an object named 'test' in the database. On my "Set objRS...." line number Any ideas?
  7. TonyRosen

    Query Was Empty?

    whenever I use: ------------------------------ $query = mysql_query("INSERT INTO my_register (`credit`, `date_stamp`, `number`, `payee`, `amount`, `description`, `signatory`, `balance`) VALUES ('$credit', '$date', '$number', '$payee', '$amount', '$description', '$signatory', '$new_balance')")...
  8. TonyRosen

    Now that I feel like a complete idiot

    If my database has 1 row, everything is flawless. If it has more than 1 row, I get errors. Basically, I want to open my database, select the LAST entered row (highest "id"), and use that id ... What I have: --------------------------------------- $query = "SELECT * FROM my_register ORDER BY...
  9. TonyRosen

    Adding Two Variables Together

    Sorry in advance, but I am very new to PHP ... Okay, I have two variables: $var1 = $_POST['form_var1']; $var2 = pulls a number from a MySQL Database. The variables are correct: $var1 = 1,410.00 $var2 = 1,476.10 However, when I add them: $var_sum = ($var1 + $var2) My answer ALWAYS prints out...
  10. TonyRosen

    "Paste" At Next Cell?

    I have a workbook that I'm opening and copying a worksheet out of ... I have a workbook that I'm pasting that information into ... If the next available Row is row 9, how do I get the VBA to search for "row 10" (in this instance, it changes constantly) and paste into the workbook starting at...
  11. TonyRosen

    GroupWise address book

    Does anybody know of good resources to research through to pull our addressbook into our already existing Intranet application using ASP?
  12. TonyRosen

    ASP Log In Using Novell Network Login?

    Has anyone actually ever used the "Novell" network login to log into an ASP application?
  13. TonyRosen

    NetWare and ASP?

    Is it possible to create a log-in script to check the Novel Network login for access?
  14. TonyRosen

    EXCEL, SQL, and ASP

    Is there a way for my users to go to a web app ... and, "upload" their Excel spreadsheets into my SQL database? I.E. - Contacts Information (name, address, etc)...
  15. TonyRosen

    Argh ... Next SQL/ASP dilema

    I have an SQL database with a table set up similar to: id | identifier | activityNumber | locationID | activity_date The locationID field can repeat, so it is possible to have something like: 1 | 200 | 1 | 3 | 4/11/2004 .... 5 | 200 | 3 | 3 | 4/15/2004 6 | 200 | 2 | 2 | 4/15/2004 .... 10 |...
  16. TonyRosen

    Temp Tables and Such

    I need to create a temp table, however, I also need to check if it exists first ... For Example ... If #this_table exists, just update the thing ... Else, create #this_table, and then update it. I know this is easy, but I just can't think it through for some reason ... it's giving me fits.
  17. TonyRosen

    Printing Column Names?

    I have a SQL database with multiple tables in it. Is there a way to view all the tables with their column names so that I can print the column names?
  18. TonyRosen

    Error: Command text was not set for the command object.

    I am simply inserting some form data in an SQL database. Every other page within the application works except for this one. I've moved my connection string around and still receive the error: "Command text was not set for the command object." Which is hokey, because it is ... as far as I can...
  19. TonyRosen

    Check In/Out?

    I am writing an ASP application with an SQL database. Basically, I need to know if there's a way for the users to check a file in/out? . . . more specifically, a way to ensure it's checked back in even if the user who last had it checked out didn't check it back in. For example: User(1) wishes...
  20. TonyRosen

    SELECT and Show/Hide

    I've searched all day for a workable solution to this, but alas, nothing . . . I have a SELECT dropdown in my form which is dynamically generated with the "value" tag being a number between 1-99. If the user selects "1" then I want to show Layer1, if the user selects...

Part and Inventory Search

Back
Top