Search Results

Showing results 1 to 40 of 48
Search took 0.01 seconds.
Search: Posts Made By: Ken Sharpe
Forum: Graphics and Multimedia Jul 2nd, 2008
Replies: 14
Views: 2,334
Posted By Ken Sharpe
I think they are both fundamentally important. Those who disagree tend to be mediocre developers, or inexperienced developers.
Forum: Graphics and Multimedia Jul 2nd, 2008
Replies: 3
Views: 956
Posted By Ken Sharpe
You can also just paint the irises black if you're handy with the paint tool.
Forum: HTML and CSS Jul 2nd, 2008
Replies: 6
Views: 1,045
Posted By Ken Sharpe
More than just IE not implementing things, you should be aware that form elements in particular (like drop down lists), have very different support across many browsers. You will not be able to style...
Forum: HTML and CSS Jul 2nd, 2008
Replies: 11
Views: 2,047
Posted By Ken Sharpe
Not true. Just wrap that word in a span, give it a class, and give that class a margin in your css.
Forum: HTML and CSS Jul 2nd, 2008
Replies: 3
Views: 862
Posted By Ken Sharpe
Yeah, javascript can set the scroll bar location, look into that.
Forum: Search Engine Optimization Jul 2nd, 2008
Replies: 15
Views: 2,032
Posted By Ken Sharpe
You're not wrong in your thinking. If you believe the link is valuable to your visitors and they they will create business for you, then do it. Focus on your visitors first, then your search engine...
Forum: Search Engine Optimization Jul 2nd, 2008
Replies: 7
Views: 953
Posted By Ken Sharpe
It may not be strictly necessary the the original poster is simply wrong that it will hurt. That's nonsense. Every little bit helps.
Forum: Search Engine Optimization Jul 2nd, 2008
Replies: 2
Views: 714
Posted By Ken Sharpe
Anything that sounds tricky won't work. The best way to top the search engines is to write quality content consistently, and for a long time.

You can help your chances by having clean, semantic,...
Forum: IT Professionals' Lounge Jul 2nd, 2008
Replies: 9
Views: 1,898
Posted By Ken Sharpe
There is no real ASP .NET OSS equivalent. There are options, as mentioned, like PHP and RoR, but they are not as scalable or pwoerful as the .NET framework.

Java is generally considered slower,...
Forum: IT Professionals' Lounge Jul 2nd, 2008
Replies: 2
Views: 848
Posted By Ken Sharpe
You probably need a separate print style sheet. Google that.
Forum: IT Professionals' Lounge Jul 2nd, 2008
Replies: 3
Views: 1,063
Posted By Ken Sharpe
I've never heard this before, and a priori it seems wrong. Google indexes information by domain name, not IP address.

If what you read is true, then a site like http://www.kensharpe.net might rank...
Forum: JavaScript / DHTML / AJAX Jul 2nd, 2008
Replies: 1
Views: 1,909
Posted By Ken Sharpe
My understanding is that PercentLoaded is IE specific. Why aren't you doing what most flash videos do, and display the percent loaded actually in the movie?
Forum: JavaScript / DHTML / AJAX Jul 2nd, 2008
Replies: 4
Views: 1,708
Posted By Ken Sharpe
It's not really new. This is how one passes information from a server side language to the javascript. Problem has already been solved, sorry 8)
Forum: JavaScript / DHTML / AJAX Jul 2nd, 2008
Replies: 3
Views: 925
Posted By Ken Sharpe
To create a profile like on myspace, you should go to myspace.com and create a new profile.

Silly questions, silly answers?
Forum: JavaScript / DHTML / AJAX Jul 2nd, 2008
Replies: 4
Views: 1,778
Posted By Ken Sharpe
Na, you can just measure. If you use ajax instead of refreshing the whole page, you will have a chance right after the ajaz call is made successfully to check the position of the scroll bar. If it's...
Forum: JavaScript / DHTML / AJAX Jul 2nd, 2008
Replies: 5
Views: 1,361
Posted By Ken Sharpe
You need to google something called Regex or Regular Expressions.
Forum: ASP.NET Jul 2nd, 2008
Replies: 1
Views: 1,082
Posted By Ken Sharpe
That code is insane. Horribly inefficient -- here's what you need to do instead.

Execute a query that gets a COUNT of all the records.

