Click here to Skip to main content
15,907,326 members
Home / Discussions / C#
   

C#

 
GeneralRe: Add Column to Access database using OleDB Pin
Wouter Van Ranst27-Dec-03 7:23
Wouter Van Ranst27-Dec-03 7:23 
QuestionSocket Program>????? Pin
h_wing25-Dec-03 22:45
h_wing25-Dec-03 22:45 
AnswerRe: Socket Program>????? Pin
Heath Stewart27-Dec-03 5:07
protectorHeath Stewart27-Dec-03 5:07 
Generalsimple generic add,mod,delete Pin
gotohellthen25-Dec-03 21:59
gotohellthen25-Dec-03 21:59 
GeneralRe: simple generic add,mod,delete Pin
Heath Stewart27-Dec-03 5:02
protectorHeath Stewart27-Dec-03 5:02 
Generaldetect connection Pin
heba_zien25-Dec-03 12:05
heba_zien25-Dec-03 12:05 
GeneralPrinting Page Number Pin
Mazdak25-Dec-03 9:07
Mazdak25-Dec-03 9:07 
GeneralRe: Printing Page Number Pin
Heath Stewart27-Dec-03 5:00
protectorHeath Stewart27-Dec-03 5:00 
GeneralRe: Printing Page Number Pin
Mazdak27-Dec-03 8:50
Mazdak27-Dec-03 8:50 
GeneralRe: Printing Page Number Pin
Heath Stewart27-Dec-03 11:20
protectorHeath Stewart27-Dec-03 11:20 
GeneralRe: Printing Page Number Pin
Mazdak27-Dec-03 19:35
Mazdak27-Dec-03 19:35 
GeneralClicking through transparent windows Pin
Anonymous25-Dec-03 5:06
Anonymous25-Dec-03 5:06 
GeneralRe: Clicking through transparent windows Pin
Takeru Koushirou26-Dec-03 8:12
Takeru Koushirou26-Dec-03 8:12 
Generalmulti-thread multicast server Pin
GTR3425-Dec-03 1:19
GTR3425-Dec-03 1:19 
GeneralRe: multi-thread multicast server Pin
Heath Stewart27-Dec-03 4:56
protectorHeath Stewart27-Dec-03 4:56 
GeneralCalling function in a C# dll from C++ code Pin
Member 78143724-Dec-03 17:05
Member 78143724-Dec-03 17:05 
GeneralRe: Calling function in a C# dll from C++ code Pin
Nick Parker24-Dec-03 19:57
protectorNick Parker24-Dec-03 19:57 
QuestionHow to find servers in a network Pin
Cristoff24-Dec-03 10:08
Cristoff24-Dec-03 10:08 
AnswerRe: How to find servers in a network Pin
leppie24-Dec-03 12:57
leppie24-Dec-03 12:57 
GeneralRe: How to find servers in a network Pin
nguyen_quoc_huy_vn24-Dec-03 16:24
nguyen_quoc_huy_vn24-Dec-03 16:24 
GeneralRe: How to find servers in a network Pin
leppie25-Dec-03 6:03
leppie25-Dec-03 6:03 
AnswerRe: How to find servers in a network Pin
LongRange.Shooter30-Dec-03 10:15
LongRange.Shooter30-Dec-03 10:15 
The question you are asking is really a very complex one, especially if you have no network internals knowledge. If it is a Windows network, the machines could be in a different workgroup (if you are workgrouping) or in a different domain (if you are doing domains).

If everyone including the servers are in the same group, and you cannot see half the machines, then it could very well be an internal router problem (if you have a large network and are using routers with virtual networks).

Also if you have a dynamic network, as in everyone uses DHCP, then the issues can be anything from the machines being misconfigured and do not see the DHCP server or someone really screwed up and there are two DHCP servers alive with completely different subnets defined. In that case your network is screwed up and needs to be fixed.

If you can only see half the machines in the network using your machine, than no software you write will ever see the machines either. Server discovery (asking to get a response of who is on the network) would be a stupid thing to incorporate into a base development language since it would open a HUGE barn door to hackers everywhere. (ala, the heist of the HalfLife 2 source code but much worse)

In previous applications I wrote code that worked with a specific sequence of servers (basically a primary and fallback server). I'd try to connect to primary. If an exception was raised that indicated no response, I attempted to connect to the fallback server. If I could not connect to either, then the application would not run.

_____________________________________________
The world is a dangerous place.
Not because of those that do evil,
    but because of those who look on and do nothing.

Generalsites Pin
hebzzz24-Dec-03 8:04
hebzzz24-Dec-03 8:04 
GeneralRe: sites Pin
Kentamanos24-Dec-03 8:11
Kentamanos24-Dec-03 8:11 
GeneralSites Pin
hebzzz24-Dec-03 7:56
hebzzz24-Dec-03 7:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.