461 Posted Topics

Member Avatar for happygeek

@Michael, don't ruin my childhood. It was all real! I swear! *sobs*

Member Avatar for <M/>
0
170
Member Avatar for tricket_7

> "The Microsoft Jet database engine cannot find the input table or query 'tblCustRecords'. Make sure it exists and that its name is spelled correctly." Check your spelling your database table name correctly to solve that one, and that it is pointing to the correct database.

Member Avatar for Mike Askew
0
162
Member Avatar for Darth Vader

This might be of use: http://social.msdn.microsoft.com/forums/en-US/winforms/thread/94e500c8-6d1b-43bf-9c04-9823597525bf

Member Avatar for exception
0
132
Member Avatar for <M/>

I would say its quality over quantity where posts are concerned to be honest. Anyone can write responses to lots of threads across the forum. Not everyone can give a useful contribution consistently.

Member Avatar for <M/>
0
106
Member Avatar for Akintunde Dare

Use the wonders of Google to find information on the ArcGIS software API, and then read it.

Member Avatar for Mike Askew
-1
46
Member Avatar for lokesh.r.kandula
Member Avatar for Mike Askew
0
169
Member Avatar for persianprez

Forgive me for only skim reading the code quotes as a ton of them, how are you trying to apply the XSL? what language etc? As I see no reference to it in what I skimmed of your above code.

Member Avatar for Mike Askew
0
187
Member Avatar for aleksander.damzi
Member Avatar for myfit

private void UpdateXML(string ElementValue, string NewValue) { XDocument XDoc = XDocument.Load(XmlFileLocation); IEnumerable<XElement> Results = XDoc.Descendants("bookID").Where(node => node.Value == ElementValue); foreach (XElement Node in Results) { Node.SetValue(NewValue); } XmlWriterSettings XmlSettings = new XmlWriterSettings(); XmlSettings.Indent = true; XmlWriter XmlOut = XmlWriter.Create(XmlFileLocation, XmlSettings); XDoc.WriteTo(XmlOut); XmlOut.Flush(); XmlOut.Close(); MessageBox.Show("Done"); } The following you pass an …

Member Avatar for Mike Askew
0
338
Member Avatar for Raju Hasan

articleRichTextBox.SelectAll(); articleRichTextBox.SelectionBackColor = this.BackColor; articleRichTextBox.DeselectAll(); Is how I've cleared selections in the past.

Member Avatar for Mike Askew
0
200
Member Avatar for faroukmuhammad

Keeping with the programming theme, the word `null`. There is no one solution to such issues, BitBit is correct in what he says.

Member Avatar for Xantipius
0
448
Member Avatar for disjes

I can't recreate this behaviour. Ensure the Tab2 is selected first before adding into the TabControl and it should work. Else could you provide a screen shot of what is happening.

Member Avatar for disjes
0
154
Member Avatar for John A
Member Avatar for Mike Askew
0
194
Member Avatar for Programmer629

