Click here to Skip to main content
15,896,154 members
Home / Discussions / C#
   

C#

 
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 
AnswerRe: Localization and Combo Boxes Pin
Colin Angus Mackay9-Jan-09 7:49
Colin Angus Mackay9-Jan-09 7:49 
Questiontoolbox of buttons Pin
abu rakan9-Jan-09 3:58
abu rakan9-Jan-09 3:58 
AnswerRe: toolbox of buttons Pin
User 66589-Jan-09 4:42
User 66589-Jan-09 4:42 
QuestionCrystal reports, Dynamic parameter values not showing up , Static works fine Pin
c0ax_lx9-Jan-09 3:37
c0ax_lx9-Jan-09 3:37 
QuestionHelp Required in Schedular Class Design Pin
Aman Bhullar9-Jan-09 2:11
Aman Bhullar9-Jan-09 2:11 
AnswerRe: Help Required in Schedular Class Design Pin
J4amieC9-Jan-09 2:57
J4amieC9-Jan-09 2:57 
GeneralRe: Help Required in Schedular Class Design Pin
Luc Pattyn9-Jan-09 3:31
sitebuilderLuc Pattyn9-Jan-09 3:31 
AnswerRe: Help Required in Schedular Class Design Pin
Eddy Vluggen9-Jan-09 8:49
professionalEddy Vluggen9-Jan-09 8:49 
QuestionGetting the GMT time Pin
tauras819-Jan-09 2:08
tauras819-Jan-09 2:08 
AnswerRe: Getting the GMT time Pin
User 66589-Jan-09 2:15
User 66589-Jan-09 2:15 

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.