1
vote
3answers
32 views
Visual Studio Test project base directory
Hi,
I want to do some interaction testing in my test project, and would like to test some xml configuration based components... How can I find the base directory of the test project in code so that I …
4
votes
6answers
140 views
C# protected members accessed via base class variable
Hello. It may seems rather newbie question, but can you explain why method Der.B() cannot access protected Foo via Base class variable? This looks weird to me:
public class Base
{
protected int …
1
vote
4answers
121 views
Cast concrete class to generic base interface
Here's the scenario i am faced with:
public abstract class Record { }
public abstract class TableRecord : Record { }
public abstract class LookupTableRecord : TableRecord { }
public sealed class …
1
vote
2answers
97 views
Why can’t Flash CS3 find the MovieClip base class even after classpath is set (AS3)?
Tearing my hair out.
I created an as3 class - blah.Foo, which extends MovieClip.
it is not in a package, cos Flash CS3 complained about nested packages, so it's a 'bare' class.
And yes it's nested in …
0
votes
3answers
82 views
Using Base classes in WPF
Hello. I have problem with base classes in WPF. I try to make a base class with some base elements, so that other windows can inherit these components. But all that i have, when I inherit base class …
0
votes
3answers
46 views
Is it possible to have 2 Base class’s which already inherit from something inherit or know of a third common class?
I have 2 class's
Class 1.
public class BaseContentPage : System.Web.UI.Page
{
}
Class 2.
public class BaseUserControl : System.Web.UI.UserControl
{
}
And now i want them to be aware of this …
0
votes
3answers
48 views
Base class for windows service
My new project has a design in which there are number windows services for performing different tasks. I have been given a task to create base class from which all of the windows service will inherit. …
0
votes
2answers
73 views
NHibernate base and derived class mapping
Situation:
I have a class MyClass and its "lightweight" version MyClassLite, so i have
public class MyClass : MyClassLite
I also use hbm file for mapping my classes (they are mapped to the same …
0
votes
1answer
51 views
How to assign theme in base class using master page?
Hi,
I am trying to assign a theme based on browser type. I would like to do this in a base class so it would only need to be in one place (I am using a master page). I coded the following but the …
1
vote
2answers
32 views
How to get modified file from base file and diff file ?
Consider the following example :
$ls
base.txt base-modified.txt
$diff base.txt base-modified.txt > diff.txt
$rm base-modified.txt
$
I want the base-modified.txt from base.txt and diff.txt...
Can …
3
votes
6answers
418 views
Fastest base conversion method?
Right now I'm working on a project which requires an integer to be converted to a base 62 string many times a second. The faster this conversion is completed, the better.
The problem is that I'm …
2
votes
2answers
93 views
Base Class Library
I am new to C#, C++ and .Net.
I am currently returning to programming from a stint in Networking and Cisco engineering. I used to program on IBM mainframes etc using Cobol, assembler, easytrieve, …
0
votes
1answer
596 views
Xcode iPhone - Base SDK, Active SDK difference?
What's the difference between the "Base SDK for all configurations" and the "Active SDK" in Xcode?
0
votes
3answers
219 views
FileMakerPro equivalent for Linux?
I've got a possible client who has mocked up an application in FileMakerPro, shown it to me, and said "can you do this, but I want it to run on both Linux and Windows XP?" He wants this application …
0
votes
2answers
132 views
How do you rebase hyperlinks and content in an ASP.NET page?
I have an ASP.NET page to handle "404 page not found" it's setup by configuring the <customErrors> section in my web.config file and setting the custom error page for 404 errors in IIS manager.
…
