Click here to Skip to main content
15,904,653 members
Home / Discussions / C#
   

C#

 
AnswerRe: Keyword not supported: 'initial catalogue'. Pin
Md. Marufuzzaman23-Dec-09 0:49
professionalMd. Marufuzzaman23-Dec-09 0:49 
AnswerRe: Keyword not supported: 'initial catalogue'. Pin
hamed-vojdani25-Dec-09 23:37
hamed-vojdani25-Dec-09 23:37 
QuestionC# dll's in VB6. Pin
Syed Shahid Hussain22-Dec-09 23:48
Syed Shahid Hussain22-Dec-09 23:48 
AnswerRe: C# dll's in VB6. Pin
Vimalsoft(Pty) Ltd22-Dec-09 23:58
professionalVimalsoft(Pty) Ltd22-Dec-09 23:58 
GeneralRe: C# dll's in VB6. Pin
Syed Shahid Hussain23-Dec-09 0:24
Syed Shahid Hussain23-Dec-09 0:24 
GeneralRe: C# dll's in VB6. Pin
Vimalsoft(Pty) Ltd23-Dec-09 0:58
professionalVimalsoft(Pty) Ltd23-Dec-09 0:58 
AnswerRe: C# dll's in VB6. Pin
Sunil Pandita23-Dec-09 0:46
Sunil Pandita23-Dec-09 0:46 
GeneralRe: C# dll's in VB6. Pin
Syed Shahid Hussain23-Dec-09 3:42
Syed Shahid Hussain23-Dec-09 3:42 
QuestionUpdate parent form control status from child form [modified] Pin
hemant.kaushal22-Dec-09 22:44
hemant.kaushal22-Dec-09 22:44 
AnswerRe: Update parent form control status from child form Pin
Sunil Pandita23-Dec-09 0:52
Sunil Pandita23-Dec-09 0:52 
AnswerRe: Update parent form control status from child form Pin
EliottA23-Dec-09 3:22
EliottA23-Dec-09 3:22 
Questionc# hide/remove properties from propertygrid Pin
Member 206816922-Dec-09 22:24
Member 206816922-Dec-09 22:24 
AnswerMessage Closed Pin
22-Dec-09 22:45
stancrm22-Dec-09 22:45 
GeneralRe: c# hide/remove properties from propertygrid Pin
Member 206816922-Dec-09 22:55
Member 206816922-Dec-09 22:55 
GeneralMessage Closed Pin
22-Dec-09 23:31
stancrm22-Dec-09 23:31 
GeneralRe: c# hide/remove properties from propertygrid Pin
Member 206816923-Dec-09 1:02
Member 206816923-Dec-09 1:02 
GeneralRe: c# hide/remove properties from propertygrid Pin
Jordon4Kraftd23-Dec-09 10:50
Jordon4Kraftd23-Dec-09 10:50 
QuestionHelp, multiple projects solution . Pin
Kobi_Z22-Dec-09 22:13
Kobi_Z22-Dec-09 22:13 
AnswerRe: Help, multiple projects solution . Pin
MatthysDT22-Dec-09 22:36
MatthysDT22-Dec-09 22:36 
GeneralRe: Help, multiple projects solution . Pin
Kobi_Z22-Dec-09 23:23
Kobi_Z22-Dec-09 23:23 
AnswerRe: Help, multiple projects solution . Pin
MatthysDT22-Dec-09 23:39
MatthysDT22-Dec-09 23:39 
I created the project on my side and it works just fine, here's my code:

C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using VBApplication;

namespace CSApplication1 {
	public partial class Form1 : Form {
		public VBForm1 vbf;
		public Form1() {
			InitializeComponent();
			vbf = new VBForm1();
			vbf.Show();
		}

		private void button1_Click(object sender, EventArgs e) {
			vbf.Label1.Text = "Hello World!";
		}
	}
}



VB

No code on the VB side, I only added a label on the form and changed it's Modifiers to Public.


modified on Wednesday, December 23, 2009 5:56 AM

GeneralRe: Help, multiple projects solution . Pin
V.22-Dec-09 23:55
professionalV.22-Dec-09 23:55 
AnswerRe: Help, multiple projects solution . Pin
OriginalGriff22-Dec-09 23:47
mveOriginalGriff22-Dec-09 23:47 
AnswerRe: Help, multiple projects solution . Pin
#realJSOP23-Dec-09 0:22
professional#realJSOP23-Dec-09 0:22 
QuestionHow do I remove the default support URL from my custom EventLog entry? Pin
MatthysDT22-Dec-09 21:49
MatthysDT22-Dec-09 21:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.