Ask a Question
Tech Areas
Business Management (27)
Database (942)
Development (654)
Firewalls (18)
Industry Specific (17)
Internet / Email (1327)
Network Management (0)
Office / Productivity (6964)
OS (9363)
Page Layout (1)
Photos / Graphics (36)
Security (0)
Server Software (1358)
System Utilities (38)
Voice Recognition (0)
Web Development (866)
Latest Software Jobs
Hp Opportunities for external candidates Opportunities for current HP employees 1 day ago
NORTHROP GRUMMAN - Fort Hood, TX Northrop Grumman Information Systems sector is seeking a Software Test 1 day ago
Washington, DC Chicago IL or 60607 Careers by Category - Select a Job Category - Advanced > 1 day ago
Software

Welcome! to the Software area! Please post your questions or search now!

Subscribe to the Software forum
2009
0 Responses
0
0
I have EPO 3.6 and Virusscan 8.5i on the server. Each month I have to run the Top Ten scans for machines and users. How can I set up an automatic email to the users that their machine is in the Top Ten list? Any help would save some time. Keith Johnson
Subscribe:
2009
Guest
0 Responses
0
0
There will be somebody from our PC help looking into our age old problem with procedures not saving. Not sure how many times you guys have been stung but it will be related to how many procedures you write or adjust that have Lotus Freelance graphics sketches in them.. I tried to put 2 new numbers in a freelance drawing in a procedure that was in "R" drive & got a message saying that " / drive is full or you have too many files open…free up some space on on / drive or close some files. The message was nearly the same as the one we get when trying to save to "C" but the PC doesen't know "R" drive so it couldn't work out what to call it.
Subscribe:
2009
Guest
0 Responses
0
0
Hi, Can any one tell me how to add external jars in Weblogic ?I am getting error like following: java.lang.NoClassDefFoundError: com/lowagie/text/Document at FirstServlet.insertParagrph(Ljava.lang.String;)V(FirstServlet.java:31) at FirstServlet.doGet(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(FirstServlet.java:22) at javax.servlet.http.HttpServlet.service(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(HttpServlet.java:853) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run()Ljava.lang.Object;(ServletStubImpl.java:996) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Lweblogic.servlet.internal.FilterChainImpl;)V(ServletStubImpl.java:419) at weblogic.servlet.internal.ServletStubImpl.invok...
Subscribe:
2009
0 Responses
0
0
Apple OS X, v10.5.6:; MS OFFICE 2004 for MAC: WORD v.11.5.3: LOST top words like FILE, VIEW! How to restore? When boot in WORD or a specific WORD doc file I no longer get key words to right of WORD! Only: Font, Arrow Style, Line Style, Dash Style! Can't click on File, View, etc.!!! How to restore? peter@pkassoc.com
Subscribe:
2009
0 Responses
0
0
I have a Microsoft Publisher Question.... I'm making an e-newsletter in Publisher and when I send it out it makes some of the text an image instead of just text.... why does it make SOME of the text images and some not? And how do I fix it? This messes up the quality If anyone has any suggestions that would be great! Thanks!!
Subscribe:
2009
0 Responses
0
0
Hi I tried installing this hotfix but I got this error on MSCIS.exe. Can anybody help me? Faulting application MSCIS.exe, version 3.0.1512.0, faulting module ntdll.dll, version 5.2.3790.3959, fault address 0x0004afb2.
Subscribe:
2008
0 Responses
0
0
For more information on GoldMine CRM go to www.alloutcrm.com
Subscribe:
2008
Guest
0 Responses
0
0
I received the following error suddently and did not know how to track the error and resolved the issue. "The expression on load you entered as the event settings produced the following error: Invalid outside procedure. " Please advise.
Subscribe:
2008
Guest
0 Responses
0
0
if I do not know if a variable $var is set, is it acceptable to use if ((isset($var)) && ($var==3)) as a conditional? obviously the second criterion will throw an error if the first one is false, but it appears that PHP stops evaluating the conditional once a criterion fails, so that the second part will never be evaluated when the first part is false. Is it a bad idea to do this?
Subscribe:
2008
Guest
0 Responses
0
0
I need for my php variables to be place in my html link that i email to my yahoo account. I need the PHP variables in: href ="http://www.BuyOrRentMyHome.com/Banner_Video_Edit.swf?xjcy=$Banner_or_Video&wqbk=$BORMH&dyfm=$Random&sgrv=$email" to change to: href ="http://www.BuyOrRentMyHome.com/Banner_Video_Edit.swf?xjcy=Videos&wqbk=3&dyfm=1234567&sgrv=leronj@yahoo.com" Code Snippet: <code>$Banner_or_Video = "Videos"; $BORMH = 3; $Random = 1234567; $email = "leronj@yahoo.com"; $mailer->IsHTML(true); $mailer->Body = '<html> <head> </head> <body> <center> <img src ="http://www.buyorrentmyhome.com/Button_Example.png" usemap ="#planetmap" /> <map id ="planetmap" name="planetmap"> <area shape ="rect" coords ="96,129,197,147" href ="http://www.BuyOrRentMyHome.com/Banner_Video_Edit.swf?xjcy=$Banner_or_Video&wqbk=$BORMH&dyfm=$Random&sgrv=$email" target ="_blank"/> </map> </center> </body> </html>'; </code>
Subscribe:
2008
Guest
0 Responses
0
0
I am working on a CMS system for a client, and I need to scan a page and pull out all the links and dump them into an array. Assuming I have content like this: $PageContent = <<<EOT <a href="http://www.espn.com" target="_blank" title=""  class="blah extractme">ESPN</a> <a href="http://www.cnn.com" title=""  target="_parent" class="extractme" title="test" >CNN</a> <a href="http://www.espn.com" target="_blank" title=""  class="blah extractme">ESPN</a> <a href="http://www.movies.com" title=""  class="monkey">Movies</a> EOT; I want to pull out all the link that have a class of extractme and dump them all into an array that would look like this: original ='<a href="http://www.cnn.com" title="test"  target="_parent" class="extractme">CNN</a>' link='http://www.cnn.com' target='_parent' title='test' linktext='CNN' onclick='' (If there is an onclick event) I would like for it to not be case sensitive. The only one it wouldn't pull out in the above is the one with class="monkey"
Subscribe:
2008
Guest
0 Responses
0
0
Hi guys hope u r all well :>) Guys i have a perl script called 'sandbox.pl' Currently i ssh into my linux box and run it. When I run it, it asks me to input a name.........I do and press enter, and the script is done. What id like to do is the following......... 1) Add a link on my web site to the script. 2) When I click on the link, it goes to a page with a textbox where I can enter in the value I would as if im at the command line 3) Once i entered that value in the textbox, I click on a submit button,  it execues the perl script, but id like feedback in the php page to say it has been successful. I have attached the script below. Any help greatly appreciated. Code Snippet: <code>#!/usr/bin/perl use File::Copy; ##### ============================== Define variables. my $menu2_sandbox_default_name = 'menu2_sandbox_'; my $menu2_sandbox_default_output_suffix = '_outputiframe.php'; my $menu2_sandbox_sandbox_dir = '/var/www/html/simeswiki/s...
Subscribe:
2008
Guest
0 Responses
0
0
Looking for an easy to use, good quality Flash /swf + flv) downloader, thinking of a right-click solution which extracts all files/container to a defined local storage.
Subscribe:
2008
Guest
0 Responses
0
0
I have a simple Javascript login check that is giving me an error when it comes to checking to make sure a user inputs the same password twice when registering on my site.   I think I need another set of eyes to help me out, I see nothing wrong with the javascript.  Code is attache - Thanks for your help! Code Snippet: <code>----------------Registration Form Code---------------------- <form method="POST" name="msgform" action="<?php echo $editFormAction; ?>" "return checkForm()"> <br> </p> <p align="center" class="pageTitle"><h2><font color="#333366">Create Your Account</font></h2></p> <p> * Fields are required </p> <table border="0" align="center" cellpadding="1" cellspacing="1" class=""> <tr valign="baseline"> <td align="right" nowrap class="colText">* Full Name:</td> <td class="rowText"> </td> </tr> <tr valign="baseline"> <td align="right" nowrap class="colT...
Subscribe:
2008
Guest
0 Responses
0
0
There are many good videos in different formats on image bank iStockphoto. I plan to use some of them for banners. So my question is how to reduce the size (width, height) to get a good quality Flash or FLV format file? E.g. original is AVI (5 x 5cm) and target file should be FLV (2 x 2cm). What's the best tool to do this?
Subscribe:
2008
Guest
0 Responses
0
0
Hi. I'm moving one of my websites over to my new server from an old server. I'm getting a lot of errors related to "undefined variables" For example if ( $something == 1 ) do this; This brings an error now where it wouldn't have on the old server. under some scenarios $something has a value, but often it doesn't. This didn't product an error on the old system. I'd rather just allow this behavior now, rather than go through and change the code (which I didn't write)
Subscribe:
2008
Guest
0 Responses
0
0
I have a webpage where at the top of the page I have several buttons that link to relevent Spry tabs created in Dreamweaver... The Spry Tabs have one default loaded with content and the others load the content via iframe where required. The buttons at the top of the page use an anchor to position the page and then the usual type of script to open the tabs. The problem I am having is that when I use the buttons to access the tabs, the tab will open, but the content doesn't load. If I open all the tabs first and load the content the buttons then work. What I need is some way of when I click a button it opens the tab and loads the content. Can any of you  Experts help me please. An example of the code I am using for the button is: <a href="#place1" onClick="TabbedPanels2.showPanel(1); return false;"> An example of the tabbed panel is: <li class="TabbedPanelsTab" tabindex="0" onClick="getPage('thirdFrame', 'constitution.htm')">Constitution</li> And content is... <iframe name="thirdF...
Subscribe:
2008
Guest
0 Responses
0
0
I have an array that looks like this: $Products[] = array(                   'productname' => $result->fields['name'],                   'sku' => $result->fields['sku'],                   'productid' => $result->fields['id'],                   'totalitems' => 0,                   'totalcost' => 0             ); There are about 12 products in the array. I am running a query on a database, wherre it loops through recordsets, and I want to update the totalitems and totalcost in the array. So every time I loop through a set I can make totalitems = totalitems + X but I can't figure out how to do it. Thanks!
Subscribe:
2008
Guest
0 Responses
0
0
Ok, I'm trying to automatically send emails upon registration and I'm using the following snipet of code to pull the body from a text file and load it for email.  The text file is loaded with variables from the page it's being sent from, but they just post as $variable when someone recieves the email on the other side.  Even \" show up as \" which makes me believe that it's not treating the file as php content at all. $body1 = file_get_contents('emails/email1.txt'); mail($email, "Welcome to $sitename!", "$body1", "From: $email2");
Subscribe:
2008
Guest
0 Responses
0
0
I am trying this in Ajax: $onClick = ' onClick="toggleCells(this, \'white\'); But when the page reloads the color is no longer white. What am i not doing right?
Subscribe: