Jump to content
Software FX Community

C# examples


User (Legacy)

Recommended Posts

  • 1 month later...

Its very simple translate VB.Net code to C#

[]s

caca

______________________

visit my web site

www.byteshift.com

______________________

"Robert Fuchs" <software@microfox.donotspam.at> wrote in message

news:mOXdEPumCHA.1060@webserver1.softwarefx.com...

> > > In the download there are only VB examples, not very useful to me

> :-(

> > >

> > > Are there any C# samples to download?

> > >

> > > regards, robert

>

>

> I am urgently looking for some C# samples. Any out there?

>

> regards, Robert

>

Link to comment
Share on other sites

Its very simple translate VB.Net code to C#

[]s

caca

______________________

visit my web site

www.byteshift.com

______________________

"Robert Fuchs" <software@microfox.donotspam.at> wrote in message

news:mOXdEPumCHA.1060@webserver1.softwarefx.com...

> > > In the download there are only VB examples, not very useful to me

> :-(

> > >

> > > Are there any C# samples to download?

> > >

> > > regards, robert

>

>

> I am urgently looking for some C# samples. Any out there?

>

> regards, Robert

>

Link to comment
Share on other sites

Here you go:

private void DrawChart()

{

chartPreview.ClearData(SoftwareFX.ChartFX.Lite.ClearDataFlag.Values);

chartPreview.OpenData(SoftwareFX.ChartFX.Lite.COD.Values, 1, 6);

for(int i = 0; i < 6; i++)

{

chartPreview.Value[0, i] = 3; // heres where you would put in your

values

}

chartPreview.CloseData(SoftwareFX.ChartFX.Lite.COD.Values);

}

"Robert Fuchs" <software@microfox.donotspam.at> wrote in message

news:vutGBKxtCHA.2076@webserver1.softwarefx.com...

> > Its very simple translate VB.Net code to C#

>

> haha ;-)

> I don't know VB, so what?

> I've been looking for a VB.NET/C# converter, but didn't find one.

>

> regards, Robert

>

>

---

Outgoing mail is certified Virus Free.

Checked by AVG anti-virus system (http://www.grisoft.com).

Version: 6.0.435 / Virus Database: 244 - Release Date: 30/12/2002

Link to comment
Share on other sites

Here you go:

private void DrawChart()

{

chartPreview.ClearData(SoftwareFX.ChartFX.Lite.ClearDataFlag.Values);

chartPreview.OpenData(SoftwareFX.ChartFX.Lite.COD.Values, 1, 6);

for(int i = 0; i < 6; i++)

{

chartPreview.Value[0, i] = 3; // heres where you would put in your

values

}

chartPreview.CloseData(SoftwareFX.ChartFX.Lite.COD.Values);

}

"Robert Fuchs" <software@microfox.donotspam.at> wrote in message

news:vutGBKxtCHA.2076@webserver1.softwarefx.com...

> > Its very simple translate VB.Net code to C#

>

> haha ;-)

> I don't know VB, so what?

> I've been looking for a VB.NET/C# converter, but didn't find one.

>

> regards, Robert

>

>

---

Outgoing mail is certified Virus Free.

Checked by AVG anti-virus system (http://www.grisoft.com).

Version: 6.0.435 / Virus Database: 244 - Release Date: 30/12/2002

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...