@Ange1 and there was me thinking hello world was first :( with regards to tutorials, I have a sticky post at the top of this forum which you have failed to read stating exactly what your after.

Member Avatar for Programmer629
0
459
Member Avatar for XEN0
Member Avatar for XEN0
0
269
Member Avatar for Mike Askew

As much as I love watching (most definately not stalking -*shakes head*-) this when I have spare time at work. Would it be possible to add a drop down at the top which could isolate different sections of the website, for example only see activity occuring in the C# forum? …

Member Avatar for Mike Askew
1
148
Member Avatar for Mike Askew

So after seeing the typing test Dani so kindly made the other day and put on the site I decided to kill some time writing a simple application to practice my typing on. I have a RTB containing the text which I'm highlighting as I go type letters to show …

Member Avatar for Mike Askew
0
113
Member Avatar for Dani

I keep instinctively hitting the backspace button when I know I've missed a key :(

Member Avatar for Mike Askew
6
761
Member Avatar for LastMitch

Depends how bad the day was. Sometimes trance can lift me out of a bad mood, other times I just go back to my teenage years and whack the metal on.

Member Avatar for GrimJack
0
580
Member Avatar for Reverend Jim
Member Avatar for tmohney

#Problem One We could firstly here use a switch statement in the Program class, here is some sudo code for it: output "Which wood would you like?" output "1) Mahogany - £160" output "2) Oak - £110" output "Choice: " switch statement using the read input of number 1 or …

Member Avatar for Mike Askew
0
147
Member Avatar for alicia.edberg.1

Issues I've found without running the code (not giving the direct fixes immediately as this is homework) - Line 158, `Console.ReadKey()` does not directly return/convert into a string. - Lines 162 166 and 170, the variable `again` is declared in the `Race` class and thus is not accessible to the …

Member Avatar for Mike Askew
0
2K
Member Avatar for anisha.silva

Radio buttons only allow one to be selected, they are designed for this purpose.

Member Avatar for JOSheaIV
0
230
Member Avatar for Mike Askew

Not sure whether this is anything major or not but noticed it while trawling the source code of the site debating making a small app to monitor when post's replies are changed. There is an error occuring of: `FB.getLoginStatus() called before calling FB.init()` in all.js line 52.

Member Avatar for Mike Askew
0
49
Member Avatar for tboctavan

In addition to Ange1's comments the [following](http://www.daniweb.com/software-development/csharp/threads/437362/getting-started-with-c-the-list) may be of interest, the web tutorials show everything.

Member Avatar for JOSheaIV
0
168
Member Avatar for Anark10n

What are we working with here? XSLT? XPATH? Other? As retrieving the value may differ slightly as a result

Member Avatar for Anark10n
0
187
Member Avatar for xixi.li.7

Run it in debugging and find out what line the exception occurs on.

Member Avatar for Momerath
0
247
Member Avatar for dr_iton

I don't find what your trying to do clear. Nor is the example data any good. Do `Bla Bla` count as an individual? or information relating to `Someone else`? Please consider re-doing the explanation with clarified requirements.

Member Avatar for Mike Askew
0
208
Member Avatar for kirtee2209

I believe @Pritaeas means the following: public class PersonDetailsComparer : IComparer<PersonDetails> { public int Compare(PersonDetails x, PersonDetails y) { if (x.FirstName == "Lever") return 1; if (y.FirstName == "Lever") return -1; int returnValue = 0; if (x != null && y != null && x. FirstName != null && y. …

Member Avatar for kirtee2209
0
133
Member Avatar for NardCake

Have you checked to see the code enters the if statements correctly down the save method call?

Member Avatar for Mike Askew
0
116
Member Avatar for Mike Askew

Just wondering as I've been caught by it twice now. It is intentional that after pressing the code button you can't close the code entry window without first entering some text? So if you accidently press it, it forces me to put a random one letter code block to then …

Member Avatar for Ancient Dragon
0
165
Member Avatar for JOSheaIV

[This](http://www.gutgames.com/post/Clearing-the-Cache-of-a-WebBrowser-Control.aspx) will be of help with clearing a `WebBrowser`'s cache.

Member Avatar for JOSheaIV
0
7K
Member Avatar for jonathan.oberhaus

If the two arrays are directly in sync, ie. position 0 in array one corresponds to position 0 in array two, you can for-loop through the first array and when you find a match, use the current value of the for-loop to access the related second array value. Alternatively you …

Member Avatar for Momerath
0
122
Member Avatar for uva1102
Member Avatar for Mike Askew
0
80
Member Avatar for mayank.dyl

> What about the words you don't know you don't know how to spell? For everything else theres MasterCard. Couldn't help myself, lets hope the quote doesnt go over everyone's head. For those who are really that inclined for a spell checker the wonders of google will find you an …

Member Avatar for tech-ultrasonic
0
437
Member Avatar for nitin1
Member Avatar for chris.stout
0
283
Member Avatar for Kerry W

*Tries to think of a random topic to start a thread on* Nope I can't think of one. Do tell what said feature is.

Member Avatar for ~s.o.s~
0
256
Member Avatar for dwizer

Welcome. Do you know King Julian? He is also from Madagascar or so the film says :o ![71139_26416503057_4870330_n](/attachments/small/3/71139_26416503057_4870330_n.jpg "align-left")

Member Avatar for dwizer
0
99
Member Avatar for Crima
Member Avatar for iamthwee

"American Sniper" Autobiography of, Chris Kyle, the most lethal sniper in U.S history :)

Member Avatar for BitBlt
0
166
Member Avatar for stefilina

Its caused by passing an object to the datasource and not an actual value within the object. Ie. TextBox txtExample = new TextBox(); Console.WriteLine(txtExample.ToString()); //Outputs the literal textbox class to a string Console.WriteLine(txtExample.Text); //Outputs the text field value You need to ensure your not passing a class into the DG.

Member Avatar for stefilina
0
99
Member Avatar for Michael27
Member Avatar for Brick Wall

If you are not limited to the use of arrays this can also be done using a `List<int> NumberList = new List<int>();` This will allow you to use `NumberList.Add();` to add the numbers from your text box. The list also allows for-each looping through its contents which I would prefer …

Member Avatar for Brick Wall
0
6K
Member Avatar for iamthwee

Varies for me as I work away from home and don't venture into hotel gyms to often but generally involves three different sessions across 3-4 days depending on how long im home for. **Push: (chest, shoulders, triceps)** - 5 min warmup on treadmill - Press-ups: 10-9-8-7-6-5-4-3-2-1, couple of seconds rest …

Member Avatar for Mike Askew
0
437
Member Avatar for Mike Askew

Afternoon all, I currently am loading an XSD file from a physical file into memory to validate an XML file. However on loading the file it is containing such escape characters as `\r\n` to keep the formatting the document was originally in. This then causes an exception when loading the …

Member Avatar for Mike Askew
0
139
Member Avatar for Venter

So this question is pretty much identical to [this](http://www.daniweb.com/software-development/xml-xslt-and-xpath/threads/436945/how-can-we-store-the-data-in-xml-from-html) one..

Member Avatar for Mike Askew
0
68
Member Avatar for rexdon
Member Avatar for varma51
Member Avatar for varma51
0
266
Member Avatar for lokesh.r.kandula
Member Avatar for lokesh.r.kandula
0
160
Member Avatar for Dendei

Im amazed nobody has suggested using an out parameter here. public string[] LandsKodComboBox(string[] dendei1, string[] dendei2, out string[] returnDendei) { string[] dendei1 = new string[5]; string[] dendei2 = new string[7]; //assign the array dendei1[2]="hello"; //etc etc.... returnDendei = dendei2; return dendei1; }

Member Avatar for Dendei
0
222

The End.