0
votes
3answers
203 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 …
1
vote
4answers
88 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
59 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
2answers
62 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
3answers
67 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
45 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
44 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
1answer
48 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
31 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 …
5
votes
6answers
411 views
Is there any built-in way to convert an integer to a string (of any base) in C#?
Convert.ToString() only allows base values of 2, 8, 10, and 16 for some odd reason; is there some obscure way of providing any base between 2 and 16?
3
votes
6answers
395 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 …
3
votes
3answers
233 views
base_convert in .NET
Does .NET have a native function that is equivalent to PHP's base_convert or will I need to write my own? I want to convert from any base to any other base -- where either the 'to' base or the 'from' …
2
votes
2answers
92 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
534 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?
1
vote
6answers
626 views
How to convert an arbitrary large integer from base 10 to base 16?
The program requires an input of an arbitrary large unsigned integer which is expressed as one string in base 10. The outputs is another string that expresses the integer in base 16.
For example, the …
