About 380 results
Open links in new tab
  1. how to write a code for withdrawal using C#

    Saturday, August 2, 2014 8:29 PM 0 Sign in to vote i tried it but it say i can't convert type string to int Saturday, August 2, 2014 10:15 PM 0 Sign in to vote i tried it but it say i can't convert type string to …

  2. Input string was not in a correct format. How it can be possible.

    Oct 7, 2021 · The first parameter is the input string, the second out parameter is the converted double value and it returns a boolean telling you if the conversion succeeded or not.

  3. Cannot convert from 'Method Group' to 'String' & The best overloaded ...

    Apr 10, 2008 · I honestly can't recommend that you combine all that code into a single method. You are tightly coupling your code to ASP.NET, a database connection string and a database. But that is a …

  4. Converting input string to color. - social.msdn.microsoft.com

    May 14, 2010 · public static Color HexToColor (String hexString) // Translates a html hexadecimal definition of a color into a .NET Framework Color. // The input string must start with a '#' character …

  5. How to convert the .hex file to .bin file in C#

    Oct 7, 2021 · There is no need to code tons of codes, loops, to convert hex to binary string. Convert.ToInt32 function is very useful for this purpose. Let's convert the "A" character to binary format.

  6. C# - Convert the .doc/.docx to .rtf or .txt when choosing the file in ...

    Jan 8, 2016 · Is there a possibility to choose a Microsoft Word document (.doc or .docx) in openFileDialog and then it will be converted to .rtf or .txt before being loaded into RichTextBox1? I …

  7. enum value is NOT a constant value??? - social.msdn.microsoft.com

    May 10, 2004 · A switch case requires a constant expression. When you use tostring () you are changing the value to a string, so it is no longer constant. Just assign the switch case variables to a …

  8. Cannot convert type 'int' to 'string' - social.msdn.microsoft.com

    Jan 30, 2004 · As mentioned above, you cannot cast a numeric type (in this case a deicmal) to a string type or vice-versa. You can only cast between similar types (e.g. decimal to int).

  9. How to Send SMS using HTTP API in c#.net - social.msdn.microsoft.com

    Oct 7, 2021 · You will need to use some type of service most likely to perform this, especialy if you are going to be performing it on a large scale.

  10. how to convert a string to VARBINARY before saving in sql server …

    Oct 16, 2021 · The problem is that I do not have any idea how to convert the string representing the social security number, into a data type of VARBINARY before calling my C# code which saves the …