Forum: DaniWeb Community Feedback May 2nd, 2008 |
| Replies: 127 Views: 14,004 |
Forum: DaniWeb Community Feedback Apr 14th, 2008 |
| Replies: 28 Views: 3,178 Don't listen to tgreer. He doesn't post here anymore, anyway. |
Forum: DaniWeb Community Feedback Aug 28th, 2007 |
| Replies: 35 Views: 4,664 Wait a minute, back up the bus. No one claimed that feedback was a scientific poll. I'm saying, the only feedback you have is feedback given. That's all. If you are using feedback to make decisions... |
Forum: XML, XSLT and XPATH May 4th, 2007 |
| Replies: 5 Views: 2,843 I solved this with a combination of two recursive templates and creative use of the "copy-of" function. |
Forum: Geeks' Lounge May 1st, 2007 |
| Replies: 16 Views: 2,192 Ok, I edited the link. Don't waste your time. If you really want to read psuedo-scientific b.s., try "Science Made Stupid (http://www.besse.at/sms/smsintro.html)". The only difference is that it is... |
Forum: DaniWeb Community Feedback May 1st, 2007 |
| Replies: 123 Views: 14,119 Obviously we're faced with a changing demographic. In terms of the success of the forum as a business, that might not be a bad thing (this is the social networking crowd, after all). But if the goal... |
Forum: DaniWeb Community Feedback May 1st, 2007 |
| Replies: 313 Views: 28,230 lemurexplosion is the only user I've ever had to put on the Ignore List. Completely fractured, pointless posts. Why is he still here? What happened to the infraction system? A bigger question: why is... |
Forum: DaniWeb Community Feedback May 1st, 2007 |
| Replies: 123 Views: 14,119 The trend of Daniweb attracting more and more of the myspace crowd these days should be a serious wake-up call. |
Forum: DaniWeb Community Feedback Apr 27th, 2007 |
| Replies: 313 Views: 28,230 |
Forum: DaniWeb Community Feedback Mar 14th, 2007 |
| Replies: 97 Views: 9,988 Fair enough: if you don't pay attention to anything you type, then neither will I. Think it through. |
Forum: DaniWeb Community Feedback Feb 22nd, 2007 |
| Replies: 36 Views: 5,737 You do an excellent job of keeping the forum moving. Meaning, you never say "ok, now this is good enough". Always tweaking, always testing. That's good, even if it causes some ruffled feathers now... |
Forum: DaniWeb Community Feedback Jan 15th, 2007 |
| Replies: 100 Views: 13,407 If I'd already given up all hope, I wouldn't be participating in threads like this. I'm still hoping that Dani, a very skilled programmer, with whom I've spent many a pleasant hour conversing and... |
Forum: DaniWeb Community Feedback Nov 22nd, 2006 |
| Replies: 11 Views: 2,126 Not necessarily "elite", but yeah, you get the point.
Members of the "Staff Writer" group get 1) a user profile badge, 2) access to the Staff Writer's Forum. As an administrative task, it's easier... |
Forum: Site Layout and Usability Oct 20th, 2006 |
| Replies: 9 Views: 29,465 CSS cannot stretch an image: a browser is not an image editing program. CSS can repeat an image, but the image must be designed naturally to tile well.
The typical technique is to divide an image... |
Forum: HTML and CSS Oct 10th, 2006 |
| Replies: 15 Views: 24,795 After a certain period of time, you cannot edit your post.
Your page is missing a doctype, so I'm not sure which version of HTML you're writing. However, since all the tags are lowercase, I can... |
Forum: ASP.NET Oct 4th, 2006 |
| Replies: 6 Views: 2,825 More is not always better. The choice for outsourced development, however, usually comes down to long-term maintainability. I find ASP.NET to be extremely burdensome from a support and maintenance... |
Forum: JavaScript / DHTML / AJAX Sep 20th, 2006 |
| Replies: 6 Views: 2,899 I strongly disagree, and in fact so does Daniweb's official rules. Communication is about conveying "the message" as clearly as possible. Here, that means writing your posts in conventional, standard... |
Forum: JavaScript / DHTML / AJAX Aug 30th, 2006 |
| Replies: 4 Views: 9,510 Try "borderLeft" instead. One of the unfortunate aspects of web development is that the CSS property may or may not have a corresponding JavaScript property, and they don't always map directly to... |
Forum: HTML and CSS Aug 1st, 2006 |
| Replies: 9 Views: 1,872 Ok... so I guess the essential nugget of information you were after is the "descendant selector" syntax. Note that it selects all descendants, not just child elements, but also their child elements,... |
Forum: HTML and CSS Jul 20th, 2006 |
| Replies: 24 Views: 3,205 The Visual QuickStart series is good. The book I learned basic HTML coding from was by Elizabeth Castro. That was years ago, and I'm sure the book has been updated to cover CSS, and DHTML, by now.
... |
Forum: HTML and CSS Jun 27th, 2006 |
| Replies: 6 Views: 2,793 Have an "onload" function. The script would look at the document's referrer. If the documents are named in a logical way, for example "page1", "page2", then you can do a substr on the name, get the... |
Forum: ASP.NET Jun 21st, 2006 |
| Replies: 10 Views: 7,757 A web browser, regardless of which, can only communicate to a web server via an HTTP REQUEST, which come in two flavors: POST, and GET.
POST = A form.
GET = A querystring.
That's all.
A... |
Forum: HTML and CSS Jun 13th, 2006 |
| Replies: 14 Views: 19,325 To change the innerHTML of an element, you need to use the (wait for it) "innerHTML" property of that element.
<html>
<body>
<a href="#" onclick="this.innerHTML='<strong>You changed... |
Forum: HTML and CSS May 22nd, 2006 |
| Replies: 12 Views: 4,552 DOM methods have replaced document.write(). You can create elements (nodes), set their attributes, and invoke their methods. You've seen some of this, for example:
... |
Forum: DaniWeb Community Feedback Apr 28th, 2006 |
| Replies: 69 Views: 7,442 If you truly believe that, then you understand Dani, and me, about as well as you understand the programming involved in what you're asking.
You began this thread talking about one thing... |
Forum: ASP.NET Mar 14th, 2006 |
| Replies: 16 Views: 10,062 When the user submits the form, the values from the form will be inside the Response object. You can get the values there, if you like.
The ASP.NET Page Lifecycle goes through a series of discrete... |
Forum: HTML and CSS Feb 17th, 2006 |
| Replies: 19 Views: 4,646 Next is to open a window. In this version, we add back our HREF's so the links actually go somewhere.
Notice the new onclick attributes. It now looks like:
return link_click(this);
What... |
Forum: ASP.NET Dec 27th, 2005 |
| Replies: 12 Views: 4,244 Thanks for the gracious answer... I thought my last post came across too strong. My point was, ASP.NET is a profoundly different web development methodology (profoundly flawed, in my opinion).
... |
Forum: Geeks' Lounge Sep 1st, 2005 |
| Replies: 41 Views: 6,253 I listen to a lot of different styles, but as a guitar player myself, I tend to focus on simpler, acoustic performers. I like music that "features" simple instrumentation and "interesting" vocals and... |
Forum: ASP.NET Jun 24th, 2005 |
| Replies: 4 Views: 14,080 I'm not sure about the exact nature of the problem, here.
First, stop using FrontPage! Learn to write HTML, CSS, and JavaScript "by hand".
Second, realize that you can put standard HTML into an... |
Forum: C# May 3rd, 2005 |
| Replies: 6 Views: 37,248 Hi. I'm having some difficulty with a project that involves working with very large binary files. These are PCL files, where the decimal character "12" represents a Form Feed, but only if it's not... |
Forum: JavaScript / DHTML / AJAX Apr 8th, 2005 |
| Replies: 2 Views: 19,259 You need to empty the current selection range.
function addtb()
{
document.selection.empty();
document.getElementById("TextEditor").focus();
cmd = 'InsertInputText';
... |
Forum: IT Professionals' Lounge Mar 18th, 2005 |
| Replies: 4 Views: 12,296 I would not suggest a career in programming. I'm a programmer, and have seen the field dramatically polarize. Either you'll need to be a PHD working at Microsoft, or a low-wage employee working at a... |
Forum: Geeks' Lounge Dec 16th, 2004 |
| Replies: 26 Views: 4,028 cosmic rays
celestial dice rolls
through my system
So, you're all heading over to http://www.tgreer.com/forum, right? :?: |