|
Something I've noticed, a lot of the Gaians don't want new titles, but want updates to GAIAONLINE games. Why not update those instead of going to a different company for games that we dont get gold or cash for.
Started by Furzball on
, 13 posts
by 9 people.
Answer Snippets (Read the full thread at gaiaonline):
Honestly I can't really think of anything else though, so I wouldn't mind some new gaia games, but so long... .
And fix any more existing bugs.
Like add some more pictures to jigsaw, or add some more fishing prizes .
I'd wish they'd update the other games too.
|
|
I'm debugging a WinForms client that calls a WCF service in VS2010 Beta 2.
I want to test my exception handling code, so I intentionally mis-configured my endpoint in app.config. The expected ConfigurationErrorsException is thrown. However, VS2010 stops...
Started by Eric J. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
And the other possibility is that you actually have an exception in your... .
Do you catch a ConfigurationErrorsException or a general exception? If you catch a ConfigurationErrorsException, maybe you should try catch a general exception and output its type .
|
|
Hi,
I have a newsletter tool that I am trying to setup to run as a background process to send out the emails. The code below works without any issues but the problem I have is that it is slow.
If there are 50 emails to send it can be very slow for the...
Started by Richard Reddy on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It will be disposed when it....
....); ThreadPool.EnqueueUserItem(sender.sendAllEmails)
Using background worker won't work.
Move all the work of sending the email to separate class and run it using ThreadPool
MailSender sender = new MailSender(parameters .
|
Ask your Facebook Friends
|
So today I was in a meeting to assist putting together a proposal to give one of our clients on how we can improve their web site. After two hours we had a pretty hefty list of new features and resource upgrades that coupled with their latest request ...
Started by Adam on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Firstly, although classic ASP works fine I think the time has come for it to be considered legacy technology, replaced by ASP.NET (and yes I realize that ASP and ASP.NET aren... .
I have several problems with aspects of your post (and agree in other parts) .
|
|
I'd like to know the reasons that moved you towards Linux.
Personally, I started because we had to use a Digital for the Fortran 77 exercises during my first year at the university. Linux was installed on many university computers, and I got interested...
Started by Stefano Borini on
, 28 posts
by 28 people.
Answer Snippets (Read the full thread at superuser):
I continue on both x86 as well as ARM chips and we are working with multiple OEMs to bring a number of netbooks for most of our development, so there....
I started because my Windows NT installation decided to stuff itself .
Easily acessable.
|
|
What do you guys think of working with dead/legacy or proprietary programming languages?
After working on it for a number of years, it seems like your chances of getting to another position is almost impossible because you're not up to date with anything...
Started by Greg on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Time such situations tend to bring along with them (especially if you're only there to "babysit.
|
|
I am not so much experienced on enterprise systems but i have some experience on Spring framework.I start to think open source framework such as Spring,Hibernate start to become defacto in enterprise development.Do you think it is necessary to learn Java...
Started by Burak Dede on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Even if you use Spring in projects later on, it is always a good idea to know what "happens under the hood... .
It's always a good idea to know the alternatives, then you can make an informed decision about which technology is right for any given situation .
|
|
I have a student position working on some websites for my school. Everything my school does is in VBScript/ASP Classic. I'm a bit confused about something. I can understand that my school as a LOT of code written in VBScript, and that migrating it would...
Started by Jason Baker on
, 16 posts
by 16 people.
Answer Snippets (Read the full thread at stackoverflow):
Developers, as well as to the business to continue to write programs in a language that has been.
|
|
How do SQL developers go about keeping up on current techniques and trends in the SQL world? Are there any blogs, books, articles, techniques, etc that are being used to keep up to date and in the know?
There are a lot of opportunities out their for OO...
Started by Jeremiah Peschka on
, 22 posts
by 22 people.
Answer Snippets (Read the full thread at stackoverflow):
The best way to continue to improve your SQL skills to continue using.
Sure you can bring in more advanced concepts as you develop your skills, work out, and so on.
All that much.
|
|
My product needs to change file association. To allow it to run as non-admin in Vista, I have moved the registry changing code to a separate binary called "assocsetup.exe".
When launched, Vista UAC correctly asks for permission to run it as admin with...
Started by dribler on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Common sense over here, but since UAC triggers the prompt on Window focus, isn't there a way to focus the assocsetup.exe Window so it can dim the desktop and prompt?
You don't say how you start your helper program, but I assume you are using ShellExecute... .
|