472 Posted Topics

Member Avatar for DdoubleD

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 …

Member Avatar for DdoubleD
0
174
Member Avatar for FJones

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?

Member Avatar for DdoubleD
0
219
Member Avatar for GoS-ExiGo

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.

Member Avatar for GoS-ExiGo
0
77
Member Avatar for darab
Member Avatar for agent154

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. …

Member Avatar for agent154
0
152
Member Avatar for sivak
Re: ajax

[URL="http://www.w3schools.com/Ajax/Default.Asp"]http://www.w3schools.com/Ajax/Default.Asp[/URL] Please mark as resolved.

Member Avatar for DdoubleD
0
52
Member Avatar for seebharath

[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 …

Member Avatar for seebharath
0
153
Member Avatar for thanatos1

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 …

Member Avatar for DdoubleD
0
192
Member Avatar for DdoubleD

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 …

Member Avatar for DdoubleD
0
136
Member Avatar for Rhuntsman21

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?

Member Avatar for hemaljoes
0
165
Member Avatar for Dmennite

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 …

Member Avatar for Dmennite
0
201
Member Avatar for agent154

[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?

Member Avatar for DdoubleD
0
508
Member Avatar for Basicgear

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 …

Member Avatar for kvprajapati
0
117
Member Avatar for hemaljoes

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 …

Member Avatar for DdoubleD
0
166
Member Avatar for FJones

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 …

Member Avatar for FJones
0
161
Member Avatar for SammiSmi

Do you have a line of code where the exception is occurring to show everyone?

Member Avatar for serkan sendur
0
68
Member Avatar for pearllyn

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]

Member Avatar for Dmennite
0
182
Member Avatar for laghaterohan

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.

Member Avatar for DdoubleD
0
149
Member Avatar for Dimansu

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]

Member Avatar for kvprajapati
0
103
Member Avatar for kashn

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 …

Member Avatar for castegna
0
137
Member Avatar for DdoubleD

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 …

0
43
Member Avatar for manar

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 …

Member Avatar for tayspen
0
277

The End.