836 Posted Topics

Member Avatar for KillerOfDN

Simple answer is unless your PC has an externally visible IP, you will need to use port forwarding.

Member Avatar for LizR
0
312
Member Avatar for Smu

Well.. Make your own :) What do you think a swap procedure/function would do?

Member Avatar for terataki
0
144
Member Avatar for mawst
Member Avatar for scrypt3r
Member Avatar for jainendra.shah

Well assuming you do some form of error checking it sounds like theres a simple enough process to put it all together, and it doesnt sound like you need reg expressions to do it. However, your question isnt overly clear.

Member Avatar for LizR
0
81
Member Avatar for scrypt3r
Member Avatar for ddanbe

Logic looks ok to me, my only question is is "_master" always what you think it should be? Im wondering if perhaps instead of overriding the creation it somehow isnt using it so _master ends up null or something and that perhaps this is causing the effect you see

Member Avatar for ddanbe
0
93
Member Avatar for Egypt Pharaoh
Member Avatar for sivak

Thats not really miuch to do with c# thats a generic javascript issue, have you done some googling on that? as its a pretty normal thing to do.. theres probably 100s of prewritten ones to do it for you

Member Avatar for sivak
0
80
Member Avatar for xVent

Well you seem to have the idea of how to read something in and how to write something out - what you dont give is any idea of the bit you dont understand. Take a read through Nick Hodges 30 days of delphi or, tutorials such as [url]http://www.xcalibur.co.uk/training/Delphi2005/[/url] or [url]http://delphi.about.com[/url]

Member Avatar for LizR
0
94
Member Avatar for Egypt Pharaoh

Normally you copy a single class, for use elsewhere, however, if you have a number of methods, you can make a DLL with public functions in that you can then call ..

Member Avatar for LizR
0
93
Member Avatar for csharplearner

OK so you found the event to say the selections changed, what exact issue are you having? other than you have put what looks like your date picked code into the form loading event

Member Avatar for ddanbe
0
83
Member Avatar for sanavada

So, your code should be allowing for the server to disapear, as its not the same app and you cant guarentee its existance or connectivity, so you should have code in your app already that works with the fact the server can and potentially will disapear, and on doing so …

Member Avatar for LizR
0
422
Member Avatar for nathan08

New to coding or not. What code do you have so far? What issue do you have with your code? Haivng read the plentiful notes on how to use regex from the helpfile, and how to create reg expressions you can find in google, what specific issue are you having?

Member Avatar for LizR
0
77
Member Avatar for scrypt3r

Do you mean where it read the boot loader from, or the drive with the OS on? as they dont have to be the same, Im not sure you can tell the first.

Member Avatar for LizR
0
76
Member Avatar for sonotobvious

Forgive stupid question - why not just link the text boxes to a dataset and have the dataset questioned on which one you select from the combo.. why reinvent the wheel?

Member Avatar for LizR
0
123
Member Avatar for randr

To restrict questions to x per day, or hour or whatever means you would have to log someones efforts.. or you select x questions that may run in a day and then randomize.

Member Avatar for randr
0
190
Member Avatar for pete08

Extract a smaller sized portion of it, and display it, and change the area shown depending on where in the scroll you are supposed to be.

Member Avatar for hieuuk
0
319
Member Avatar for darkyere

Once again, debug it, follow what "i" is, and see what item you're referencing. Once again, no code tags, so im not even going to bother reading it this time. You dont seem to do any validation to check wether i is a valid item or not

Member Avatar for jsosnowski
0
210
Member Avatar for murderotica
Member Avatar for Typewriter
Member Avatar for hieuuk
0
205
Member Avatar for Now Then

1. You could change the tooltip on mouse over, see [url]http://msdn.microsoft.com/en-us/library/s894w4aa.aspx[/url] 2. do they not auto uncheck now? make sure their tab index is different. 3. set the shortcut key 4. you should be able to use the same code for all of them. 5. Use its clicked event

Member Avatar for hieuuk
0
120
Member Avatar for Filipe11

Ok, heres a hint. If you went into a shoe store, you'll find trainers, boots, shoes and sandals. Now, they all go into shoe boxes Same is true with your list, your list will hold your medications, however, you need to check the box as to which type of class …

Member Avatar for rapture
0
88
Member Avatar for rawmode

