JohnFx

6,976
reputation
1163 views

Registered User

name JohnFx
member for 1 year
seen 6 hours ago
website
location US
age 38
Development Manager.
1d
answered What software do I need to code in Perl?
1d
answered Ordering by a Column that’s not in the Group By or Enapsulated in an Aggregate
2d
comment How do I concatenate html as a string in VBA?
Definitely. That is a common approach where double and single quotes are interchangeable in the output.
2d
comment ASP.NET and Access Databases
This may sound like a silly question, but I have to ask. The MDB file is on the web server not your local hard drive. Right?
2d
comment Using [0,1] versus [”Y”,”N”] versus [”T”,”F”] in a logical/boolean database field?
Of course this pattern does introduce some cultural coupling in your data structure. You could also use "H/D" (Hombres, Damas)
Dec
15
revised Implementing MVC in Winforms
edited body; edited tags; edited title; edited title
Dec
15
comment asp.net impersonation setup
...unless you are using Kerberos.
Dec
15
answered Using [0,1] versus [”Y”,”N”] versus [”T”,”F”] in a logical/boolean database field?
Dec
15
accepted How do I concatenate html as a string in VBA?
Dec
15
comment Using [0,1] versus [”Y”,”N”] versus [”T”,”F”] in a logical/boolean database field?
Not if they are sending the data in some kind of text format like CSV.
Dec
15
comment Using [0,1] versus [”Y”,”N”] versus [”T”,”F”] in a logical/boolean database field?
+1 for delicious sarcasm.
Dec
15
comment How do I concatenate html as a string in VBA?
No worries. I've had to retract my share of answers too. Personally I hate that syntax for embedding quotes, but it does work. =)
Dec
15
answered How do I concatenate html as a string in VBA?
Dec
15
comment How do I concatenate html as a string in VBA?
So what is the problem you are experiencing exactly? The only obvious problem I see with your code is that you don't have a space before the underscore at the end of the first line.
Dec
15
answered What is the largest program ever written?
Dec
14
answered Learning VB6
Dec
14
comment Advantages of vb.net over vb6 for CRUD application development
Kris: You are my hero for this week. I just wish I could upvote you some rep for that comment!
Dec
14
answered Technology choice for redesigning an old VisualBasic-Application
Dec
14
comment Technology choice for redesigning an old VisualBasic-Application
I disagree on the VB6-VB.NET being a rewrite. The conversion tools in Visual studio are pretty good. They don't get you 100% of the way there, but I've used it to port a fairly large VB6 codebase to VB.NET in a relatively short amount of time (a few days).
Dec
14
answered compare two record sets in vb6
Dec
14
answered Advantages of vb.net over vb6 for CRUD application development
Dec
14
answered Optimize SQL SELECT for 4000 searches, into Excel by VBA
Dec
11
awarded  Popular Question
Dec
8
comment MySQL Accounts Aging Report
I'd love to help! Where should I send my proposal for consulting services?
Dec
8
comment Check user is logged in using Jquery
A few suggestions 1) instead o using JQuery to turn on the voting link, add the function to the link when you generate the page on the server and send it down with the link activated or deactivated as needed. 2) When the vote is submitted to the server, have the server re-check that the user is allowed to vote, even if through client-side code you wouldn't have expected them to have an active link.
Dec
8
awarded  Good Answer
Dec
8
answered Fogbugz database schema management
Dec
8
accepted session expiring and throwing exception
Dec
8
comment session expiring and throwing exception
Try Server.Transfer() instead of Response.Redirect() and see if you have better luck with that.
Dec
7
answered session expiring and throwing exception
Dec
7
revised Check user is logged in using Jquery
added 106 characters in body
Dec
7
answered Check user is logged in using Jquery
Dec
7
revised How to get Column name in Classic Asp using RecordSet?
edited tags
Dec
7
answered How to get Column name in Classic Asp using RecordSet?
Dec
7
awarded  Nice Answer
Dec
5
revised how to make linkbutton control in gridview open an new ie window
edited title
Dec
5
revised How does the .NET CLR work?
edited body; edited title
Dec
5
revised Whats a good php book for a starting programmer in Hebrew
edited tags; edited title
Dec
5
accepted MYSQL: how to “reorder” a table
Dec
5
revised SQL query to replace all occurrences of space in a table with underscore
added 371 characters in body
Dec
5
comment SQL query to replace all occurrences of space in a table with underscore
Also, if it is a one off (as I also mentioned) then the performance is probably not a major concern. I've done this on tables with millions of rows. I will add one additional caveat though, the locking this does on the table is pretty brutal, so I'd avoid it in situations where there are a lot of other users. It works like a charm in data analysis type projects though.
Dec
5
comment SQL query to replace all occurrences of space in a table with underscore
The OP specifically states that he only has a few thousand rows AND my answer specifically includes the disclaimer that it is only to be used for smaller tables. What more do you want, David?
Dec
5
revised MYSQL: how to “reorder” a table
added 406 characters in body
Dec
5
comment MYSQL: how to “reorder” a table
The only time I'd suggest adding an extra column for sorting would be when the sort can't be determined by other columns in the table. For example, if the application allowed users to re-order the items arbitrarily.
Dec
5
answered MYSQL: how to “reorder” a table
Dec
5
answered SQL query to replace all occurrences of space in a table with underscore
Dec
5
comment asp.net inline code <%# MyboolVal %>
Can you include the line that the compile error is thrown on?
Dec
3
answered Can someone copyright a SQL query?
Dec
1
answered What is the difference between a Web Developer and Web Application Developer
Nov
29
comment How to Access Class from a Different Class?
Is this a homework assignment? If so I'd suggest tagging it as such.