Search Results

Showing results 1 to 40 of 60
Search took 0.01 seconds.
Search: Posts Made By: hinde
Forum: Post your Resume Sep 27th, 2009
Replies: 0
Views: 548
Posted By hinde
I have been at my current job for almost 3 years now, and I haven't updated my resume since then. I would appreciate it if some people could take a look at my resume and provide feedback. I have...
Forum: ColdFusion Jul 23rd, 2009
Replies: 1
Views: 606
Posted By hinde
You are checking for event ips that have a udate of EXACTLY 6 days ago, not all events that have occurred since 6 days ago (use > instead of =). You also seem to be querying udate as if its an...
Forum: ColdFusion Sep 23rd, 2008
Replies: 1
Views: 1,411
Posted By hinde
I have three suggestions that you can go with. I can provide further info on each depending on what direction you want to go.

1. Set up a ftp server on the php box that will allow you to do a...
Forum: ColdFusion Sep 4th, 2008
Replies: 3
Views: 1,770
Posted By hinde
In 99.99% of all cases, you should get the database server to handle the ordering.
Forum: ColdFusion Aug 30th, 2008
Replies: 3
Views: 1,527
Posted By hinde
Very much so. I personally develop with railo express 3.0, which is free (and superior in many ways to cf8 in my opinion). You could also use coldfusion 8 running as its own server, which is...
Forum: ColdFusion Aug 30th, 2008
Replies: 3
Views: 1,770
Posted By hinde
Are you having trouble writing the database query, the pagination code, or both?
Forum: ColdFusion Aug 29th, 2008
Replies: 3
Views: 1,527
Posted By hinde
Off-topic but why are you using coldfusion 5? I can't think of one good reason to use that version over cf8/railo express (excluding legacy maintenance/updates of course).
Forum: ColdFusion Aug 19th, 2008
Replies: 4
Views: 2,646
Posted By hinde
Checkboxes are a funny thing in form posts. If they aren't checked then they don't exist in the form scope that the page posts to. Also, if you don't specify a value for the checkbox, and the user...
Forum: ColdFusion Aug 14th, 2008
Replies: 1
Views: 1,593
Posted By hinde
Manual manipulation of cookies isn't the best way to go to have a log in session. Like many things, Coldfusion abstracts out most of the trivial code and provides you with a few cfml tags that mean...
Forum: ColdFusion Aug 12th, 2008
Replies: 3
Views: 1,649
Posted By hinde
I am a bit confused by your original description. You say that all of the forms action attributes use relative urls. The action below is most definitely not a relative url.



When you put a...
Forum: ColdFusion Aug 11th, 2008
Replies: 6
Views: 1,750
Posted By hinde
That will work, but it brings up a separate problem in most cfml code. Improper var scoping is the bane of my existence, second only in heinousness to not cfqueryparam'ing your queries. Not scoping...
Forum: ColdFusion Aug 10th, 2008
Replies: 1
Views: 1,189
Posted By hinde
An off the cuff solution that I think might work is to have something like the following javascript code:

function sessionTimeout()
{
window.location='logout.cfm';
}...
Forum: ColdFusion Aug 10th, 2008
Replies: 6
Views: 1,750
Posted By hinde
You need to use a html ordered list tag. Just search for html and "ol" for the syntax you need.
Forum: ColdFusion Aug 2nd, 2008
Replies: 1
Views: 1,310
Posted By hinde
One of the nice things that you can do with coldfusion is utilize java objects. BufferedReader is one of my favorite ones. It allows you to read extremely large files a bit at a time instead of...
Forum: ColdFusion Aug 2nd, 2008
Replies: 2
Views: 2,278
Posted By hinde
I am not giving you all of the code to do exactly what you need, but if you read this code below closely you should be able to get out of your rut with this assignment.

<cfset strLastCatName =...
Forum: MS SQL May 8th, 2008
Replies: 1
Views: 4,398
Posted By hinde
Here is the way I deprecate a standard datetime (5/7/2008 23:28) to a smalldate (5/7/2008) in my sql statements:

Cast(Floor(Cast(myDateTimeField as float)) as datetime)