Would be easier if you had just posted the errors and so on. First error is lazy - it says "int32" not "Int32" The second is also lazy - you have done the equivelent of [code] if (test==true) { x; } [/code] where x is just a variable Which if …

Member Avatar for LizR
0
144
Member Avatar for ejohns85
Member Avatar for LizR
0
79
Member Avatar for mawst

You might be able to drop the xml transform as tclientdataset understands xml direct if its simple enough. Failing that, I wouldnt use xml -> IMHO xml is often over used when something as simple as a simple ini file/registry keys would be more than sufficient.

Member Avatar for mawst
0
136
Member Avatar for csharplearner

To learn more about String.Format - press F1 on it, it has examples and a lot of information on other formats and how to use it.

Member Avatar for csharplearner
0
120
Member Avatar for ambarisha.kn
Member Avatar for Filipe11

Well what have you tried so far?, sounds simple enough. What exactly are you stuck on?

Member Avatar for Filipe11
0
108
Member Avatar for papuccino1
Member Avatar for ejohns85
Member Avatar for Filipe11

The answer would normally be you shouldnt. Please explain a little more of what you're trying to achieve before we can give you better answer

Member Avatar for Filipe11
0
98
Member Avatar for deathdarts

Well you could have a variable in Class A that you set to be your socket, eg [code] Class A { public Socket Server; . . . . } Class B { Socket server = new Socket(); A = instA = new A(); A.Server = server; } [/code] but id …

Member Avatar for LizR
0
84
Member Avatar for karthi_selva

Well. What have you tried so far? there is a mouse click event, and you can handle left and right clicks..

Member Avatar for karthi_selva
0
117
Member Avatar for darkyere

Other than you didnt use code tags so your post is painful to read. When it crashes - check the value of i and item.

Member Avatar for LizR
0
166
Member Avatar for jainendra.shah
Member Avatar for LizR
0
71
Member Avatar for it2051229

Usually you do a forumla such as [code]int pic_width=50; int pic_height=50; for(w=0;w<10;w++) { picturebox[i].top=0; picturebox[i].left=(pic_width+1)*i; picturebox[i].height=pic_height; picturebox[i].width=pic_height; } [/code] this means box1 ends up at 0,0 , box2 51,0, box3 102,0 etc so they dont overlap.

Member Avatar for LizR
0
137
Member Avatar for Duki
Member Avatar for ddanbe
0
119
Member Avatar for Duki
Re: MSIL

In pre .net Id have agreed, in .net itself its not something Id given much thought.

Member Avatar for jbennet
0
127
Member Avatar for darkyere
Member Avatar for LizR
0
248
Member Avatar for aldl88
Member Avatar for LizR
0
99
Member Avatar for shankhs

You could try [url]www.3dbuzz.com[/url] who have a set of video training things which are fun to follow

Member Avatar for Ved_TheOne
0
144
Member Avatar for karthi_selva

Or you can try and convert the icon to a bmp and show that in the picture control - depends a little on how you want something displayed

Member Avatar for karthi_selva
0
175
Member Avatar for bhavna_816

Then it sounds like a timing issue. You probably need to go give the object time to start before sending it instructions

Member Avatar for bhavna_816
0
953
Member Avatar for shraddha24

When the data is posted onto the receiving page, you'll get say month=5 Day=8 year = 1945 (not my birthday!!) you would then - add them up like a human would to form a date like string such as "8/5/1945" and try and convert it to a date, if it …

Member Avatar for LizR
0
160
Member Avatar for Diamonddrake

I dont see why you'd be having a problem the following [code] List<String> lines = textBox1.Text.Split('\n').ToList(); lines.Sort(); textBox2.Text = String.Join("\n", lines.ToArray());[/code] With "a cat a bat a mat" put into textbox1, sorted it correctly

Member Avatar for Diamonddrake
0
154
Member Avatar for sierrasoft

Most of the so called conversion tools dont seem to work as well as anyone ever wants them to. Coupled with the fact you're converting a win32 app to a .net app in from a language which allows for insane amounts of sloppyness, to a highly structured one.

Member Avatar for mjuras
0
505
Member Avatar for seahawk789
Member Avatar for nikola.rosic

Depends a bit I guess on what exactly is being done in the background and how you've passed the forms reference to the worker thread so it knows which form to update.

Member Avatar for LizR
0
257
Member Avatar for Schokbreker

Please search this forum - this question has been asked and answered before.

Member Avatar for LizR
0
109

The End.