9,867,109 members (39,193 online)
Visit CodeProject.TV
Discuss CodeProject.TV
Sign in
Email
Password
Forgot your password?
Sign in using
home
articles
Chapters and Sections
>
Search
Latest Articles
Latest Tips/Tricks
Top Articles
Beginner Articles
Technical Blogs
Posting/Update Guidelines
Article Help Forum
Article Competition
Submit an article or tip
Post your Blog
quick answers
Ask a Question
View Unanswered Questions
View All Questions...
C# questions
ASP.NET questions
VB.NET questions
C#4.0 questions
C++ questions
discussions
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work & Training Issues
Design and Architecture
ASP.NET
JavaScript
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
Adobe Technologies
C#
Free Tools
Objective-C
Ruby On Rails
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
.NET Framework
Mobile
VS 11 & .NET 4.5
Sharepoint
Silverlight / WPF
Visual Basic
Web Development
Site Bugs / Suggestions
features
Component & Service Catalog
Competitions
News
The Insider Newsletter
Newsletter archive
Surveys
Product Showcase
Research Library
CodeProject Stuff
community
The Insider News
The Lounge
The Weird & The Wonderful
The Soapbox
Press Releases
Who's Who
Most Valuable Professionals
Company Listings
Non-English Language
>
General Indian Topics
General Chinese Topics
help
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
Site Map
Advertise with us
Employment Opportunities
About Us
The default search term operator is
AND
.
You can use brackets,
AND
,
OR
, and
NOT
to improve your search. For example:
C# AND NOT(VB or SQL)
A query of a single
*
will return everything, filtered by any filters.
Filter examples:
Search by Author
author:"author name"
Filter by tag
tag:C#
or
tag:(C++ or Java)
Wildcard search
use "?" or "*" eg.
gr?d
or
gr*
1,083 Results
Search
Everything
Articles
Technical Blogs
Tips & Tricks
Questions
Answers
Forum Messages
News Items
Catalog Items
Videos
Training Courses
Just My Stuff
My Bookmarks
Sort by
Relevance
Rating Asc
Rating Desc
Title Asc
Title Desc
Author Asc
Author Desc
Date Created Asc
Date Created Desc
Date Modified Asc
Date Modified Desc
Price Asc
Price Desc
Duration Asc
Duration Desc
Match
All Fields
Title
Description
Author(s)
Tags
Any Date
Last 12 hours
Last 24 hours
Last week
Last 2 weeks
Last month
Last 3 months
Last 6 months
Last year
January
February
March
April
May
June
July
August
September
October
November
December
Rating Range
All - Including Unrated
1.0 - 5.0
2.0 - 5.0
3.0 - 5.0
4.0 - 5.0
4.5 - 5.0
4.8 - 5.0
5.0
Advanced Filters:
Article Topics
All Topics
Desktop Development
Web Development
Mobile Development
Cloud Computing
Enterprise Systems
Database
Multimedia
Languages
Platforms, Frameworks & Libraries
General Programming
Graphics / Design
Development Lifecycle
General Reading
Third Party Products
Mentor Resources
Article License
All Licenses
CPOL
CDDL
Ms-PL
MPL
CPL
Eclipse
MIT
BSD
Apache
CC (ASA 2.5)
Zlib
Public Domain
CC (Attr 3U)
CC (ASA 3U)
LGPL3
GPL3
Forums
All Forums
Feature Forums
General Programming
Web Development
Product Lifecycle
Database & SysAdmin
General Discussions
Non-English Language
Catalog Category
All Categories
Books & Training
Charting & Graphing
Components, Controls, Libraries
Data Manipulation & Mining
Database Tools
Debugging
Documentation & Help
Financial, Math & Scientific
Frameworks & APIs
General Development Tools
GIS & Maps
Graphics & 3D Modeling
Hardware and Robotics
Hosting
IDEs
Imaging
Mobility
Multimedia
Networking
Performance and Profiling
Programming Languages
Project Life-cycle Management (ALM)
Reporting
Search
Security
Setup & Deploy
System Adminstration
Utilities
Virtualization
Web Design/Development
Catalog License
All Licenses
Commercial
Fully Function Evaluation version
Limited Functionality Trial
Limited Time Trial
Shareware
Free For Personal Use
Freeware
Page 1 of 22
Page Size:
10
·
25
·
50
Tag filtered by: programming
[x]
Blocking sockets v/s non-blocking sockets in multi-threaded single server multiple client application.
by
ayesha hassan
Question
12 May 2013
license:
CPOL
I had been working on a Server Client aplication where Server is going to service(sendto + receivefrom)'x' number of Clients at a time. For this purpose, I have created 'x' number of threads on Server side so that each thread is dadicated to one single client. Inside each thread there is a...
General Programming
»
Uncategorised Quick Answers
»
General
Windows
Win32
Visual-Studio
Server
programming
socket
udp
Networking
Network
Sockets
Blocking sockets v/s non-blocking sockets in multi-threaded single server multiple client application.
by
Sergey Alexandrovich Kryukov
Answer
12 May 2013
license:
CPOL
I think that using threads with blocking sockets instead of asynchronous API is much better. In most cases, communication is sequential in its nature and the flow of operations is logically independent from other threads. Therefore, using a separate thread for each communication channel (in case...
General Programming
»
Uncategorised Quick Answers
»
General
Windows
Win32
Visual-Studio
Server
programming
socket
udp
Networking
Network
Sockets
Example of when Interfaces are incredibly useful
by
Assassinbeast
Article
11 May 2013
license:
CPOL
This is an alternative for "Interfaces in C# (for beginners)".
Languages
»
C#
»
Beginners
C#
.NET
Dev
Design
Beginner
Intermediate
Game
General
coding
programming
, +
Programming in C- Display inputted integers in english
by
CPallini
Answer
10 May 2013
license:
CPOL
I fixed some bugs (uninitialized variables). Please note: you should handle the digit 0 (zero) too. #include #include void show_number(int number){ int counter = 0; int i, temp, digit, x, ten; if (number > 9) { temp = number; while...
General Programming
»
Uncategorised Quick Answers
»
General
C
programming
Programming in C- Display inputted integers in english
by
Sergey Alexandrovich Kryukov
Answer
10 May 2013
license:
CPOL
This code is so naive that it does not worth reviewing. This is not even programming.This is the first step you could do: put all your English numeral in some array of strings. Than, if you have a number 0..9, its English representation of it will be found in one line of code; this is the...
General Programming
»
Uncategorised Quick Answers
»
General
C
programming
Programming in C- Display inputted integers in english
by
Drgy55
Question
10 May 2013
license:
CPOL
I am having trouble coding a problem from Kochan's "Programming in C," Chapter 6, Exercise 6. The problem is to take user input (an integer) and display it in english. Ex. User inputs "123" output should be "one two three." At this point in the book, I should only have basic knowledge of C (no...
General Programming
»
Uncategorised Quick Answers
»
General
C
programming
Why is the digital I/O in Arduino slow and what can be done about it?
by
Jan Dolinay
Article
10 May 2013
license:
CPOL
This article explains why the Arduino digital I/O functions are slow and compares them with faster implementation used in Wiring framework.
General Reading
»
Hardware & System
»
Hardware Programming
C++
C
Architect
Dev
ASM
Design
Intermediate
Advanced
Hardware
General
, +
How network event FD_WRITE is generated when using Event Driven Sockets.
by
Richard MacCutchan
Answer
10 May 2013
license:
CPOL
See http://msdn.microsoft.com/en-us/library/windows/desktop/ms741540(v=vs.85).aspx[^] for a complete description of how these events are generated and consumed.
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Visual-Studio
Events
programming
Networking
Network
eventhandler
How network event FD_WRITE is generated when using Event Driven Sockets.
by
ayesha hassan
Question
9 May 2013
license:
CPOL
I am working on newtwork event based socket application. When client has sent some data and there is something to be read on the socket, FD_READ network event is generated.Now according to my understanding, when server wants to write over the socket, there must be an event generated i.e....
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Visual-Studio
Events
programming
Networking
Network
eventhandler
Random Unique Code Generator
by
Sukant Shekhar
Tip/Trick
9 May 2013
license:
CPOL
Creation of random and unique code
General Programming
»
Algorithms & Recipes
»
Algorithms
DBA
Dev
Design
Beginner
All-Topics
programming
Read a text file line by line and save each line in the buffer irrespective of data type.
by
Sergey Alexandrovich Kryukov
Answer
9 May 2013
license:
CPOL
If you get "any other way" to read the lines of the files, they still will be the same lines. It won't solve the problem of the file "format". The question makes no sense.For example, you can use std::istream::getline:http://www.cplusplus.com/reference/istream/istream/getline/[^].—SA
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
programming
file
socket
udp
Text
Sockets
line
Read a text file line by line and save each line in the buffer irrespective of data type.
by
ayesha hassan
Question
9 May 2013
license:
CPOL
I want to read one line of the text file, save it to a buffer, send the buffer over a udp socket and then go and read the second line and so on..So far, since I knew the data type of the text to be read from the text file, I had been using fscanf() to read each line from the text file. But...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
programming
file
socket
udp
Text
Sockets
line
“Debug Assertion Failed. Expression: (_osfile(fh) & fopen)” error and Fatal Error in visual studio 2008
by
ayesha hassan
Question
8 May 2013
license:
CPOL
My following code is compiled successfully and runs perfectly for sometime handling 40 clients but after sometime, it gives an error "Debug Assertiion Failed expression: (_osfile(fh) & fopen)".I searched on internet and found a solution:Project + Properties, Configuration properties,...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
Visual-Studio
programming
Errors
ErrorHandling
Debugging
assertion
Debugger
Run-Time Check Failure # 2 - Stack around variable 'thread no' was corrupted
by
Jochen Arndt
Answer
8 May 2013
license:
CPOL
The error message indicates stack problems around threadno. And it is really helpful here when looking at the occurences for that variable:char threadno[2];itoa(threadNumber,threadno,10);strcat(threadno,".txt");Did you see the problem? The string can hold only one character plus NULL...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
Visual-Studio
programming
Errors
ErrorHandling
Run-Time Check Failure # 2 - Stack around variable 'thread no' was corrupted
by
ayesha hassan
Question
8 May 2013
license:
CPOL
My following code gives an error "Run-Time Check Failure # 2 - Stack around variable 'thread no' was corrupted." if I add a "break" inside my if statement. I have also hghlighted this "break" inside the code. If I remove thi "break", the error is removed.Can anyone explain me please why does...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
Visual-Studio
programming
Errors
ErrorHandling
Unable to copy multiline text file to a buffer
by
ayesha hassan
Answer
8 May 2013
license:
CPOL
opening the file in binary mode solved the problem :)fopen must be as follows:FILE *fp = fopen("File.txt", "r+b");
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
programming
file
Text
Constructing the Factory Method Pattern
by
Keith Barrow
Article
7 May 2013
license:
CPOL
A Basic Implementation of the GoF Factory Method Pattern
Development Lifecycle
»
Design And Architecture
»
Design Patterns
C#
Dev
Beginner
programming
Unable to copy multiline text file to a buffer
by
CPallini
Answer
7 May 2013
license:
CPOL
This code is NOT fine: file_size is not initialized and you should never call fread before being sure that the count (in your case file_size itself) argument is less than (or equal to) the size of the provided buffer.
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
programming
file
Text
Unable to copy multiline text file to a buffer
by
ayesha hassan
Question
7 May 2013
license:
CPOL
I am trying to copy a text file to a buffer in order to send it over the socket. As soon as the text file does not have any newlines (or \n), the file is successfully copied into buffer. But, whenever there are multiple lines in a text file, I get an error, "Unable to copy file into...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
programming
file
Text
CPU Usage 100% when creating 3 threads and using WSAWaitForMultipleEvents() and WSAEnumNetworkEvents()
by
ayesha hassan
Question
7 May 2013
license:
CPOL
I have created 3 threads each thread has one socket each. Inside each thread, socket is made "Event Driven" and whenever data becomes available for reading, an event is generated.The code works fine but it takes CPU Usage upto 100% which is surely undesirable. I think I have made some...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Threading
threads
Events
programming
udp
multithreading
event
WSA
, +
C++ windows programming question
by
C from Cape Town,SA
Answer
7 May 2013
license:
CPOL
Thank you both, will try it thanks
General Programming
»
Uncategorised Quick Answers
»
General
C++
Windows
programming
C++ windows programming question
by
C from Cape Town,SA
Answer
7 May 2013
license:
CPOL
Thank you both, will try it thanks
General Programming
»
Uncategorised Quick Answers
»
General
C++
Windows
programming
C++ windows programming question
by
Radoslav Dimitrov
Answer
7 May 2013
license:
CPOL
I am sory for this code :( !Here is it:#include #include using namespace std; int main () { ofstream myfile; while(true) { string password; string username; cout > username; cout > password; ...
General Programming
»
Uncategorised Quick Answers
»
General
C++
Windows
programming
C++ windows programming question
by
Radoslav Dimitrov
Answer
7 May 2013
license:
CPOL
No, noooo!I know that you can do this with the SQL. But you can do evrything in C++! 1. Create a folder called "Login Panel" (I recomend this name)2. Create 2 files: username.txt password.txt NOTE: The code must be in the same folder!3. The code: #include...
General Programming
»
Uncategorised Quick Answers
»
General
C++
Windows
programming
How to Spring Clean Your Static Analysis: 10 Tips
by
c_a_dunlop
Article
7 May 2013
license:
CPOL
Get 10 tips for revitalizing your existing static analysis implementation—no matter what static analysis tool you're using.
Development Lifecycle
»
Testing And Qa
»
General
Dev
static
testing
practices
programming
Development
validator
CPU Usage 100% when creating 3 threads and using WSAWaitForMultipleEvents() and WSAEnumNetworkEvents()
by
Jochen Arndt
Answer
7 May 2013
license:
CPOL
Did you report errors and terminate the thread when a function call fails?There is at least one wrong call that should result in an error return (best case) or undefined behaviour (worst case):WSAWaitForMultipleEvents(2, &hEvent, FALSE, WSA_INFINITE, FALSE);You are passing 2 for the...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Threading
threads
Events
programming
udp
multithreading
event
WSA
, +
Making udp socket non-blocking
by
KarstenK
Answer
7 May 2013
license:
CPOL
Do the networking stuff in a own thread. Use PostThreadMessage to communicate with your main thread.
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
programming
socket
udp
Sockets
Asynchronous
WSA
CPU Usage 100% when creating 3 threads and using WSAWaitForMultipleEvents() and WSAEnumNetworkEvents()
by
KarstenK
Answer
7 May 2013
license:
CPOL
i guess your threads are blocking the network api.why arent you making some outout or use your debugger...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Threading
threads
Events
programming
udp
multithreading
event
WSA
, +
C++ windows programming question
by
CPallini
Answer
7 May 2013
license:
CPOL
The database is not the only place where you may store the password: you may use as well a file. However make sure to store NOT the passwords themselves but their hashes. See the following article OriginalGriff's tip for a guideline: Password Storage: How to do it.[^].
General Programming
»
Uncategorised Quick Answers
»
General
C++
Windows
programming
C++ windows programming question
by
C from Cape Town,SA
Question
7 May 2013
license:
CPOL
HiI am just starting out with windows programming, i received an exercise to create a windows programme that requests the user to enter a username and password and then validates the password. Is the only way to do that via a sql file(where the username and password is stored?) I have...
General Programming
»
Uncategorised Quick Answers
»
General
C++
Windows
programming
Unable to create multiple threads using for loop
by
du[DE]
Answer
6 May 2013
license:
CPOL
This code works without errors and creates 3 worker threads, keep in mind that you need a return value as int and int max_number = 3 and function[i]:DWORD WINAPI ThreadProc0(LPVOID param){ return 0; }DWORD WINAPI ThreadProc1(LPVOID param){ return 0;}DWORD...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
Threading
threads
programming
Unable to create multiple threads using for loop
by
Jochen Arndt
Answer
6 May 2013
license:
CPOL
The code is compiling because you are casting incompatible types. So the compiler can not check the types. Remove the unnecessary typedef and the casting, and pass the correct parameter (the element of the function array, not the address to it):LPTHREAD_START_ROUTINE function[3] =...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
Threading
threads
programming
Unable to create multiple threads using for loop
by
CPallini
Answer
6 May 2013
license:
CPOL
Minor error:Quote:int max_number=1;This should be int max_number=3; right?The problem:Quote:(LPTHREAD_START_ROUTINE)&function[i],This should be(LPTHREAD_START_ROUTINE)function[i],(without & operator).
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
Threading
threads
programming
Unable to create multiple threads using for loop
by
ayesha hassan
Question
6 May 2013
license:
CPOL
I am trying to create 3 threads using a for loop. Following is my code snippet:DWORD WINAPI ThreadProc0(LPVOID param){ return 0; }DWORD WINAPI ThreadProc1(LPVOID param){ return 0;}DWORD WINAPI ThreadProc2(LPVOID param){ return 0;}int WINAPI WinMain(...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
Threading
threads
programming
Making udp sockets non-blocking by making the socket Event Driven
by
ayesha hassan
Question
6 May 2013
license:
CPOL
I am trying to make my Socket "Event Based". Following is what i tried:VOID createServerSocket(){ WSADATA wsa; //Initialise winsock// if (WSAStartup(MAKEWORD(2,2),&wsa) != 0) { //"WinSock Initialization FAILED", } //Create a socket// ...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
programming
socket
udp
Network
Sockets
XML* (or XMLStar), an STL based XML serialization engine
by
trident99
Tip/Trick
6 May 2013
license:
CPOL
An STL based simple XML serialization and de-serialization engine.
Languages
»
Xml
»
Serializing
C++
STL
Dev
Beginner
C++
Windows
VC9.0
Win7
programming
How to create a programming language
by
Zoltán Zörgo
Answer
4 May 2013
license:
CPOL
I have to draw you attention on following things:- You can make a language on paper: a language is first a syntactical specification, than a semantic one- There are many languages[^] out there, but few are really used. Why do you want to make a new one?- There are several really bizarre...
General Programming
»
Uncategorised Quick Answers
»
General
Windows
Linux
programming
Language
How to create a programming language
by
PleaseForgiveMe40
Question
4 May 2013
license:
CPOL
Hi,Can I create a New programming language ?I know I need an environmental but I don't know which one?Is Linux an OS for Creating an environmental for programming language? Or I can do it with windows 8??Claim: I don't want to create a program, but a programming language like: Python,...
General Programming
»
Uncategorised Quick Answers
»
General
Windows
Linux
programming
Language
Making udp socket non-blocking
by
ayesha hassan
Question
3 May 2013
license:
CPOL
I had been working on non-blocking udp socket. The code that I had developed generates a Window Message whenever there is any data to be read over the socket. Below is the code snippet:void createSocket(HWND hwnd){ ///Socket Binding/// WSADATA wsa; ///Initialise winsock/// ...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
programming
socket
udp
Sockets
Asynchronous
WSA
Passing pointer to SOCKADDR_IN and SOCKET in a function
by
Coder Block
Answer
2 May 2013
license:
CPOL
First of all,your code has lot of systax error i dont known you have copy/paste that code or not.It should be return TRUE and not Return TRUE (note "R").Now let me tell you some this about pointers.SOCKADDR_IN socket;SOCKET socketIdentifier;are normal variables and...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
programming
function
Pointer
functions
Passing pointer to SOCKADDR_IN and SOCKET in a function
by
ayesha hassan
Question
2 May 2013
license:
CPOL
I have a function createServerSocket(). This function can be accessed by multiple threads for creating their sockets.I want each thread to pass three arguments, a *socketIdentifier, sockaddr_in* and specific port number to createrServerSocket() function, so that each thread has a unique...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
programming
function
Pointer
functions
How to create multiplethreads each with different ThreadProc() function using CreateThread()?
by
CPallini
Answer
1 May 2013
license:
CPOL
Create an array of thread procedures, for instance:DWORD WINAPI myThreadProcA(LPVOID p){ DWORD dw = (DWORD) p; return dw;}DWORD WINAPI myThreadProcB(LPVOID p){ DWORD dw = (DWORD)p; return dw*dw;}VOID CreateMyThreads(LPTHREAD_START_ROUTINE myProc[], int max_number,...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
Threading
threads
programming
multithreading
create
How to create multiplethreads each with different ThreadProc() function using CreateThread()?
by
Jochen Arndt
Answer
1 May 2013
license:
CPOL
You may create an array holding the addresses of your thread procedures:LPTHREAD_START_ROUTINE pThreadProcs[] = { ThreadProc1, ThreadProc2 /*, ...*/};for (int i = 0; i
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
Threading
threads
programming
multithreading
create
How to create multiplethreads each with different ThreadProc() function using CreateThread()?
by
jsolutions_uk
Answer
1 May 2013
license:
CPOL
How about something along the lines of:typedef std::vector ThreadProcList;typedef std::vector ThreadIdList;ThreadProcList threadProcs;ThreadIdList threadIds;// add all the thread procs to threadProcs://...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
Threading
threads
programming
multithreading
create
How to create multiplethreads each with different ThreadProc() function using CreateThread()?
by
ayesha hassan
Question
1 May 2013
license:
CPOL
I have successfully created a single thread using CreateThread().Now I want to create 'n' number of threads but each with a different ThreadProc().I have tried the following code but using it, 'n' number of threads are created all performing the same task (since Threadproc() function af...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
Win32
Threading
threads
programming
multithreading
create
I want to make static lib in Microsoft Visual C++ with External headers and sources files
by
i SoRa
Question
1 May 2013
license:
CPOL
Hello .. I used the sources codes of genetic algoritms from the following link:Genetic Algorithm Library[^] I want to use it as localy or globaly in my APP ..so I need for (.lib ) File I started making the static library and add all headers and sources files .. What should I...
General Programming
»
Uncategorised Quick Answers
»
General
C++
Visual-Studio
VS2010
programming
Algorithms
libraries
Chances of data collision when using single udp socket for send() and receive()?
by
skydger
Answer
30 Apr 2013
license:
CPOL
It depends on how much clients do you expect and how large messages will be sent.The issue is that UDP does not guarantee delivery of data by itself, so some packets could be dropped.http://technet.microsoft.com/en-us/library/cc785220(v=ws.10).aspx[^]Simultaneous data sending both by...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
programming
udp
Networking
Sockets
Chances of data collision when using single udp socket for send() and receive()?
by
ayesha hassan
Question
30 Apr 2013
license:
CPOL
I have developed a udp application in which a single server is able to handle 'x' number of clients. Inside my server, there is a primary thread keeps on receiving requests/data continuously from the clients and keeps saving the information of each client in a list.As soon as a request comes...
General Programming
»
Uncategorised Quick Answers
»
General
C
Windows
programming
udp
Networking
Sockets
Scraping Dynamic WebSite data using Watin
by
shah vatsal
Article
27 Apr 2013
license:
CPOL
Perform web scraping of web site using Testing tools like Watin
Web Development
»
Applications & Tools
»
General
C#
ASP.NET
Windows
.NET
Advanced
C#
C#4.0
C#3.5
regular-expression
practices
, +
ASP.NET Popup Control Displaying as multiple nested modal popups
by
Girish Nama
Article
26 Apr 2013
license:
CPOL
This article describes using web modelpop extender as Windows model popup dialogbox.
Web Development
»
Asp.Net
»
General
C#
ASP.NET
Javascript
Windows
Dev
WebForms
Ajax
Advanced
programming
website
Page 1 of 22
1
2
3
4
5
6
7
8
9
10
First
·
Prev
·
Next
·
Last
Advertise
|
Privacy
|
Mobile
Web02 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright ©
CodeProject
, 1999-2013
All Rights Reserved.
Terms of Use
Layout:
fixed
|
fluid