Click here to Skip to main content
15,921,841 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to export a bitmap from a crystal report? Pin
DaveyM6913-Jan-09 1:13
professionalDaveyM6913-Jan-09 1:13 
GeneralRe: How to export a bitmap from a crystal report? Pin
DaveyM6913-Jan-09 1:14
professionalDaveyM6913-Jan-09 1:14 
QuestionHow to play flash Pin
Sokka939-Jan-09 5:59
Sokka939-Jan-09 5:59 
AnswerRe: How to play flash Pin
EliottA9-Jan-09 6:11
EliottA9-Jan-09 6:11 
GeneralRe: How to play flash Pin
scottgp9-Jan-09 6:27
professionalscottgp9-Jan-09 6:27 
GeneralRe: How to play flash Pin
EliottA9-Jan-09 6:29
EliottA9-Jan-09 6:29 
GeneralRe: How to play flash Pin
scottgp9-Jan-09 6:38
professionalscottgp9-Jan-09 6:38 
AnswerRe: How to play flash Pin
stormwild9-Jan-09 6:24
stormwild9-Jan-09 6:24 
GeneralRe: How to play flash Pin
Sokka939-Jan-09 8:06
Sokka939-Jan-09 8:06 
QuestionHow do I pass a wildcard to a data source query Pin
Dan Neely9-Jan-09 5:50
Dan Neely9-Jan-09 5:50 
AnswerRe: How do I pass a wildcard to a data source query Pin
Jason C Bourne9-Jan-09 7:06
Jason C Bourne9-Jan-09 7:06 
GeneralRe: How do I pass a wildcard to a data source query Pin
Dan Neely9-Jan-09 7:35
Dan Neely9-Jan-09 7:35 
QuestionRe: How do I pass a wildcard to a data source query Pin
Eddy Vluggen9-Jan-09 8:43
professionalEddy Vluggen9-Jan-09 8:43 
AnswerRe: How do I pass a wildcard to a data source query Pin
Dan Neely9-Jan-09 10:41
Dan Neely9-Jan-09 10:41 
AnswerRe: How do I pass a wildcard to a data source query Pin
Eddy Vluggen9-Jan-09 11:00
professionalEddy Vluggen9-Jan-09 11:00 
GeneralRe: How do I pass a wildcard to a data source query Pin
Dan Neely9-Jan-09 11:12
Dan Neely9-Jan-09 11:12 
GeneralRe: How do I pass a wildcard to a data source query Pin
Eddy Vluggen9-Jan-09 11:45
professionalEddy Vluggen9-Jan-09 11:45 
QuestionAccessing array in struct from other class Pin
Blubbo9-Jan-09 4:52
Blubbo9-Jan-09 4:52 
An engineer was trying to set this up to access the Usage string array in struct from main.cs class. see code snippets below. The problem is that the object variable uArray can't see the Usage array from the struct. Can anyone help me to get the string array of Usage in main.cs?

<Code snippet>
// InfoTable.cs
using System;
using System.Collections.Generic;
using System.Text;

namespace infoTable
{
public class InfoTable
{
private struct InfoStruct
{
public string[] Usage;
public string[,] Line;
}

int DLLVer = 1000;
ACMEStruct ACME = new ACMEStruct();

public ACME_Info()
{
ACME.UsageCodes = new string[255];
ACME.UsageCodes[0] = "lab 0";
ACME.UsageCodes[4] = "lab 4";
ACME.UsageCodes[5] = "lab 5";
}

public object GetACMEValues()
{
return ACME;
}
}
}

// main.cs
private void readUsageArray()
{
InfoTable iTable = new InfoTable();
object uArray = iTable.GetACMEValues();
}
AnswerRe: Accessing array in struct from other class Pin
Ben Fair9-Jan-09 5:30
Ben Fair9-Jan-09 5:30 
Questiontext resize in my web page Pin
bhatted9-Jan-09 4:51
bhatted9-Jan-09 4:51 
AnswerRe: text resize in my web page [modified] Pin
EliottA9-Jan-09 5:18
EliottA9-Jan-09 5:18 
GeneralRe: text resize in my web page Pin
bhatted9-Jan-09 6:05
bhatted9-Jan-09 6:05 
GeneralRe: text resize in my web page Pin
EliottA9-Jan-09 6:08
EliottA9-Jan-09 6:08 
QuestionRe: text resize in my web page Pin
Eddy Vluggen9-Jan-09 8:45
professionalEddy Vluggen9-Jan-09 8:45 
QuestionLocalization and Combo Boxes Pin
belzer9-Jan-09 4:42
belzer9-Jan-09 4:42 

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.