blah blah blah is here! blah blah » Close

0
votes
0 answers

How to convert HTML to TIFF in C#

Hello, Do you have an code example of how i can convert a html page to TIFF? Thanks

0
votes
1 answers

Swf to exe ( not projector)

Is it possible to play flash without flash-player installed? I heard that SWF file and flash player itself may be included into one EXE file. It cannot be decided with creating projector. Please Help!

0
votes
2 answers

Converting .xls file to .csv format and storing it into sql server nVarchar column

Hi, As per my requirement, i have a .xls file which I have to convert it to csv format and store it in existing nVarchar column of Sql server DB. Is it posible ? Or else I am already passing the byte[] of .xls file through my serv ...

0
votes
4 answers

How to use a string as a name of a variable in c#

Hi mates, How to use a string , to be a variable name, for example suppose X="WELL" then I want to have an array with this name -> double [] WELL = new double[10]; more specifically I want to create a set of arraies, in ...

-2
votes
1 answers

Help with homework

I have to answer the question. What built in function converts a string to an integer (include parentheses but no argument)? in c# I am a beginner at this and am struggling to find out how to do this. Can anyone help please?

1
votes
3 answers

Convert Double Values to Char

I want to convert Double Values (including the decimal place) to Character and store them as bytes. I follow the simple instructions from http://social.msdn.microsoft.com/forums/en-US/vclanguage/thread/d606a107-d093-4f00-b585-cdf97f09 ...

0
votes
1 answers

C# - Converting a string to a double with textboxes

in my program I am using a database containing a product name and product cost that is associated with the product. On my form I have several comboboxes for several categories of products , with a textbox beside each combobox. When I select ...

0
votes
4 answers

convert string to decimal using C#

Textbox populated with sql query value which is a decimal. Values are in a textbox so they can be edited. I need to upload edited values back into sql table using C#. Error message: Input string was not in a correct format. Code in aspx ...

2
votes
2 answers

Converting a string to respective enum value

This may be an obvious question, but: How do you convert a string representation of an enum value in to the respective value? For example: [code] public enum TestEnum : byte { FirstValue = 1, SecondValue = 2 } static void ...

0
votes
1 answers

Convert String from HEX to DEC to ASCII.

I need to have this conversion, from HEX to DEC to ASCII. or if possible, direct conversion from HEX to ASCII. e.g input string = 01344583 (HEX) intermediate string = 20202883 (DEC) string abc = "01344583"; int def = i ...

0
votes
2 answers

Cannot implicitly convert 'System.Uri" to 'string'

Hi, I'm making a web browser in visual C# and I need to make the address bar change when a new page loads. Here is the code I am using: private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { ...

Feedback