March 20th, 2013 03:29 PM
cjard,
The idea you posted pointed me in the right direction. It took a little more work to deal with walking the control tree to get this working properly but now my library is proud owner to a...
March 16th, 2013 08:55 PM
cjard,
Hmm ... yeah, that may just work. Thanks for the idea - I'll give it a try!
-Max
March 13th, 2013 02:31 PM
All,
I am populating a section of an ASP.Net page with the following code:
if (catList.Count >= 1) {
var CLR = (CategoryLedgerRecord) catList[0];
cboCat1.Text =...
February 28th, 2013 11:15 PM
... and the purpose of this post was?
January 2nd, 2013 02:07 PM
The object ARCode is not a form object in your project or the library it was stored in is no longer referenced. If you don't know what resource it came from it might be a good idea to return to the...
January 2nd, 2013 02:01 PM
You may have noticed that your thread has gotten a lot of views but no one is responding. The reason for this is you've come here asking us to do your work for you. It's a little like being given a...
December 24th, 2012 12:49 PM
Did you run a registry cleaner of some kind? Sounds like the registration of the component has gotten scrogged.
Why are you using an ActiveX control in a C# project anyway?
-Max
December 22nd, 2012 08:20 PM
Extending the functionality is simply a matter of allowing the user to input the path first then the extension to be searched. Here's my modified version of the routine:
//
// General...
December 21st, 2012 08:57 PM
Oh ... OK. Here's another version of it that will accomplish what you're after. You were trying to use a formatted representation ({0}) to put together your string. Also, don't test on the input...
December 21st, 2012 11:03 AM
I find the books from APress to be good. They're well written and relevant to the topic. You can also get them in PDF format which is what I do.
-Max
December 21st, 2012 10:56 AM
Abub,
I'll try to help.
I took the 2nd section of code you outlined and put it into a console application. It behaves as you would expect it to. What kind of errors are you seeing?
This is...
December 21st, 2012 10:23 AM
You're always going to show the last city because your variable "foundPosition" is being reset to cityName.Length-1 each time you execute the first loop. Your 2nd loop is not taking your "All"...
December 3rd, 2012 02:53 PM
The bicycle you ride is older than your daughter is ... and she got married 2 years ago!
December 3rd, 2012 02:51 PM
Program configuration settings (preferences if you will) are best stored in the database that the application uses (if it is using one). Otherwise, have the application create and manage it's own...
October 20th, 2012 11:12 PM
I will second that. I bought my copy of Active Reports about a year ago. Worth every penny. I develop everything using VS2008 Std / SQL Server 2008 R2 and Active Reports 6. Fantastic combination....
October 20th, 2012 11:05 PM
Satish,
There might be no particular shortcut to what you're doing but what I can tell you as the author of a couple of rules engines is that you should place your engine in the position to...
November 2nd, 2011 09:21 AM
Thanks guys ... will check it out.
-Max
September 19th, 2011 02:30 PM
Guys ... is there any way for me to detect whether or not my code is running under the IDE? I.E.
if (SomeNameSpace.IDE_Active())
Console.WriteLine("Code is running in the IDE!");
Thanks,
...