bbqchickenrobot
|
Registered User
|
I am a bbqchickenrobot.
|
|
Nov 14 |
answered | How to get VisualStudio 2010 cool tools without spending $12,000 |
|
Sep 21 |
comment |
Where does the compiler spend most of its time during parsing ? it's a rhetorical question/answer. get over it. |
|
Aug 20 |
comment |
ContextMenuStrip Custom Layout Thought about it - but, the business requirements aren't asking for that. They want a full alphabetical list. If there is not a way, then we may have to go the route you suggested. |
|
Aug 20 |
revised |
ContextMenuStrip Custom Layout edited tags; edited tags |
|
Aug 19 |
asked | ContextMenuStrip Custom Layout |
|
Jul 28 |
comment |
progmatically rewritemap rules at runtime Oh, i see... didn't catch that. Unfortunately, I haven't used that particular module. I have used others and found them to be a pain when needing to add rules programatically so I used the method I displayed above. |
|
Jul 27 |
revised |
What exactly constitutes “a working knowledge of C++”? added 16 characters in body |
|
Jul 27 |
comment |
What exactly constitutes “a working knowledge of C++”? basically Neil, i'm giving the guy specifics to what he asked about and what he might hear or be asked to discuss during an interview. No need to get picky. |
|
Jul 27 |
comment |
What exactly constitutes “a working knowledge of C++”? true, but it still may be good to know during an interview... |
|
Jul 27 |
answered | What exactly constitutes “a working knowledge of C++”? |
|
Jul 25 |
answered | progmatically rewritemap rules at runtime |
|
Jul 19 |
comment |
Visual C++ application as a frontend to MS Access database - multiuser data access and canvas-like GUI questions. id stay away from new mysql implementations at this point. The future is uncertain. |
|
Jul 19 |
answered | Visual C++ application as a frontend to MS Access database - multiuser data access and canvas-like GUI questions. |
|
Jul 15 |
comment |
How do I setup a nested/chained function within a C# Class. Be careful no to overuse extension methods... |
|
Jul 15 |
answered | How do I setup a nested/chained function within a C# Class. |
|
Jul 9 |
comment |
What’s in it for programmers from Google Chrome Operating System (don’t mix with Google Chrome browser,please)? To be honest, I dont see them taking out microsoft unless they can break into the 3D video game market. Windows is king there... |
|
Jul 9 |
comment |
What’s in it for programmers from Google Chrome Operating System (don’t mix with Google Chrome browser,please)? @Mark - Just because it doesn't have X doesn't mean it won't have a GUI. Obviously to render the chrome browser to screen it's going to need some sort of "windowing" system. It's going to be open source, so as with many other projects, I can see hacks and add-ons that make this into what windows/linux is. If there is a Kernel, there is a way ;) |
|
Jul 9 |
comment |
Where does the compiler spend most of its time during parsing ? Very perceptive Eliseo. You're right, it's a question! ;) |
|
Jul 9 |
answered | Where does the compiler spend most of its time during parsing ? |
|
Jul 8 |
comment |
What’s in it for programmers from Google Chrome Operating System (don’t mix with Google Chrome browser,please)? Good point ... learning is another thing, but lets hope it doesn't stay there or it might be like anohter BeOS. XD |
|
Jul 8 |
answered | What’s in it for programmers from Google Chrome Operating System (don’t mix with Google Chrome browser,please)? |
|
Jul 8 |
comment |
LINQ-to-SQL vs stored procedures? it's easy to fail with pointers in C/C++/C# does it mean it should never be used? |
|
Jul 8 |
comment |
LINQ-to-SQL vs stored procedures? Your various applications should all be using a common data access layer (of course, that isn't always the case). If so, then, you can make a single change to the common library and redeploy. You can also use something like WCF to handle the data acess for you. There's a nice layer of abstraction that could technically use linq to access data behind the scenes. I guess it all just depends on what your guys come up with for your requirements in regards to using SPs vs Linq. |
|
Jul 8 |
comment |
Dear DBA - I want to use LinqToSQL instead of stored procedures because… Agreed on the type safety thing, that's the largest benefit for me. |
|
Jul 8 |
comment |
Dear DBA - I want to use LinqToSQL instead of stored procedures because… Both procedures and Linq2sql prevent against this. Any paramterized queries will prevent against this. |
|
Jul 8 |
answered | Dear DBA - I want to use LinqToSQL instead of stored procedures because… |
|
Jul 8 |
comment |
LINQ-to-SQL vs stored procedures? for me compile time safety is key! |
|
Jul 8 |
comment |
LINQ-to-SQL vs stored procedures? LINQ to Entities works with Postgres and MySql in addition to MSSQL. Not sure, but I thought I read there was something for Oracle around. |
|
Jul 2 |
answered | How can I dynamically change the style of some text depending on user input? |
|
Jul 1 |
comment |
When should one try to eliminate a switch statement? +1 for this... exactly, if switches were bad i think near genius C# creator(s) would have left it out. Just as the did with Multiple Inheritance. Of course, like anything, including generics or Interfaces one can completely abuse and/or overuse a concept. |
|
Jul 1 |
comment |
When should one try to eliminate a switch statement? I'd venture to guess C# |
|
Jul 1 |
comment |
When should one try to eliminate a switch statement? Curious to see how one would refactor this if you are of the opinion that switches are bad or suggest a refactor, I believe that was his original question... |
|
Jul 1 |
answered | When should one try to eliminate a switch statement? |
|
Jul 1 |
comment |
Are there any methods in .NET BCL which take `ref` parameters? LINQ == COOL Didn't know this was possible!! |
|
Jul 1 |
comment |
Hidden features of VBA Here's my question... why are you still using VBA? Ick. |
|
Jul 1 |
comment |
Is there a default SQL Driver included with the .NET Framework? Oh, and a little hint/tip code using the ado.net interfaces to make your application database agnostic (i.e. it can use mysql, mssql or postgres with a single code base). Pretty cool stuff. |
|
Jul 1 |
answered | Is there a default SQL Driver included with the .NET Framework? |
|
Jul 1 |
awarded | ● Critic |
|
Jul 1 |
comment |
Accessing the settings (app.config) of the calling application "if it's in the <appsettings /> section the above wouldn't work" should read - "would work" |
|
Jul 1 |
comment |
Accessing the settings (app.config) of the calling application Yes, that is iritating to me too! |
|
Jul 1 |
comment |
Accessing the settings (app.config) of the calling application This may help you out a bit: msdn.microsoft.com/en-us/library/… |
|
Jul 1 |
comment |
Accessing the settings (app.config) of the calling application This always works very well for me... but it depends on what info you're trying to retrieve. what settings are you trying to retrieve from your app.config? if it's in the <appsettings /> section the above wouldn't work. You can also use GetSection() or you could move the info you wish to retrieve into the <appsettings /> section assuming it fits the key/value paradigm. i.e. - <add key="Name" value="MyAppName" /> Also, if you're attempting to retrieve a connection string you might try: ConfigurationManager.ConnectionStrings["NameOfConnStirng"]; |
|
Jul 1 |
comment |
Accessing the settings (app.config) of the calling application Well right before caller passes info, he should still be able to use this information. Also, just because you think seperation of concerns is the best way, it may not be. If this is a beginners project or a quick and dirty program seperation of concerns doesn't really concern (NPI) the OP. |
|
Jul 1 |
answered | Accessing the settings (app.config) of the calling application |
|
Jul 1 |
awarded | ● Commentator |
|
Jul 1 |
comment |
Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? Be careful of medium trust environments... however if you have a VPS or Colo or Dedi server, then db4o away! |
|
Jul 1 |
accepted | C/C++ testing framework (like JUnit for java) |
|
Jul 1 |
answered | C/C++ testing framework (like JUnit for java) |
|
Jul 1 |
answered | Are there benefits to Classic ASP over ASP.net |
|
Jun 30 |
comment |
File Replication across WAN link cool that you guys have it working, but I've found rsync to be clunky and it trips up on long path names. That said, it's pretty reliable and did a dirty job very well. But = it's just not 100% of what we wanted and it's not a 2way syng unforunately. |
