User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 397,828 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,495 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 53
Search took 0.01 seconds.
Posts Made By: senexom
Forum: Web Developers' Lounge Apr 12th, 2007
Replies: 3
Views: 1,367
Posted By senexom
Forum: Web Developers' Lounge Apr 11th, 2007
Replies: 2
Views: 1,511
Posted By senexom
Troubleshooting Anyone know any pre-built Client Intranet products?

I'm looking for suggestions for a Client Intranet script, it would help if anyone heard or used anything for that purpose.

The requirements are as such:

Online Proofing/Approval system
Document...
Forum: Domain Names for Sale Feb 28th, 2007
Replies: 0
Views: 1,132
Posted By senexom
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
Posted By senexom
Re: senixon.com + 3 sound-a-likes

:bump: still for sale!
Forum: Windows Software Mar 10th, 2006
Replies: 1
Views: 2,088
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
Re: do u advice me to do my online store using ASP or PHP

Oh NO not this again :rolleyes:

What you have there is two separate articles written, admit it with some prejudice against one or the other side. Although the blog has some good points regarding...
Forum: ASP Aug 9th, 2005
Replies: 2
Views: 26,705
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
Solution 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
Posted By senexom
Help 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
Posted By senexom
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
Posted By senexom
Solution 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
Posted By senexom
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
Posted By senexom
Re: Send mail on MYSQL connection failure

Also read about PHP's error handling abilities...

http://aspn.activestate.com/ASPN/docs/PHP/features.error-handling.html
Forum: PHP Jul 3rd, 2005
Replies: 1
Views: 1,166
Posted By senexom
Re: Handling errors in php! ???

Read this article, it explains everything....
http://aspn.activestate.com/ASPN/docs/PHP/features.error-handling.html
Forum: ColdFusion Jul 1st, 2005
Replies: 10
Views: 2,917
Posted By senexom
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
Posted By senexom
Re: Developer's Opinion about CF?

Thanks Torch,

Do you think CF developers should be worried that Macromedia is being acquired by Adobe?
Forum: Ad Space for Sale Jul 1st, 2005
Replies: 2
Views: 1,733
Posted By senexom
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
Posted By senexom
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
Posted By senexom
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
Posted By senexom
Re: Developer's Opinion about CF?

Thanks techniner,

I'll give it a shot one of these days. How is demend for CF developer?
Forum: IT Technologies and Trends Jun 28th, 2005
Replies: 10
Views: 3,284
Posted By senexom
Re: do u advice me to do my online store using ASP or PHP

PHP is not more secure the ASP, nor is it the other way around!

Your site will only be as secure as you code it. If you ask me, people that say that one is more secure then the other are obviously...
Showing results 1 to 40 of 53

 
All times are GMT -4. The time now is 7:18 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC