blah blah blah is here! blah blah » Close

0
votes
1 answers

search a database value by date(providing format dd/mm/yyyy)

I have saved entry(s) in MS Access database using a form(visual C#.net). Now i want to display it on the screen by searching by date. I am using the following code to do this but there is some problem in it. [code] System.Data.OleDb.OleDb ...

0
votes
1 answers

How to Pass bytearray as ref byte srcbuff C#

The input that i have is a byte array containing bytes of an image e.g. byte[] byteData; string fileName = @"C:\pic3.jp2"; FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read); BinaryReader br = ...

1
votes
1 answers

foreach trough an enum sort by name not by value

Hellow I couldn't find a search function so I do not know if my question's allready answered I can step trough a nummerated enum like: [code] public enum myEnum { STATUS_A = 2, STATUS_B = ...

-1
votes
1 answers

setup creation with the help of visual studio 2005

I want to create a setup by visual studio 2005.when i run this setup on target computer.The .net framework not install on that computer.. i want to that my setup check on traget computer is .net framework install or not.if not then my set ...

0
votes
3 answers

Pass By Reference

eeboy
499

I created a method which accepts a parameter of type List<T>. The method then does some operations which fill this list. Single stepping in debug I can see that it does this correctly. However, when it returns from the method all the ...

1
votes
1 answers

Mutator class, my little expirament

I've created a Mutator class that looks like : [code] namespace Engine.Core.Mutators { public abstract class Mutator { private Dictionary<string, object> _mutatableObjects; private Dictionary<string, ...

Feedback