Forum: C# Jan 21st, 2009 |
| Replies: 1 Views: 301 Platform Builder is a tool for building a Windows CE Operating system on your computer and then loading it on a Windows CE device.
All this is done through Platform Builder. And I do it all... |
Forum: C# Jan 13th, 2009 |
| Replies: 4 Views: 977 What is the point of using set and get in C Sharp?
It seems variables are used differently in this language than in C++.
For some reason, you have to have a static variable defined like this:
... |
Forum: C# Dec 1st, 2008 |
| Replies: 4 Views: 738 I have done a few things. I have created a console app to use as the front-end to the project. Then I have added the DLL as a reference like this:
1) In the Solution Explorer right-click... |
Forum: C# Nov 30th, 2008 |
| Replies: 4 Views: 738 After someone creates a DLL in C# using the Microsoft Visual development environment, how would another programmer take that code, make a new project that includes the DLL's source and make a GUI... |
Forum: C# Feb 7th, 2008 |
| Replies: 1 Views: 2,199 How do you pass an array of integers as an argument to a method in C#? |
Forum: C# Feb 1st, 2008 |
| Replies: 2 Views: 532 Is a COM object included in a project in the C# IDE much like it is in VB where you so include it graphically in a design view? |
Forum: C# Feb 1st, 2008 |
| Replies: 2 Views: 609 While trying to run someone elses example code, Visual Studio 2005 never produced an executable even though the build process was successful. Do you have any idea why this might be? |
Forum: C# Jan 31st, 2008 |
| Replies: 4 Views: 2,774 That did not work.
Maybe there is a problem with the way I am using the DLL. How do I simply add a DLL to a project and expose its methods? All I am doing is this so far. I have added the DLL... |
Forum: C# Jan 26th, 2008 |
| Replies: 2 Views: 8,781 How do I find the Process ID of a program? I need to know it to attach a process for WinDbg. And, yes, I tried googling this question but everything seemed to be for a Linux system. |
Forum: C# Jan 24th, 2008 |
| Replies: 4 Views: 2,774 I thought that my problem was how I was declaring a manifest file.
But now I think I can safely rule this out.
I think the probem lies in the way I am loading the DLL/COM object
that the... |
Forum: C# Jan 24th, 2008 |
| Replies: 13 Views: 6,985 using System.Windows.Forms;
fixed the problem.
I got this compile message:
error CS0103: The name 'MessageBox' does not exist in the current context
But not now.
Muchas Gracias |
Forum: C# Jan 24th, 2008 |
| Replies: 13 Views: 6,985 There must be some sort of "using ..."
declaration missing.
I got a compile error:
error CS0246: The type or namespace name 'MessageBoxButtons' could not be found (are you missing a using... |
Forum: C# Jan 23rd, 2008 |
| Replies: 13 Views: 6,985 What is a good way to code a messagebox in C#, like the AfxMessageBox in used in Visal C++?
Also, is there a good way to write information out to a log file? |
Forum: C# Jan 21st, 2008 |
| Replies: 0 Views: 945 Getting a C# program with a manifest file to run in the debugger
----------------------------------------------------------------
How do I declare a manifest file in the Visual Studio IDE for C#... |
Forum: C# Jan 18th, 2008 |
| Replies: 0 Views: 686 Getting a C# program with a manifest file to run in the debugger
----------------------------------------------------------------
Does anyone know how to declare Manifest Files in the Visual... |
Forum: C# Jan 9th, 2008 |
| Replies: 0 Views: 659 I am new to C# and I am playing with my first bits of code.
I am building an application from scratch and looking at some
old code to model my new app.
The strange thing is this. I know that... |
Forum: C# Jan 7th, 2008 |
| Replies: 4 Views: 1,232 The sample code I am looking at is supposed
to be a console app. And yet it has the
same sort of structure that a windows app
would have.
Since I am unable to build the app yet, I
am unsure... |
Forum: C# Jan 4th, 2008 |
| Replies: 2 Views: 2,429 Can someone explain the nesting in C#? You have a namespace. Inside the namespace, you have a class. Then, inside this class, you have the main function. Why is it set up this way. Are all... |
Forum: C# Jan 4th, 2008 |
| Replies: 1 Views: 677 How do I create methods in C# like I used to in C++ MFC classes?
Aren't there methods for the forms that are called during initialization of a class, for example? I am talking about some sort of... |
Forum: C# Jan 4th, 2008 |
| Replies: 1 Views: 2,140 How do I switch from code view to form view in C# IDE? I am able
to do it when I first create a form, but if I close and reopen a
project, that ability seems lost. |
Forum: C# Jan 4th, 2008 |
| Replies: 2 Views: 1,346 I have been able to create a C# program from scratch.
When I do so, I automatically get a list of References like this:
http://i67.photobucket.com/albums/h292/Athono/csharp.png
When I open a... |
Forum: C# Dec 31st, 2007 |
| Replies: 1 Views: 1,602 I have written some simple C# programs just to get my feet wet.
Now I have decided to build a co-workers program and step through it. I am not used to all of the problems that might arise when... |
Forum: C# Dec 19th, 2007 |
| Replies: 6 Views: 3,007 IIS was installed and started after the .NET framework.
This was the cause of some problems.
But I fixed it.
On the command line, I went to
C:\WINDOWS\Microsoft.NET\Framework\
and went to... |
Forum: C# Dec 19th, 2007 |
| Replies: 6 Views: 3,007 OK, I fixed everything so that it will work -- or so I thought.
I decided to install some ASP.NET sample code. The installation gave me an error saying that I needed to install the latest version... |
Forum: C# Dec 13th, 2007 |
| Replies: 6 Views: 3,007 I have written my first "Hello World" program in ASP. I thought I would post here how it is done and ask if anyone can suggest how to incorporate C#.
The first step was to download the free... |