472 Posted Topics
My effort to retrieve favicon.ico sometimes fails even though it is found. It fails when attempting to convert the stream into a BMP or an Image using FromStream(), with the ArgumentException, or Parameter Invalid. I've tried all kinds of things to manipulate this and I guess I don't know what … | |
Re: Oh... where to start... Since you do nothing in the Load event, I assume you press a button or something that causes your first noticeable error? Regardless, let's start with your first noticeable error--where does this happen? | |
Re: Just a guess because it's a common error: are you checking for "\\" (double backslash) when checking for the backslash char in your string (e.g. "Maps\\Download\\..."? Backslash is an escape code and you need two of them to translate literal. | |
Re: You would think that MS would have added all of this Parsing to Volume/Path/Filename class by now, but I guess they don't want to piss off some of their partner's value added resales of libraries or something. Anyway, I would resort to searching existing code available at CodeProject or something. … | |
Re: [URL="http://www.w3schools.com/Ajax/Default.Asp"]http://www.w3schools.com/Ajax/Default.Asp[/URL] Please mark as resolved. | |
Re: [QUOTE=seebharath;945568]Hello, I have a treeview control and want to add a node to it at a desired location or as the child of a Certain Node X.The problem is I will know nodename[or the Text displayed ] of X only at runtime. How do I Iterate the tree to find … | |
Re: Gah: I'm having trouble following this thread. Based on the original code you submitted, what is the line of code you want to modify and from what? You can leave out all the "game" details and just tell me the number(s) you need and show me the line(s) please (just … | |
Hi, I have a class object that I have created a DataSource on. e.g.: [code] public class TestDataSource { string fld1; public string Field1 { get { return fld1; } set { fld1 = value; } } } [/code] When the DataSource object is created via the wizard, it will … | |
Re: QUESTIONS: 1) Where/when are you executing this code? 2) Where/how are you setting the value of the string "user"? 3) Can you include the whole code text? | |
Re: If you attach (wire) the following key events to your control, it will limit the chars to uppercase A thru P. You can also modify this code to convert lower chars to upper if you wish. [code] // uses boolean set in KeyDown event to determine whether this was an … | |
Re: [QUOTE=agent154;945050]OK, I think I managed to solve it on my own through reading some examples online, and finding a table of "magic numbers"[/QUOTE] Care to share your "magic" find with the community? | |
Re: You have defined a List containing type Monster, but you have not created any items for the list using the "new" operator. Thus, any attempt to access an element of the array (List) will cause an error. Try using the Add(Monster) method to add the items to your list, then … | |
Re: Some things to check: 1) using subreports pointing to datasource with invalid path 2) are you saving data with report? this used to cause a variety of problems and although it might not be the exact cause, you might get different results if you change this option 3) are the … | |
Re: WriteAllLines will fail if the file already exists and is Read-Only: The following conditions may cause an exception: * The file exists and is read-only. * The path name may be too long. * The disk may be full. You should be sure you put into a try-catch block at … | |
Re: Do you have a line of code where the exception is occurring to show everyone? | |
Re: Don't know that much about it, but I ran across this article on sending facebook and twitter messages a few weeks ago. Maybe it will get you closer to your goal: [URL="http://www.dreamincode.net/iem/display.php?M=327187&C=8e0d5b7e5d902fedbacaeaf6e3b4fa46&S=21&L=1&N=8"]http://www.dreamincode.net/iem/display.php?M=327187&C=8e0d5b7e5d902fedbacaeaf6e3b4fa46&S=21&L=1&N=8[/URL] | |
Re: Try Listbox.FindString to lookup the typed text, then use the returned index to set ListBox.TopIndex = index, which will make those items beginning with your typed text appear at the top of the listbox. | |
Re: It's been years since I worked with CRPE, but I believe you need to create a text field with a formula that uses an expression, such as: [code] if (pmtType == 0) text = "Cheque"; else // or, else if text = "Cash"; [/code] | |
Re: It's hard to determine exactly what/how you are trying to achieve this. If you have a handle to the thread, you could have it Sleep() in a loop until you are ready for it to resume processing: [code] bool suspend = true;// set to false to continue processing void SuspendRun … | |
Name: David Nickname: Dr. Dave, Super Dave (these are very old and nobody uses them anymore) Height: 5'8'' Weight: 150 Hair: Brownish Blonde Eyes: Bluish Green Location: AZ Age: 43 Hobbies: Watching TV (waste of time...I know), shooting pool, playing guitar, laughing as much as possible, cooking, naps, a cold … | |
Re: hello every one,, im really interested in this subject as im doing my graduation project on handwriting recognition i want to ask a specific question.. that is : is there a method that i can know if a circle for example exist in my image ---> d this letter has … |
The End.