1
vote
2answers
27 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.
An …
0
votes
3answers
58 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 …
0
votes
2answers
52 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 ma …
0
votes
3answers
40 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 …
0
votes
1answer
43 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 …
0
votes
3answers
38 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 s …
3
votes
6answers
360 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 prob …
1
vote
2answers
30 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 …
0
votes
1answer
438 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?
5
votes
2answers
1k views
Quickest way to convert a base 10 number to any base in .NET?
I have and old(ish) C# method I wrote that takes a number and converts it to any base:
string ConvertToBase(int number, char[] baseChars);
It's not all that super speedy and nea …
1
vote
6answers
603 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 1 …
2
votes
2answers
90 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, assemb …
3
votes
3answers
230 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' …
0
votes
2answers
113 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 err …
0
votes
1answer
162 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 want …
