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?
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...
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...
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?
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?
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...
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...
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...
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)...
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 |...
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.
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.