|
VB.NET tutorial for beginners especially for database, please can you give me some resources.
Answer Snippets (Read the full thread at stackoverflow):
Else check these out
VB.NET Tutorials
VB.NET Database
VB.NET heaven
You will find pretty much all you will need to get you started (including Database interactivity... .
I google'd VB.NET tutorials and got loads of good hits .
First off i'd say, google it.
|
|
What are some good network programmer blogs? I'm especially interested in people who write about multiplayer games (MMORPG/RTS/FPS/etc), but any well written blog on the subject would be great.
Here's a good blog I found on another stackoverflow post:...
Started by Glitz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For a "bloggish" page, here GameDev.net has lots of articles to read: GameDev.net - Multiplayer and Networking
And here is a game network engine you could look at: GNE -- Game Networking Engine
GameArchitect is in my feed list. .
|
|
I am returning a big Json object [ 5000 records and 10 elements per record] from the controller [asp.net mvc] using Jquery and Ajaxpost. till now I was dealing with just 20 records [testing] and it is working fine. But in production there are 5000 records...
Started by kalyan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Paging....
You might want to have a look at this: PagedList
A simple way to find out and probably good practice is to make sure you have that data to test and it will make it much easier to choose between differnt options .
You should really page this data.
|
Ask your Facebook Friends
|
Escape is almost as important as the enter key, used universally for "cancel". In vim, it's arguably more important than the space bar, making its location highly suboptimal.
What key remappings -- either globally (for the whole operating system) or just...
Started by dreeves on
, 12 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Especially when you have your Ctrl mapped to CapsLock, so your fingers are on the home row all the time.
|
|
How can I track the memory allocations in C++, especially those done by new / delete . For an object, I can easily override the operator new , but I'm not sure how to globally override all allocations so they go through my custom new / delete . This should...
Started by Anteru on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Then, once you have this in place, you can.
Classes are likely to use malloc and especially realloc.
|
|
I am a reasonably experienced C# developer (about 5 year experience) that has recently been put in charge of my first development team as technical lead (varying between 3-5 other developers). Over the last 4 months in this role, one dilemma that keeps...
Started by Brian Hinchey on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
At the articles there for some more info on program managers, especially Human Task Switches Considered.
|
|
G'day,
Edit: While this question covers a situation that can arise in programming a lot, i have always noticed that there is a point when working with regex's, esp. in Perl and with shell-programming, where trying to capture those last few edge cases:...
Started by Rob Wells on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I think the issue is....
I'm going to ignore that part of the question and assume the regex can be adequately documented .
If they don't, there are often techniques available to make them readable .
Most regex engines allow you to document the regex in-line .
|
|
Hi i've plan to implement a feature like session in window application but not for the purpose to hold use information at first.the main purpose is to log out or at least prompt for login/password after session expires.I can't find information regarding...
Started by black sensei on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Ve come up with some implementation about that session thing i'll like to share especially for those.
|
|
Soon, I expect to be asked to revise and improve existing code written by engineers and scientists.
I've noticed that non-programmers do not share the same programming 'eye' as computer-scientists and full-time programmers.
As someone coming from a non...
Started by Zaid on
, 42 posts
by 42 people.
Answer Snippets (Read the full thread at stackoverflow):
I also had.
Things can get very magical:
Writing very ambiguous code (especially horribly nested loops and vague variable names.
In languages like .net, especially with frameworks bolted on top (asp.net)...
|
|
Does anyone know how to send an MMS message with the .net framework? Theres sample code for SMS but not MMS. I have a GPRS modem already installed on my server.
Started by Jukeman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You could try one of the following libraries:
IPWorks SMS Component MM7.NET MMS Library C# MMS Library Also, depending... .
I don't think there is any easy way to do this natively in .NET without writing your own code to do the SMS/MMS encoding and decoding .
|