This first converts the...
Forum: ColdFusion Mar 22nd, 2008
Replies: 2
Views: 1,447
Posted By hinde
Sorry, but what you have there is not going to work. Trying to have dynamic content inside text stored in a database table is usually done with percent-sign delimited placeholders (or whatever your...
Forum: ColdFusion Mar 16th, 2008
Replies: 2
Views: 1,824
Posted By hinde
Please post what you have so far, and I will take a look at it.

Regardless, I have some tips for you. From what I gather from your original post, you are trying to retrieve and present a...
Forum: ColdFusion Mar 1st, 2008
Replies: 1
Views: 1,480
Posted By hinde
What type of issue are you experiencing? Are you getting a coldfusion error? If so post a cfdump of the error with a stacktrace (can be deprecated if you want, but leave the line numbers).
Forum: ColdFusion Feb 20th, 2008
Replies: 1
Views: 1,560
Posted By hinde
You didn't close your table tag in the listing area. Add a </table> tag immediately after your </cfoutput> tag.

Regardless, you seem a little div happy. Divs are wonderful things when used...
Forum: ColdFusion Dec 12th, 2007
Replies: 1
Views: 1,482
Posted By hinde
Well if I recall typical sysadmin settings for coldfusion, cfmail messages will be sent when the coldfusion feels like it (this annoys me to no end). You can override this by adding an extra...
Forum: ColdFusion Oct 20th, 2007
Replies: 2
Views: 2,108
Posted By hinde
From what I can gleam from your sql, I am not even sure that you know that you want this code to work. The name reserveid screams primary key to me, and you shouldn't have to loop over the results of...
Forum: ColdFusion Oct 7th, 2007
Replies: 2
Views: 1,725
Posted By hinde
First thing I check when I get something like this is to do a cfdump of the form scope at the top of the action page followed by a cfabort. Will show you exactly what is in the FORM scope (and most...
Forum: ColdFusion Sep 1st, 2007
Replies: 2
Views: 1,882
Posted By hinde
I personally would not go for this particular way of storing times. If I was faced with this paritcular problem from a site that I was asked to maintain, I would write a one-shot script that would:...
Forum: HTML and CSS Aug 19th, 2007
Replies: 3
Views: 1,305
Posted By hinde
I am going under the assumption that you will have access to the code set as the src. If that is not the case disregard this message as it can't help you. I don't got the time to fire up your code...
Forum: MS SQL Aug 8th, 2007
Replies: 2
Views: 3,076
Posted By hinde
I think you want to use the IN operator. The IN operator will take the left variable and check it against a comma delimited list (each item enclosed in single quotes if its a character string,...
Forum: C# Dec 19th, 2006
Replies: 2
Views: 1,700
Posted By hinde
Probably should repost this in the c# forum.
Forum: Network Security Nov 7th, 2006
Replies: 3
Views: 2,626
Posted By hinde
A little while ago my dad mentioned a person in their car parked in our neighborhood. I figured that the guy was wardriving, and what with all the unsecure wireless networks around here I decided to...
Forum: C++ Oct 25th, 2006
Replies: 7
Views: 9,542
Posted By hinde
I would personally take this advice one step further and break functions down into little segments of code to figure out. I am not gonna do your work for you but I will give you a little tip for the...
Forum: Troubleshooting Dead Machines Sep 26th, 2006
Replies: 2
Views: 1,887
Posted By hinde
Did all of that, but no go. Thankfully, I eventually realized that Norton goback was on it, which I promptly disabled. I guess it was messing with the MBR or something. Its working fine now, but...
Forum: IT Professionals' Lounge Sep 26th, 2006
Replies: 0
Views: 1,178
Posted By hinde
I graduated last May with a BS in Computer Science. After taking the summer off, I started looking for a job. So far I have been unsuccessful. My only prior work experience was a project for a...
Forum: Troubleshooting Dead Machines Sep 14th, 2006
Replies: 2
Views: 1,887
Posted By hinde
My grandma has been having problems with my grandfather's computer. I went up there and it would boot to a screen saying Boot Failure: System Halted. I immediately go for the CMOS battery and get...
Forum: PCI and Add-In Cards Sep 2nd, 2006
Replies: 0
Views: 1,213
Posted By hinde
My brother was looking for a card for his laptop so he can watch tv in his dorm room and not have to use the big tv. Anyway he asked me for my opinion on one and I said it looked to be the best buy....
Forum: JavaScript / DHTML / AJAX Apr 23rd, 2006
Replies: 5
Views: 14,476
Posted By hinde
Thanks for the reply, but I found something even better, and I am a little embarrassed that I forgot I could do this.

<a href="javascript:display_spaces()">Get spaces</a>

Much simpler. Only...
Forum: JavaScript / DHTML / AJAX Apr 22nd, 2006
Replies: 5
Views: 14,476
Posted By hinde
I need a tag that doesn't go anywhere when I click on it but will show the little hand with index finger outstretched like I am hovering over the text teh tag applies to. I googled for a while, but...
Forum: JavaScript / DHTML / AJAX Apr 10th, 2006
Replies: 3
Views: 2,093
Posted By hinde
I am writing a feature for this company, and they want the pages to use AJAX. My question is this: Can I write the pages in php as usual, then enhance the page using AJAX techniques, or is the use...
Forum: HTML and CSS Apr 9th, 2006
Replies: 1
Views: 1,094
Posted By hinde
I am new to CSS and my html is rusty as hell, and I want to have links arranged horizontally on the top of my page. They are block links.

CSS script:

a.blue_top_tab {
text-align: center; ...
Forum: Computer Science Apr 6th, 2006
Replies: 7
Views: 2,545
Posted By hinde
Can you set up a website as your project? If so, come up with an idea for a website (try to keep it tasteful), cobble together a server, and then put it up on the internet for the world to see.
Forum: Computer Science Apr 6th, 2006
Replies: 1
Views: 7,659
Posted By hinde
I think you would have better luck getting information by describing Big-Theta notation as Big-O notation. Anyway, I cannot be of much help, since I never bothered to learn the theory behind Big-O...
Forum: Computer Science Mar 31st, 2006
Replies: 2
Views: 5,156
Posted By hinde
Please explain what you want out of this "task management" diagram more thoroughly and give an idea of how experienced with e-r diagrams you are.
Showing results 1 to 40 of 60

 


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

©2003 - 2009 DaniWeb® LLC