Search Results

Showing results 1 to 40 of 192
Search took 0.02 seconds.
Search: Posts Made By: stupidenator
Forum: Visual Basic 4 / 5 / 6 Oct 14th, 2008
Replies: 0
Views: 626
Posted By stupidenator
Hey everyone,

I am aware that if you change the file extension on .docx files to .zip, then you can open it up. I am also aware that if you save images to a word document, it gets saved within...
Forum: Visual Basic 4 / 5 / 6 Sep 29th, 2008
Replies: 0
Views: 930
Posted By stupidenator
Hey everyone,

I am wondering if it is possible to open a word template in the open document. I am running Word 2007 and I have created a new Ribbon tab with a bunch of macros on it and basically,...
Forum: Visual Basic 4 / 5 / 6 Sep 10th, 2008
Replies: 2
Views: 1,514
Posted By stupidenator
Thanks for your help! I will give that a try
Forum: Visual Basic 4 / 5 / 6 Sep 9th, 2008
Replies: 2
Views: 1,514
Posted By stupidenator
Hello Everyone,

I am having some trouble with a VBA application I am writing for work. I am using ADODB to connect to an Oracle database and return and I want to return a 2-D array from my...
Forum: Visual Basic 4 / 5 / 6 Aug 12th, 2008
Replies: 0
Views: 957
Posted By stupidenator
Hi everyone,

Is it possible to create a Microsoft Word macro that will open up a VB GUI that will have a number of form fields. Once you fill out the forms, then the macro will use that...
Forum: Computer Science Mar 23rd, 2008
Replies: 3
Views: 980
Posted By stupidenator
Hello,

I am writing a programming language in c++ for a class and I am having a problem understanding how to do some of it. The language is based on Forth, and you are allowed to redefine how any...
Forum: C Mar 6th, 2008
Replies: 6
Views: 634
Posted By stupidenator
If you want to run it as a separate process, you have to call fork

http://www.csl.mtu.edu/cs4411/www/NOTES/process/fork/create.html
Forum: C Mar 6th, 2008
Replies: 6
Views: 634
Posted By stupidenator
Using execve, the code executes the shell command 'echo' and passes to it the arguments "hello" and "world".
This program demonstrates how you can execute command-line commands from inside of a...
Forum: C Mar 4th, 2008
Replies: 5
Views: 457
Posted By stupidenator
http://www.cprogramming.com/tutorial/cfileio.html
Forum: PHP Jan 25th, 2008
Replies: 7
Views: 1,008
Posted By stupidenator
You change these settings using CSS (Cascading Style Sheets).
Forum: HTML and CSS Jan 25th, 2008
Replies: 1
Views: 451
Posted By stupidenator
I believe you are referring to a Content Management System. This should help: http://en.wikipedia.org/wiki/Content_management_system
Forum: Perl Jan 25th, 2008
Replies: 4
Views: 1,114
Posted By stupidenator
Perl would be a very good language to do this in. I worked on a school project last semester where I grabbed news articles off of the internet and stored them into a database so that another program...
Forum: Ruby Jan 2nd, 2008
Replies: 3
Views: 3,120
Posted By stupidenator
Eruder,

I believe that is the problem. I added a column called id and set it as the primary key and now it seems to work fine. Thank you for your help.
Forum: Ruby Dec 31st, 2007
Replies: 3
Views: 3,120
Posted By stupidenator
Hey everyone,

I am new to Ruby on Rails and I am having a problem that I can't seem to figure out. I have a mysql database that I created and I have created a model for it. I have did not create...
Forum: Perl Oct 5th, 2007
Replies: 2
Views: 1,927
Posted By stupidenator
Hello,
I am working on a project and I need to go to multiple news web sites and get articles pertaining to stock numbers. My ideas so far have been to download an RSS file from somewhere like...
Forum: PHP Jun 25th, 2007
Replies: 8
Views: 1,091
Posted By stupidenator
RSS allow users to 'subscribe' to your site. Basically, if you create an RSS feed for your site, I can go to your site, click on the RSS link, and add it to Google Reader or some other feed reader...
Forum: Computer Science Jun 20th, 2007
Replies: 1
Views: 2,682
Posted By stupidenator
I am not sure if it is possible, but I am creating a SAS report using ODS HTML and I am saving it as a .xls so it is opened with Microsoft Excel. I am wondering if it is possible to program in the...
Forum: Linux Servers and Apache Jun 8th, 2007
Replies: 2
Views: 3,772
Posted By stupidenator
I actually just found the problem. I am an idiot! I forgot that I had to call it like this:

ServerRoot/bin/apachectl start

I was in the wrong directory.

Thanks for the help!

--
Nick
Forum: Linux Servers and Apache Jun 7th, 2007
Replies: 2
Views: 3,772
Posted By stupidenator
Hi everyone,

I am taking a web programming class and for one of the assignments, we have to install and configure an Apache web server on a certain port. I have downloaded apache, customized the...
Forum: HTML and CSS Jun 6th, 2007
Replies: 2
Views: 2,541
Posted By stupidenator
I'm pretty sure they were wanting to know how to do this on their own web site... not here.
Forum: Perl Jun 5th, 2007
Replies: 0
Views: 1,193
Posted By stupidenator
Hi everyone,

