836 Posted Topics
Re: Sure comes as part of the F1 help key. | |
Re: 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 | |
Re: 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. | |
Re: 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. | |
Re: 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 … | |
Re: 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. | |
Re: Out of interest if you dont set it to maximized, but change the size does it work then? | |
Re: regex is the easiest way to split it, theres many examples on how to split up html using regex out there. | |
Re: 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. | |
| |
Re: 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. | |
Re: 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. … | |
Re: 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 … | |
Re: Um, if its not running directly in the users session then it wont have any mapped drives - as its not the same. | |
Re: 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. | |
Re: on form startup check the current cell location | |
Re: debugging would show wether your mail settings are being picked up for your new smtpclient. If not, it maybe better to set them. | |
Re: You have a lot of operators you can use < <= == >= != (see helpfile for more and info if you havent a clue what they mean) | |
Re: 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. | |
Re: If you do the correct grouping on your data you dont need a before and after. | |
Re: 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 … | |
Re: 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); … | |
Re: 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? | |
Re: 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.. | |
Re: Does it only see fullname? | |
Re: thank you for sending me a private message for which I didnt want. Please use google, there are countless examples out there.. | |
Re: 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); } } … | |
Re: Did you enable adding records in your datagridview, and if you're manually adding them have you tried adding them to the datasource? | |
Re: As you will have read the notices at the top of the forum we wont dish out code, however have you checked with google? | |
Re: 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. | |
Re: 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 | |
Re: 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 | |
Re: thats because you made a console application. You need to make a windows library. | |
Re: google is your friend. Check httpwebresponse and httpwebrequest | |
Re: i guess the obvious imagelist1.images list escaped you? | |
Re: 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. | |
Re: You could recompile your program against the new version. | |
Re: that and you already asked this you act like a spammer [url]http://www.daniweb.com/forums/thread156668.html[/url] | |
Re: Have you bothered this time to read the helpfile ?? or is this the same as all your other posts? | |
Re: 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 … | |
Re: 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 … | |
Re: then somethigns locking the table not just a record - what code do you have? | |
Re: Do you know what asynchronous means? I guess not [url]http://dictionary.reference.com/browse/asynchronous[/url] | |
Re: 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 … |
The End.