Click here to Skip to main content
16,005,048 members
Home / Discussions / C#
   

C#

 
AnswerRe: Problem connection string Sybase C# Pin
Guffa10-Jan-06 6:54
Guffa10-Jan-06 6:54 
QuestionSee webcam from another PC Pin
Daniel Santillanes10-Jan-06 5:11
professionalDaniel Santillanes10-Jan-06 5:11 
AnswerRe: See webcam from another PC Pin
Curtis Schlak.10-Jan-06 5:43
Curtis Schlak.10-Jan-06 5:43 
QuestionSynchronization Pin
rakesh_nits10-Jan-06 4:41
rakesh_nits10-Jan-06 4:41 
AnswerRe: Synchronization Pin
Curtis Schlak.10-Jan-06 4:49
Curtis Schlak.10-Jan-06 4:49 
QuestionButton event Pin
Kola Sokol10-Jan-06 4:40
Kola Sokol10-Jan-06 4:40 
AnswerRe: Button event Pin
Curtis Schlak.10-Jan-06 4:44
Curtis Schlak.10-Jan-06 4:44 
GeneralRe: Button event Pin
Kola Sokol10-Jan-06 5:12
Kola Sokol10-Jan-06 5:12 
ok i try this code but my visual express 2005 say^

Error 2 Invalid token '{' in class, struct, or interface member declaration C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 18 9 nebrowser
Error 3 Class, struct, or interface method must have a return type C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 19 13 nebrowser
Error 4 Invalid token '=' in class, struct, or interface member declaration C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 20 41 nebrowser
Error 5 Invalid token '=' in class, struct, or interface member declaration C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 21 56 nebrowser
Error 6 Invalid token '=' in class, struct, or interface member declaration C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 22 52 nebrowser
Error 7 Expected class, delegate, enum, interface, or struct C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 28 17 nebrowser
Error 8 Expected class, delegate, enum, interface, or struct C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 33 17 nebrowser
Error 9 Expected class, delegate, enum, interface, or struct C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 39 17 nebrowser
Error 10 Expected class, delegate, enum, interface, or struct C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 44 17 nebrowser
Error 11 Expected class, delegate, enum, interface, or struct C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 50 17 nebrowser
Error 12 Expected class, delegate, enum, interface, or struct C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 55 16 nebrowser
Error 13 Expected class, delegate, enum, interface, or struct C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 70 17 nebrowser
Error 14 Type or namespace definition, or end-of-file expected C:\Documents and Settings\maiden\My Documents\Visual Studio 2005\Projects\nebrowser\nebrowser\Form1.cs 81 5 nebrowser
========================================


here my app^
[code]
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{

public partial class Form1 : Form
{
public Form2 frm2;

public Form1() { frm2 = new Form2(); }

{
InitializeComponent();
webBrowser1.AllowNavigation = true;
webBrowser1.IsWebBrowserContextMenuEnabled = true;
webBrowser1.WebBrowserShortcutsEnabled = true;

}



private void toolStripButton1_Click(object sender, EventArgs e)
{

}

private string browserURL
{
get { return browserURL.Trim(); }
set { browserURL = value; }
}
// private void browserGoButton_Click(object sender, EventArgs e)
private void browserGoButton3_Click(object sender, EventArgs e)
{
Navigate();
}

private void Navigate()
{

}


private void toolStripTextBox1_Click(object sender, EventArgs e)
{

}

public void button1_Click(object sender, EventArgs e)




{

//Form2 frm2 = new Form2();
frm2.Show();




}

public void button2_Click(object sender, EventArgs e)
{

frm2.Hide();

}




}
}

[/code]

Athlon 64 3500+, Gigabyte GA-K8NXP-9, 2x512 DDR400 Kingston, Inno3d 6200 PCIe, SS2 B2C2 v2.6, HDD := 450gb, Genius 56k int, NEC DVD-RW и мать его Суньмастер 550.

-- modified at 11:26 Tuesday 10th January, 2006
GeneralRe: Button event Pin
exhaulted10-Jan-06 5:38
exhaulted10-Jan-06 5:38 
GeneralRe: Button event Pin
Curtis Schlak.10-Jan-06 5:38
Curtis Schlak.10-Jan-06 5:38 
GeneralRe: Button event Pin
Kola Sokol10-Jan-06 5:42
Kola Sokol10-Jan-06 5:42 
GeneralRe: Button event Pin
Curtis Schlak.10-Jan-06 5:46
Curtis Schlak.10-Jan-06 5:46 
QuestionAdding a record Pin
Leo Smith10-Jan-06 3:53
Leo Smith10-Jan-06 3:53 
AnswerRe: Adding a record Pin
Guffa10-Jan-06 6:18
Guffa10-Jan-06 6:18 
Questionkill application upon query from the database of the server Pin
batmanAgen10-Jan-06 3:28
batmanAgen10-Jan-06 3:28 
AnswerRe: kill application upon query from the database of the server Pin
Steve Maier10-Jan-06 3:47
professionalSteve Maier10-Jan-06 3:47 
GeneralRe: kill application upon query from the database of the server Pin
batmanAgen10-Jan-06 5:02
batmanAgen10-Jan-06 5:02 
GeneralRe: kill application upon query from the database of the server Pin
Dave Kreskowiak10-Jan-06 5:44
mveDave Kreskowiak10-Jan-06 5:44 
GeneralRe: kill application upon query from the database of the server Pin
Steve Maier10-Jan-06 10:53
professionalSteve Maier10-Jan-06 10:53 
QuestionCreating Database during Installation Pin
Taurian11010-Jan-06 3:06
Taurian11010-Jan-06 3:06 
AnswerRe: Creating Database during Installation Pin
Steve Maier10-Jan-06 3:22
professionalSteve Maier10-Jan-06 3:22 
QuestionGACUTIL ??? Pin
faviochilo10-Jan-06 3:05
faviochilo10-Jan-06 3:05 
AnswerRe: GACUTIL ??? Pin
Curtis Schlak.10-Jan-06 3:26
Curtis Schlak.10-Jan-06 3:26 
GeneralRe: GACUTIL ??? Pin
faviochilo10-Jan-06 4:27
faviochilo10-Jan-06 4:27 
GeneralRe: GACUTIL ??? Pin
Curtis Schlak.10-Jan-06 5:00
Curtis Schlak.10-Jan-06 5:00 

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.