blah blah blah is here! blah blah » Close

0
votes
1 answers

Moving from Console to Windows Form

Hi, I am trying to move from Console to Windows Form. I have a workable program in Console but I wish to send it Windows Form. There is a problem over the "static void .... () {}" blocks and I wish also to know how to easily fi ...

0
votes
0 answers

Word document parsing in db using asp.net

I just got a requirement from my boss to write a code in c# which can read the resumes of the canditates from a particular location and then parse it so that name goes to the name field in the db and address goes to address dield of the tab ...

2
votes
3 answers

C# to display different texts at different time, with a click of a button.

this may seem trivial, but I still have not figured out how to do it. private void button1_Click(object sender, EventArgs e) { textBox1.Text = "Waiting..."; System.Threading.Thread.Sleep(5000 ...

0
votes
0 answers

Mobile English to French Language Translation with text and Speech Output Internet Connection Problem

I am having my thesis as of now, our topic is about mobile language translation. Unlike other applications, we won't be incorporating any data dictionary in our proposed application, rather, we would be using third party language service pr ...

-1
votes
2 answers

how to make my appln to look in professional way.!??

what i'am asking is that.., i'want my appln to install to C:\Program Files\... and also i'want to add it to appwiz.cpl (control panel -> Programs and features).., also reply how to UnInstall the software from appwiz.cpl.., plz hel ...

0
votes
1 answers

C# Winforms to detect sudden power shutdown.

if a Winform is running, and sudden power shutdown occurs, would it able to send alert, such as email alert. I attached some sample code which is able to detect the system log-off and send email alert, but I would like it to be able to dete ...

0
votes
6 answers

Storing byte[] value

Hi all, In my project, at one point, I get the result in byte[], which I change to string to display in further textboxes. I can also store the same in the database too. My question is, is it possible to work directly on the returned ...

-1
votes
1 answers

“Databind is not a member of system.windows.forms.datagridview”

Imports system.IO Public Class ExcelImpoter Private Sub btnexcelfile_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnexcelfile.Click Dim excelfilepath As FileInfo = New FileInfo("E:\Exp ...

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) { ...

1
votes
1 answers

String to Form

I am trying to make an application where there is a textbox and what you type in the box is the name of the form that shows, does anyone know how to convert strings into forms in Visual C#?

0
votes
1 answers

Displaying double value in Textbox

Following is the code: private void button1_Click(object sender, EventArgs e) { Globals.Turbo.GetPosition(Globals.device_number, 1, 0, out Globals.motorPos); X_Encoder_Pos.Text = Global ...

Feedback