Forum: C# Mar 11th, 2009 |
| Replies: 4 Views: 374 Thats a heck of a lot of code.
Work with something smaller, its easier for us, and easier for you as you end up with a small snippet with only whats needed in it
If you just read the files from... |
Forum: C# Mar 10th, 2009 |
| Replies: 2 Views: 408 You're using the wrong event.. Have a look at the others (I know this has been discussed before, I thought even with you) |
Forum: C# Mar 10th, 2009 |
| Replies: 1 Views: 1,271 UDP stuff is always harder to work with as you cant guarentee its arrival. Have you tried a packet sniffer on the recieving end to ensure its getting there? |
Forum: C# Mar 9th, 2009 |
| Replies: 1 Views: 231 Well, thats a little ambiguous
if you have an array of things
such as
Thing[] mythings = new Thing[100]; |
Forum: C# Mar 9th, 2009 |
| Replies: 1 Views: 234 for question 1 - surely data binding would be sufficient?
for question 2 - ok? what actual problem are you having with doing this?
for question 3 - its the file open dialog.. While it doesnt... |
Forum: C# Mar 6th, 2009 |
| Replies: 22 Views: 1,403 So you have some how to run a process code, and send it parameters..
When you have some code to show, come back with any problems - be sure to include the relevant code, and whats happening/not... |
Forum: C# Mar 6th, 2009 |
| Replies: 7 Views: 520 regexpressions arent hard, but rather than just stumble about go to http://RegExpStudio.com and play with the studio product, it will help you undertand more. |
Forum: C# Mar 6th, 2009 |
| Replies: 3 Views: 313 As for the "no copy" you will struggle with that as it takes very little to put a proxy in between and log the URLs and download the data - unless you do it in some exceedingly unique and encrypted... |
Forum: C# Mar 6th, 2009 |
| Replies: 4 Views: 413 um
Thats not a class, thats just a method
You would need to pass the treeview, or return collection of nodes. |
Forum: C# Mar 6th, 2009 |
| Replies: 4 Views: 413 Well it depends a lot on whats in your mytreenodeclass.
Short answer is, pass the URL in the constructor. |
Forum: C# Mar 5th, 2009 |
| Replies: 5 Views: 540 There are ways you could improve it, but its on the right track.
Something you might want to investigate are the "mod" or % maths functionality |
Forum: C# Mar 5th, 2009 |
| Replies: 5 Views: 540 As I said you need to copy out the relevant "frame" from within your big picture. Doing it into an array is often easiest to code with later.
so if your picture was in the format
1 2 3 4
5 6 7... |
Forum: C# Mar 5th, 2009 |
| Replies: 7 Views: 447 The free one that comes with visual studio .. |
Forum: C# Mar 5th, 2009 |
| Replies: 2 Views: 352 What Id suggest is look at the value of qry, check it visually for validity, if ok, then run it direct in something like msaccess or sql query builder or such, and see if you get an error, such as... |
Forum: C# Mar 5th, 2009 |
| Replies: 7 Views: 447 Do be aware that the dev SQL server has limited connections too. |
Forum: C# Mar 5th, 2009 |
| Replies: 4 Views: 1,272 Long as you add them as resources you can use them |
Forum: C# Mar 5th, 2009 |
| Replies: 19 Views: 949 It gets really tiring to see people who dont try and then expect others here to do the work. I know theres no date format that does the suffix, which is why I got you to look. If you google there are... |
Forum: C# Mar 5th, 2009 |
| Replies: 7 Views: 520 So, you didnt bother with the other half of my post then.
You dont seem to be debugging your code, as you dont seem to be able to show me what you found.. only that "heres some code, you look for... |
Forum: C# Mar 5th, 2009 |
| Replies: 3 Views: 1,734 biggest problem you will have is when summertime kicks in (or daylight savings whatever its called where you are) as its not all done at the same time the world over. |
Forum: C# Mar 5th, 2009 |
| Replies: 19 Views: 949 So you didnt look.
and before you say you did..
I typed
DateTime.ToString("dd mm yyyy");
placed cursor on ToString
Pressed F1
Got help |
Forum: C# Mar 5th, 2009 |
| Replies: 3 Views: 313 |
Forum: C# Mar 5th, 2009 |
| Replies: 7 Views: 520 OK, so what happened when you did it..
You know how it goes show your code, show what happened, show what you found but werent expecting.. |
Forum: C# Mar 5th, 2009 |
| Replies: 2 Views: 737 Have a google, its called recursion. |
Forum: C# Mar 5th, 2009 |
| Replies: 5 Views: 540 Well, your bmp, is it done the standard way of having in effect the 8 pictures side by side in say a 2 row, 4 column format? If so you have to copy the relevant "frame" out of that picture and place... |
Forum: C# Mar 4th, 2009 |
| Replies: 19 Views: 949 Take a read of the helpfile, there are many date/time formats, its very simple, but you should start reading for yourself what options you have. |
Forum: C# Mar 4th, 2009 |
| Replies: 4 Views: 825 if you mean the event where a user presses windows+L or ctrl+alt+del+lock do a google on windows hooks and locking screen |
Forum: C# Mar 4th, 2009 |
| Replies: 1 Views: 549 Well. Debug, watch what happens as you go through the stages.. Especially looking at the newFont.Style property |
Forum: C# Mar 4th, 2009 |
| Replies: 7 Views: 520 Um, you could put exactly that in (with double \\ marks obviously) why what problem you having with it? |
Forum: C# Mar 4th, 2009 |
| Replies: 2 Views: 499 if the white border is in the graphic, first thing Id say would be remove it from the graphic, if its not, you could consider programattically making the picture smaller.. |
Forum: C# Mar 4th, 2009 |
| Replies: 22 Views: 1,403 OK, so whatever "cleartool.exe" does, you have a filename, do you know how to run cleartool.exe on a specific file from a command line for example? |
Forum: C# Mar 3rd, 2009 |
| Replies: 19 Views: 949 I was trying to get you to look at the datetime functions for yourself to find the things like tryparse..
Perhaps you will now try and do a search on date time formats. |
Forum: C# Mar 3rd, 2009 |
| Replies: 19 Views: 949 Have you considered that you are reinventing the wheel?
Perhaps there is a function of the datetime variety that will do all this for you.. |
Forum: C# Mar 3rd, 2009 |
| Replies: 13 Views: 1,658 Please search this forum, this has been answered a number of times before. |
Forum: C# Mar 3rd, 2009 |
| Replies: 5 Views: 1,502 error 2 is caused by
string[] allData = sr.ReadLine();
Read what it says. It tells you what the ReadLine returns, and whats wrong with your line.
The first error is to do with your second... |
Forum: C# Mar 3rd, 2009 |
| Replies: 2 Views: 435 |
Forum: C# Mar 3rd, 2009 |
| Replies: 22 Views: 1,403 You've not bothered with code tags which makes reading it difficult
you redeclare secArray as a local array, so its out of scope. |
Forum: C# Mar 3rd, 2009 |
| Replies: 14 Views: 2,448 best answer get a book and follow through the things it asks you to make |
Forum: C# Mar 3rd, 2009 |
| Replies: 10 Views: 851 With everything in .net being a class/object, what I think he means is if you were in c++ or any other lanugage, a data type such as int/string/char etc has no methods, its a datatype, whereas in... |
Forum: C# Mar 2nd, 2009 |
| Replies: 14 Views: 2,448 then convert the strings to the same casing and test after. |
Forum: C# Mar 2nd, 2009 |
| Replies: 6 Views: 1,190 ah but then you'd expect the bits to be circles not squares :P |