Hi, you could use UPnP of your router ;-) bye
monstale
Posts
-
What is my IP?? -
Dialing modemHi, please try
ATM1\r
instead ofATM2
bye -
Dialing modemHi, what does modem answer to each command? Bye
-
Process in C# (Open exe) -
I need to create 150 variable names....need an efficient way of doing itCheck definition of method - should return
cgStackedTrack[]
if you want to do this ;-) -
I need to create 150 variable names....need an efficient way of doing itreturn
will jump out of the method. ;-) What are you trying to do? -
I need to create 150 variable names....need an efficient way of doing itsundeepan wrote:
What if its an array of objects?
Nothing, no problem :-)
-
SortingHi, did you try
.Sort()
after writing and before reading the collection? Pls send code if it doesn't help bye -
Catch events in my code when VS discovers that the file has been modified outside of the source editorTurn off the event while saving in your app. ;-)
-
my qcm projectHi, after
ShowDialog()
you should update your label manually. The event will stop until your form closed, atShowDialog()
;-) hope it helps bye -
my qcm projectHi, could you send code, how you open the 2nd form? That would help bye
-
VC# 2008Hi, afaik VC# Express does not have such a template. You might use standard or prof edition for that bye
-
How to create registry key in Windows VISTA OS ?Hi, did you try do read the key by your program or with regedit? Try to read it by your program ;-) bye
-
How to create registry key in Windows VISTA OS ?Hi, what you do exactly mean by "unable to create" ? Is there an error, or do you don't find the key in registry? This article might help in last case: Windows Vista inbuilt sandbox registry[^] Hope it helps bye
-
How to create registry key in Windows VISTA OS ?Hi, could you send code, how you create the key, please greetz
-
How to know whether there are connected clients while using Socket Programming?Hi, use a static integer variable to count the active clients in your main thread of server. ;-) each time a client connects count 1 up. and decrease if the clients disconnects. bye
-
Registry problem with 64-bit VistaHi, looks like the installer works on 32-bit environment (Wow6432Node, this is absolutly transparent for the installer). The application works on 64-bit and looks up the key like on a 32-bit mashine without Wow6432Node. is there a way to compile a installer for 64-bit sys? I'm not adept in installers. ;-) bye
-
Difference between Button and Command button in .net -
DBNull errorHi, I think
DBNull
is not compatible withDateTime
. You should check if it isDBNull.Value
and then sendnull
back. ;-) greetz -
Problem Sending Message from SERVER to CLIENTOkay, maybe this a problem in understanding: you wrote code for receiving data at client side, right? You used the method
.Write()
. This method writes bytes to the stream. I think in a receiving method you should use e.g.Read(byte[], int, int)
, or am I wrong? ;-)