Forum: Web Developers' Lounge Apr 12th, 2007 |
| Replies: 3 Views: 1,367 |
Forum: Web Developers' Lounge Apr 11th, 2007 |
| Replies: 2 Views: 1,511 |
Forum: Domain Names for Sale Feb 28th, 2007 |
| Replies: 0 Views: 1,132 FS: Nintendo Wii - Video Game Domain I have several Nintendo Wii themed domains for sale...
buy-wii.info
free-wii.info
nintendo-wii-revolution.info
wii-revolution.info
wii-xbox-ps3.info
wiigiveaway.info
Anyone? |
Forum: Domain Names for Sale Feb 28th, 2007 |
| Replies: 1 Views: 1,204 |
Forum: Windows Software Mar 10th, 2006 |
| Replies: 1 Views: 2,088 Re: Office Templates + Background Image I've managed to solve this problem, kind of...
The reason I did not see my background images is because they were not included in the email. There is a setting in Outlook that insted of sending url... |
Forum: Domain Names for Sale Mar 10th, 2006 |
| Replies: 1 Views: 1,204 senixon.com + 3 sound-a-likes I have the following domain for sale on sedo.com ...
http://senexon.com
http://snexon.com
http://senixom.com
http://senexom.com
These were intended for a business that never took off. |
Forum: Windows Software Mar 9th, 2006 |
| Replies: 1 Views: 2,088 Office Templates + Background Image I'm building an office template in HTML, it contains a very basic HTML that requres a couple background images to tile. For reasons beyone me, as soon as I make the html into a template the... |
Forum: IT Technologies and Trends Aug 10th, 2005 |
| Replies: 10 Views: 3,284 |
Forum: ASP Aug 9th, 2005 |
| Replies: 2 Views: 26,705 Re: How to Parse XML in ASP? I've figured it out and just in case someone else is forced to use ASP to process XML...
The code above WORKS on an XML document on the server, but if you are like me and you're trying to read XML... |
Forum: ASP Aug 8th, 2005 |
| Replies: 2 Views: 26,705 How to Parse XML in ASP? Hey guys,
I'm having a "great" pleasure of parsing XML in my ASP page, except I can't seem to figure it out what I'm doing wrong. I have tried a bunch of stuff and can't seem to read a simple xml... |
Forum: Computer Science and Software Design Jul 31st, 2005 |
| Replies: 2 Views: 1,875 Re: How to Trap Print Action? Thanks for your suggestions, but this isn't a solution for me. I work for a design firm and our graphics people print from a wide variety of apps, and i don't think even one of which is written in... |
Forum: Promotion and Marketing Plans Jul 28th, 2005 |
| Replies: 10 Views: 3,191 Re: Marketing Ideas Please. if you preffer to keep them private please PM me here, otherwise just post it in the forum, i'm sure that I am not alone with a small budget and need to grow my business.
Thanks! |
Forum: Promotion and Marketing Plans Jul 28th, 2005 |
| Replies: 10 Views: 3,191 Marketing Ideas Please. I'm a webmaster for a dating site and was wondering if anyone has any good marketing ideas. There is a BUT, we have absolutely minimal budget. I'm a realist and I know that little can be done... |
Forum: C# Jul 26th, 2005 |
| Replies: 2 Views: 2,941 Re: Regular Expressions k... I'm not a RexEx guru either but I'm going to give it a shot, bolded blue text text will be subject of my explanation when regex expressions are used...
your expression [1-9]|1[0-5]
Scenario... |
Forum: PHP Jul 26th, 2005 |
| Replies: 1 Views: 1,336 Re: Generating .doc reports Easy! just this header before before your output (can be HTML formated!)
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
header("Last-Modified: " . gmdate("D, d M... |
Forum: ASP Jul 26th, 2005 |
| Replies: 1 Views: 3,164 Re: Done, but with errors This post needs to be in the JavaScript forum... But to give you a heads up it has to do with the way your mouseOver and MouseOut methods are done...
<!-- your code -->
<a... |
Forum: ASP Jul 26th, 2005 |
| Replies: 1 Views: 3,451 Re: Help with export to dbf One of the easiest ways of exporting and importing databases is to create a flat file, also known as a CSV. This is basically a database dump formatted as a delimited text file which then can be... |
Forum: ASP Jul 26th, 2005 |
| Replies: 1 Views: 7,776 Re: Unable to insert form data into a database For starters you need troubleshoot your variables...
When my sql is not working properly I like to write it out to screen before it executes to see what are the actual values being... |
Forum: ASP.NET Jul 19th, 2005 |
| Replies: 9 Views: 4,065 Re: Can't compare strings after PostBack Yep PostBack variable is off limits, use your own variable and check it something like so...
If Page.IsPostBack AND MyVar = True Then
MyVar = False
Else
MyVar = True
End If |
Forum: ASP.NET Jul 19th, 2005 |
| Replies: 9 Views: 4,065 Re: Can't compare strings after PostBack I'm not sure if this is a problem you've been having when you say "... It worked initially but something else further down the line didn't work ..."
Be aware that if you set a variable before... |
Forum: ASP.NET Jul 19th, 2005 |
| Replies: 2 Views: 2,875 Re: About Dynamic Hashtable You almost have it, use "Key", or "Value" for datasource assignment and a DataReader to populate values from database query...
Dim linkrd = New HashTable()
While reader.Read()
... |
Forum: ASP.NET Jul 19th, 2005 |
| Replies: 9 Views: 4,065 Re: Can't compare strings after PostBack It sounds to me like you could try checking if it's a postback then execute proper code, because Page_Load will execute every time, no matter post back or a regular visit.
If Not Page.IsPostBack... |
Forum: PHP Jul 19th, 2005 |
| Replies: 2 Views: 1,220 Re: Operating scanners None of the above...
Scanner cannot be controlled by scripting language like PHP or JavaScript. Scanners rely on drivers in most cases written for a specific operating system which then allow... |
Forum: PHP Jul 11th, 2005 |
| Replies: 3 Views: 2,004 Re: Image croping algorithm? I'd prefer to stay away from using layers to cover images, mostly because of all the incompatibilities between browsers, but in a pinch I have done some funky stuff with DHTML and CSS though. |
Forum: PHP Jul 11th, 2005 |
| Replies: 2 Views: 1,838 Re: Relative Paths and Subdomains Thanks Troy, I'll give it a shot, seems like it's widely supported since HTML 3.2, wierd that I've never used it or even heard of it :o |
Forum: PHP Jul 11th, 2005 |
| Replies: 1 Views: 1,366 Re: Help with password update try changing your line (28) from this...
if (mysql_num_rows($query) = 1) {
to this...
if (mysql_num_rows($query) > 0) {
or if you really need to make sure there is only one record returned... |
Forum: PHP Jul 11th, 2005 |
| Replies: 2 Views: 3,450 Re: Help with Login Box Hey Sean,
You need to begin by learning the proper way of writing HTML, then the php syntax, then working on your logic...
Just so you know no one here is going to write code for you, well I guess... |
Forum: PHP Jul 11th, 2005 |
| Replies: 2 Views: 1,838 Relative Paths and Subdomains Hi,
Perhaps this thread does not bellong in the PHP forum, but since I'm working with PHP/Apache I'll try here first.
I have setup subdomains on my site and realized that links are not relative to... |
Forum: PHP Jul 7th, 2005 |
| Replies: 3 Views: 2,004 Re: Image croping algorithm? I've found one that works pretty good, but if you have others please post....
http://www.ajquick.com/programming/thumbnail/ |
Forum: PHP Jul 7th, 2005 |
| Replies: 3 Views: 2,004 Image croping algorithm? Hey does anyone know of a way to crop images automatically while still focusing on the subject in the photo? I have a gallery of pictures and I would like to make all the thumbnails square shaped,... |
Forum: PHP Jul 3rd, 2005 |
| Replies: 2 Views: 1,106 Re: Function Problem. Please help Maybe concat syntax error :o
THIS....
echo "<b>Sample</b>:",$Sample_Views[$num],"</td>\n";
SHOULD BE THIS....
echo "<b>Sample</b>:".$Sample_Views[$num]."</td>\n"; |
Forum: PHP Jul 3rd, 2005 |
| Replies: 4 Views: 2,558 |
Forum: PHP Jul 3rd, 2005 |
| Replies: 1 Views: 1,166 |
Forum: ColdFusion Jul 1st, 2005 |
| Replies: 10 Views: 2,917 Re: Developer's Opinion about CF? :-| No offence, but from personal experience loyalty doesn't always pay the bills. I originally was all about open source, but when I moved to Seattle, where microsoft is king, I found my self... |
Forum: ColdFusion Jul 1st, 2005 |
| Replies: 10 Views: 2,917 |
Forum: Ad Space for Sale Jul 1st, 2005 |
| Replies: 2 Views: 1,733 Re: Trade Ad Space? No, not yet. I'm planing to have some soon, although not exactly software, but close enough. Maybe I'll be in touch then.
Thanks. |
Forum: Computer Science and Software Design Jun 29th, 2005 |
| Replies: 2 Views: 1,875 How to Trap Print Action? I'm not sure if this is even possible, but does anyone know how I might be able to trap Print Action. Would prefer a cross platform solution like Java or something, but it absolutely has to work on a... |
Forum: Ad Space for Sale Jun 28th, 2005 |
| Replies: 2 Views: 1,733 Trade Ad Space? We've all dont link trading, what about Ad trading? No money envolved, you host my ad and I'll host yours.
I've got a personals site, I'm willing to trade Ad space with someone with a lot of... |
Forum: ColdFusion Jun 28th, 2005 |
| Replies: 10 Views: 2,917 |
Forum: IT Technologies and Trends Jun 28th, 2005 |
| Replies: 10 Views: 3,284 |