Get a random number between 1 and that count. We'll call...
Forum: ASP.NET Jul 2nd, 2008
Replies: 3
Views: 662
Posted By Ken Sharpe
Not sure about that serk. It'll work, but it's expensive. Might it be cheaper to have a stored procedure check for the record first, then insert if one is not found?
Forum: ASP.NET Jul 2nd, 2008
Replies: 2
Views: 730
Posted By Ken Sharpe
Sounds a little like homework, no? Tsk tsk.
Forum: ASP.NET Jul 2nd, 2008
Replies: 7
Views: 2,837
Posted By Ken Sharpe
Yeah, your problem is probably that you're trying to connect to the sql express App_Data database, rather than the the sql server instance you meant to.
Forum: Computer Science Jul 2nd, 2008
Replies: 5
Views: 1,115
Posted By Ken Sharpe
Well, why don't you contact the sensor manufacturer and ask them? The question has no general answer -- it totally depends on how they are made.
Forum: VB.NET Jul 2nd, 2008
Replies: 5
Views: 2,647
Posted By Ken Sharpe
You're confusing yourself, that's why you can't find anything on google.

If you have a VB application that needs to upload something to a server, the the vb application needs to connect to the...
Forum: VB.NET Jul 2nd, 2008
Replies: 2
Views: 1,687
Posted By Ken Sharpe
I didn't understand your post. You want the column to be a link that displays the user name but gives the userid to the click or command methods?
Forum: VB.NET Jul 2nd, 2008
Replies: 5
Views: 901
Posted By Ken Sharpe
Seriously, just start coding. If you hit a problem, google your issue and most of the time, you'll find a solution, if not, ask a specific question on a forum like this one.
Forum: VB.NET Jul 2nd, 2008
Replies: 8
Views: 714
Posted By Ken Sharpe
Not clear -- you want to find 10 words before, and 10 after any keyword, but only if the words are inside a paragraph?

Like, the keyword is the firs word in a given paragraph, so you'd only want...
Forum: C# Jul 2nd, 2008
Replies: 7
Views: 4,014
Posted By Ken Sharpe
Just for the record, it's a better idea to have the "complete syntax" as you say, rather than leave it up to interpretation.

For example, let's say your code had worked without specifying the...
Forum: C# Jul 2nd, 2008
Replies: 3
Views: 1,975
Posted By Ken Sharpe
csy is probably correct. Here's how it works:

You tell a datagrid to display certain data. That data is sitting somewhere else, like a database, then a copy of it is made to display in that...
Forum: C# Jul 2nd, 2008
Replies: 9
Views: 1,864
Posted By Ken Sharpe
You're getting yourself a bit confused, Acidburn. ASP .NET and WinForms are two different worlds entirely. ASP .NET is strictly for web-based application development, meaning that everything you...
Forum: C# Jul 2nd, 2008
Replies: 1
Views: 423
Posted By Ken Sharpe
Normally that exception means that there is a method that is defined in a base class that is meant to implemented in a child class. The child class doesn't implemented it, so the base class throws...
Forum: C# Jul 2nd, 2008
Replies: 4
Views: 1,982
Posted By Ken Sharpe
What line throws your exception?
Forum: IT Professionals' Lounge Jul 1st, 2008
Replies: 21
Views: 2,778
Posted By Ken Sharpe
Paul Graham talks about hackers as artists. You should google his essays, they are fantastic.
Forum: Game Development Jul 1st, 2008
Replies: 14
Views: 5,206
Posted By Ken Sharpe
C++ is the industry standard for engine programming, but a lot of heavy lifting is done by scripting languages like Lua and Python. Also, if you're thinking of web-based games, then you might look at...
Forum: IT Professionals' Lounge Jul 1st, 2008
Replies: 6
Views: 975
Posted By Ken Sharpe
Forum: Game Development Jul 1st, 2008
Replies: 11
Views: 2,642
Posted By Ken Sharpe
Link back here with your work in progress, I'm curious how it turns out.
Forum: Game Development Jul 1st, 2008
Replies: 1
Views: 711
Posted By Ken Sharpe
You should just try to implement the game, and go from there. You'll soon discover the scope of objects you need, then you'll be able to ask more specific questions about it.
Forum: Game Development Jul 1st, 2008
Replies: 2
Views: 739
Posted By Ken Sharpe
http://www.gamedev.net

They'll know!
Forum: Computer Science Jul 1st, 2008
Replies: 4
Views: 1,669
Posted By Ken Sharpe
Data Dictionaries are for database integration and migration, not for designing modular systems.
Forum: Computer Science Jul 1st, 2008
Replies: 15
Views: 2,623
Posted By Ken Sharpe
Online degrees are still generally looked down upon, but if you can find a program associated with a real university, you'll be fine. There are many programs like that, depending on what you'd like...
Forum: Computer Science Jul 1st, 2008
Replies: 11
Views: 2,020
Posted By Ken Sharpe
If you want to be hired without experience forget certifications. Spend your time actually learning the material and produce some really good work on your own time. When it comes to an interview,...
Forum: Computer Science Jul 1st, 2008
Replies: 14
Views: 8,292
Posted By Ken Sharpe
In real life application level requirements are just an overview of the functionality the program needs to implement. What it does. Sometimes what it doesn't do. How the users should interact with...
Showing results 1 to 40 of 48

 


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

©2003 - 2009 DaniWeb® LLC