Search

You searched for the word(s): userid:66726

Matching Posts

  • Re: In c#, what does & mean?

    ahhhh, now it all makes sense. Thanks again to all, really appreciate it!!
    Posted to Getting Started (Forum) by wysiwyg on 4/30/2008
  • Re: In c#, what does & mean?

    Thanks to all who responded. Please bear with me guess i need to brush up on how binary works. Why does 00000001 and 00000010 return 00000000? And 00000001 and 00000011 return 00000001?
    Posted to Getting Started (Forum) by wysiwyg on 4/30/2008
  • Re: In c#, what does & mean?

    [quote user="mbanavige"] The & is used to perform a bitwise AND operation http://msdn.microsoft.com/en-us/library/6a71f45d(VS.71).aspx [/quote] Thanks for the link but i still do not understand why 1 & 2 is false, but (1 & 3) is true?!?
    Posted to Getting Started (Forum) by wysiwyg on 4/30/2008
  • Re: In c#, what does & mean?

    ConvertToBoolean(1 & 2) returns false, so it is not concatenating.
    Posted to Getting Started (Forum) by wysiwyg on 4/30/2008
  • In c#, what does & mean?

    I am sure this is a simple one but i just cant figure this out. In c#, && means "AND", if you want to concatenate, you use "+". So what does & do? I have the following code: bool b = Convert.ToBoolean(1 & 2) <-- b returns false bool b = Convert.ToBoolean(1 & 3) <-- b returns true bool b = Convert.ToBoolean(2 & 4) <-- b returns false Help anyone?
    Posted to Getting Started (Forum) by wysiwyg on 4/30/2008
  • Re: Document.SelectNodes

    Thanks for all the responses. As mentioned, the string is a much simplified version of the string I am working with, this is what actually gets returned: <sqlresultstream:SqlRowSet xsi:type="sqlsoaptypes:SqlRowSet" msdata:UseDataSetSchemaOnly="true" msdata:UDTColumnValueWrapped="true" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sqlresultstream="http://schemas.microsoft.com
    Posted to Getting Started (Forum) by wysiwyg on 4/1/2008
  • Document.SelectNodes

    Hi all, I have this xml string that is returned (simplified for the purpose of this post): <Data><row><row1Data></row><row><row2Data></row></Data> What I wanted to do is to grab all the <row> elements into a string by doing these: nodelist = xmlDoc.SelectNodes("//row"); nodelist = xmlDoc.SelectNodes("//Data/row"); But the nodelist always returned 0 count. I must be missing something but i just cant figure out what it is. Any
    Posted to Getting Started (Forum) by wysiwyg on 4/1/2008
  • Re: AJAX on client

    Thanks for the clarification!!
    Posted to Getting Started (Forum) by wysiwyg on 2/10/2008
  • Re: Debugging web service stopped working

    Honestly, i think it all started after installling framework 3.0 So anyone? Which dll should i be looking for for my web service in the modules window? Thanks in advance.
    Posted to Getting Started (Forum) by wysiwyg on 2/7/2008
  • Re: AJAX on client

    Thank you. I have been reading posts on what needs to be installed on the production server. There are different answers from the posts i have read. Some said just run this file will do: ASPAJAXExtSetup.msi, some say otherwise. I would have tested on production if i could, but off limit =( Thanks in advance for any clarification.
    Posted to Getting Started (Forum) by wysiwyg on 2/7/2008
Page 1 of 36 (357 items) 1 2 3 4 5 Next > ... Last »