I am trying to brainstorm some cool topics related to Perl that I can use to give a lightning talk for my Programming on the Internet class. Does anybody have any ideas? Thanks for...
Forum: HTML and CSS May 29th, 2007
Replies: 1
Solved: Logo Help
Views: 802
Posted By stupidenator
<link rel="shortcut icon" href="images/favicon.ico" />

I believe that the image has to be '.ico. format.

Hope this helps.

EDIT:
I forgot to mention... This goes in the <head></head> tags
...
Forum: Perl May 25th, 2007
Replies: 3
Views: 6,185
Posted By stupidenator
First of all, I would like to thank you for that link. I have the format working perfectly. My new problem comes with the sendmail function however. If I use the write; function, I can print my data...
Forum: Perl May 25th, 2007
Replies: 3
Views: 6,185
Posted By stupidenator
Hello,

I am working on an assignment for my Perl class where my script goes out to a web site, extracts some information and is supposed to email the relevant information to an email address...
Forum: Perl May 18th, 2007
Replies: 1
Views: 1,133
Posted By stupidenator
Hello,

I am currently taking a class on Perl at College, but I have found a use for it at my job. The Unix box I am currently working on has Perl 5.005_2 loaded on it. Does this version of per...
Forum: Computer Science May 16th, 2007
Replies: 0
Views: 2,702
Posted By stupidenator
Hello,
I am writing a SAS program that retrieves data from an Oracle database and sorts it into multiple SAS datasets. I have been asked to output the datasets in a single Excel workbook with the...
Forum: HTML and CSS May 10th, 2007
Replies: 7
Views: 2,568
Posted By stupidenator
You can call the css like this:

<link rel="stylesheet" href="../css_directory/style.css" />

Each time you put " ../ " in there, it goes up to that folders parent directory. Once you get to the...
Forum: Windows NT / 2000 / XP May 10th, 2007
Replies: 27
Views: 58,887
Posted By stupidenator
Did this same issue happen AGAIN this last Tuesday to anyone? Because it happened again to me.
Forum: Windows NT / 2000 / XP May 9th, 2007
Replies: 1
Views: 19,512
Posted By stupidenator
I have had the same thing happen on my Sony Vaio Laptop running Windows XP. It happened about a month ago. I followed this tutorial:

http://www.daniweb.com/techtalkforums/thread82.html

I...
Forum: HTML and CSS May 9th, 2007
Replies: 2
Views: 2,645
Posted By stupidenator
table { border-color: #cc3300; }
td { border-color: #cc3300; }

or you can combine the two commands into one:

table { border: 1px dashed #cc3300; }

Hope this helps.

Nick
Forum: Windows NT / 2000 / XP May 8th, 2007
Replies: 16
Views: 12,042
Posted By stupidenator
Assuming the laptop has USB ports on it, you may be able to load the program from www.loginrecovery.com (http://loginrecovery.com/) onto a flash drive, and then boot from the flash drive to run this...
Forum: HTML and CSS May 7th, 2007
Replies: 8
how
Views: 1,644
Posted By stupidenator
Google Offers a custom search for free.

http://google.com/coop/cse/
Forum: HTML and CSS Apr 27th, 2007
Replies: 2
Views: 4,186
Posted By stupidenator
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="assets/style.css" />
<style...
Forum: Database Design Apr 18th, 2007
Replies: 2
Views: 9,180
Posted By stupidenator
That makes sense. Thanks for the input.
Forum: ASP.NET Apr 18th, 2007
Replies: 2
Views: 1,206
Posted By stupidenator
Hi everyone,

I am not sure if this is the right forum for this, but I have a question about Microsoft Sharepoint that I cannot seem to find.

I am wondering if it is possible, for example, to...
Forum: MySQL Apr 17th, 2007
Replies: 1
Views: 1,470
Posted By stupidenator
Here's an example of how to use php to query a mysql database:

<html>
<head>
</head>
<body>
<?php

$dbhost = "localhost"; // may be something else
$dbuser = "user"; // enter your db username
Forum: Database Design Apr 13th, 2007
Replies: 2
Views: 9,180
Posted By stupidenator
Hi everyone,

What is the difference between UNIQUE and DISTINCT? It seems that they do the same thing.

Thanks,

Nick
Forum: MySQL Apr 13th, 2007
Replies: 1
Views: 2,900
Posted By stupidenator
SELECT Count(dsd.price) Total
, dsd.reporting_date
, dsd.reporting_state_type
, dsd.requisition_id Order_id
, round(sum(decode(dsd.reporting_state_type,'SHIPMENT',dsd.price, 0)) -...
Forum: Windows NT / 2000 / XP Apr 13th, 2007
Replies: 27
Views: 58,887
Posted By stupidenator
I tried your method again and this time it seemed to work this time. Thank you.

By the way... Is it known what is causing this? Is it a virus?

Thanks for all the help!
Forum: Windows NT / 2000 / XP Apr 12th, 2007
Replies: 27
Views: 58,887
Posted By stupidenator
What was posted here didn't seem to work on my computer.

I just ended up going to www.windowsupdate.com. On the left side of the screen, there is a "change settings" link. I went there and at the...
Showing results 1 to 40 of 192

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC