836 Posted Topics

Member Avatar for papuccino1
Member Avatar for papuccino1
Member Avatar for it2051229

If you sorted them into alphabetical order you'd be able to tell if they were the same or not. eg ABA gets sorted to AAB

Member Avatar for ddanbe
0
77
Member Avatar for murderotica

Accessing mails from outlooks inbox is generally quite simple and mine seems to pick up the differences. What code do you have as while I didnt derrive mine from that vb, mine uses pretty much the same concept.

Member Avatar for murderotica
0
869
Member Avatar for morecrab

If you want to download an MDB file you cant update it online, it would be read only as you would have to download a copy and then use it from a temp/semi perminant location. Take a look at the indy components, they are the easiest to use.

Member Avatar for morecrab
0
147
Member Avatar for schmidty169
Member Avatar for schmidty169
0
269
Member Avatar for tresloukadu

It shouldnt matter what the device is, the problem is you cant always reliably test which way your data travels - as in a lot of situations where you maybe have wireless and wired, the network IP range for both is the same, as a result it may not always …

Member Avatar for LizR
0
88
Member Avatar for Basma.A

Are you creating the data to put in the treeview or is it some predefined stuff too? In being able to explain the problem carefully, it would more likely explain the answer to you too.

Member Avatar for serkan sendur
0
143
Member Avatar for gp04lch

Out of interest if you dont set it to maximized, but change the size does it work then?

Member Avatar for gp04lch
0
122
Member Avatar for sfrider0

regex is the easiest way to split it, theres many examples on how to split up html using regex out there.

Member Avatar for dickersonka
0
82
Member Avatar for Nighthawkspt

Biggest problem with udp is theres no guarentee it will get there - you would do far better to use tcp, so packets arrive in order, and are guarenteed to succeed or fail you can test both ends that they got there.

Member Avatar for Nighthawkspt
0
163
Member Avatar for kim_ray
Member Avatar for fireup6

Whats in your projects path satements? Does a simple hello world program work? um, .c and .h files maybe, but the code you showed was pascal.

Member Avatar for LizR
0
329
Member Avatar for CollegeKid101

Well. A form is an object like any other object in c#, and you have many options. However, lets assume you're going to make a phonelist holder of your friends. On the main form you want a list maybe of names, so you can quickly find the person you're after. …

Member Avatar for CollegeKid101
0
89
Member Avatar for sivak
Re: hi

What have you read about webservices? Have you looked on msdn?

Member Avatar for Jugortha
0
108
Member Avatar for Catherinedally

OK The code you posted is partly confusing in regards to where your code appears to be - however, looking past that, If you had made a class, you could have an array of that class, it would then hold the id, name and 2 results. rather than separate arrays …

Member Avatar for coolkeg
0
131
Member Avatar for anusumesh

Um, if its not running directly in the users session then it wont have any mapped drives - as its not the same.

Member Avatar for LizR
0
358
Member Avatar for TomRandall

Normal coding practice would be make the form for when you want it, and then free it - as a result next time you make it, it will be as it was in the beginning. Otherwise you need to make a reset function on the form that puts everything back.

Member Avatar for LizR
0
702
Member Avatar for TomRandall
Member Avatar for compovet

debugging would show wether your mail settings are being picked up for your new smtpclient. If not, it maybe better to set them.

Member Avatar for LizR
0
116
Member Avatar for Csipesz

You have a lot of operators you can use < <= == >= != (see helpfile for more and info if you havent a clue what they mean)

Member Avatar for LizR
0
71
Member Avatar for synxmax

You didnt really explain what you expect to store your images in. However, if you use a database, you could write temp files out to load into the source.

Member Avatar for LizR
0
123
Member Avatar for cincachoo
Member Avatar for LizR
0
142
Member Avatar for smorton123

You have no array in your program - however, your use of random is ok. So, Id argue a difference about using arrays as it seems to be this you're having the issue with. OK, take it back a stage, how would you assign the numbers 1 through 10 to …

Member Avatar for LizR
0
234
Member Avatar for gjkeeler

Id have thought it would have complained at jim:=x as jim the parameter cant be set a value, it returnsone, but I guess theres tha possibility you're making use of the using the name of the function aspect as the return variable. I guess then the other choice is bill(jim); …

Member Avatar for Duoas
0
305
Member Avatar for sheady

OK, so it calls buy and sets a string variable, when you say theres more than one.. This description isnt clear.. That looks on face value an awful lot of repeated unnecessary code. Can you do a picture of what your screen should look like?

Member Avatar for jsosnowski
0
293
Member Avatar for xorl

Well if you did an initial split on \\ and \r\n, you would have a bunch of stuff and then parts of which would be #extinf:nnnnn, so you could find the , and remove upto it, and its your title, or, if it ends in .mp3 its your filename..

Member Avatar for xorl
0
174
Member Avatar for saneeha
Member Avatar for sivak

thank you for sending me a private message for which I didnt want. Please use google, there are countless examples out there..

Member Avatar for sivak
0
207
Member Avatar for obscured47

You can walk through a library looking for classes that descend from something, and then instantiate those. [code] CommandTemplate newcmd; Console.Write("Loading commands"); Assembly a = null; AssemblyName n = new AssemblyName("mycmds"); a = Assembly.Load(n); foreach (Type t in a.GetTypes()) { if (t.BaseType.Name == "CommandTemplate") { newcmd = (CommandTemplate)Activator.CreateInstance(t); } } …

Member Avatar for obscured47
0
143
Member Avatar for amitj

Did you enable adding records in your datagridview, and if you're manually adding them have you tried adding them to the datasource?

Member Avatar for Jugortha
0
175
Member Avatar for Batol

As you will have read the notices at the top of the forum we wont dish out code, however have you checked with google?

Member Avatar for Batol
0
181
Member Avatar for krany18

If you looked at the line of code its complaining about, its very true. [code]if (cn.State = ConnectionState.Closed)[/code] Your code is incorrect - please use code tags next time.

Member Avatar for vuyiswamb
0
161
Member Avatar for Branimir Corluk
Member Avatar for Tank50

Do a google for filemon - used to be made by sysinternals - MS took over it, monitor what files its trying to read and whats being blocked.. It maybe as simple as its read only

Member Avatar for Tank50
0
119
Member Avatar for sivak
Re: hi

Why do all your questions sound like exam questions - that and you never comment on anything anyone writes to you. An application exception is something you generate such as You dont have permission to do that, a system exception is something the OS generates - eg file not found

Member Avatar for Jugortha
0
74
Member Avatar for poilkjmnb

thats because you made a console application. You need to make a windows library.

Member Avatar for poilkjmnb
0
278
Member Avatar for Choidongwook
Member Avatar for mrkcse
Member Avatar for papuccino1
Member Avatar for sivak

I guess you havent looked in your helpfile... Make a console app, click on the wor d static, press F1 - you have an example and explaination already.

Member Avatar for Jugortha
0
81
Member Avatar for Tank50
Member Avatar for Jugortha
0
115
Member Avatar for sivak

that and you already asked this you act like a spammer [url]http://www.daniweb.com/forums/thread156668.html[/url]

Member Avatar for Jugortha
0
122
Member Avatar for sivak

Have you bothered this time to read the helpfile ?? or is this the same as all your other posts?

Member Avatar for Jugortha
0
159
Member Avatar for ddanbe

Just because a function returns something it isnt always required you want it.. While I havent checked Im fairly sure you can do so with most functions.. in fact things like String s = "this is a test"; s.Replace("s","5"); Doesnt produce the desired effect because it returns a string, but …

Member Avatar for ddanbe
0
193
Member Avatar for papuccino1

If you are unsure how you would go about making it, the best thing is to draw it on paper wnd write down what your doing step by step, so if you take a random shape, you place it in the middle and then describe how you would move it …

Member Avatar for vckicks
0
215
Member Avatar for sivak
Member Avatar for semsql

then somethigns locking the table not just a record - what code do you have?

Member Avatar for semsql
0
138
Member Avatar for sivak

Do you know what asynchronous means? I guess not [url]http://dictionary.reference.com/browse/asynchronous[/url]

Member Avatar for LizR
0
234
Member Avatar for rubentan

If you have an auto incrementing number, you've just described exactly what it is supposed to do, it does not reuse numbers. If you want it to fill in the holes, then you would need to not use an auto increment, and do a routine that works out the holes …

Member Avatar for dickersonka
0
87

The End.