active questions tagged base - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:13:59Z http://stackoverflow.com/feeds/tag/base http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1927274/firefox-can-i-use-a-relative-path-in-the-base-tag 0 Firefox: Can I use a relative path in the BASE tag? Aaron Digulla 2009-12-18T09:48:14Z 2009-12-18T09:48:14Z <p>I have a little web project where I have many pages and an index/ToC file. The toc file is at the root of my project in <code>toc.html</code>. The pages are spread over a couple of subdirectories and include the toc with an <code>iframe</code>.</p> <p>The project doesn't need a web server, so I can create the HTML in a directory and browse it in my browser. The problem is that I'm running into XSS issues when JavaScript from the <code>toc.html</code> wants to call a function in a page (violation of the same origin policy).</p> <p>So I added <code>base</code> tags in the header with a relative URL to the directory in which <code>toc.html</code>. This works for Konqueror but in Firefox, I have to use absolute paths or the toc won't even display :( Here is an example:</p> <pre><code>&lt;?xml version='1.0' encoding='utf-8' ?&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;base href="../" target="_top" /&gt; &lt;title&gt;Project 1&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;iframe class="toc" frameborder="0" src="toc.html"&gt; &lt;/iframe&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>This is file is in a subdirectory <code>page</code>. Firefox won't even load it, saying that it can't find <code>page/toc.html</code>.</p> <p>Is there a workaround? I would really like to avoid absolute paths in my export to keep it the same everywhere (locally and when I upload it on the web server later).</p> http://stackoverflow.com/questions/1923909/validating-c-base-class-constructor-parameter 0 Validating C# base class constructor parameter stevesyfuhs 2009-12-17T19:09:32Z 2009-12-17T19:21:10Z <p>After running Code Analysis in VS2010 beta (FxCop for previous versions) I'm getting the following warning:</p> <blockquote> <p>In externally visible method 'Identity.Identity(WindowsIdentity)', validate parameter 'windowsIdentity' before using it.</p> </blockquote> <p>The constructor is:</p> <pre><code>public Identity(WindowsIdentity windowsIdentity) : base(windowsIdentity.Token) { init(); } </code></pre> <p>for a class defined as:</p> <pre><code>public class Identity : WindowsIdentity </code></pre> <p>My question is, how do I validate the windowsIdentity parameter? Should I validate it in the constructor, and throw an exception, or is there a better way to call this?</p> http://stackoverflow.com/questions/1836175/c-protected-members-accessed-via-base-class-variable 4 C# protected members accessed via base class variable Roman 2009-12-02T22:06:23Z 2009-12-14T06:57:42Z <p>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:</p> <pre><code>public class Base { protected int Foo; } public class Der : Base { private void B(Base b) { Foo = b.Foo; } // Error: Cannot access protected member private void D(Der d) { Foo = d.Foo; } // OK } </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/1898904/visual-studio-test-project-base-directory 1 Visual Studio Test project base directory theringostarrs 2009-12-14T04:21:13Z 2009-12-14T04:58:33Z <p>Hi,</p> <p>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 can create paths relative to it? I want to have a sub folder that contains the test xml files.</p> <p>Thanks</p> <p>EDIT:</p> <p>Iv used Assembly.GetExecutingAssembly().Location - which gives the out put folder of the time I ran the tests.. I need to configure the xml files to go with the assemblies into that directory.. how can I do that?</p> http://stackoverflow.com/questions/1027309/filemakerpro-equivalent-for-linux 0 FileMakerPro equivalent for Linux? Paul Tomblin 2009-06-22T13:48:25Z 2009-11-23T21:14:41Z <p>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 to sell with hardware that he currently sells. The main page of the app basically has a normal form at the top with the result of one query (the "current job" information), then two tables with the results of other queries about the status of various components. </p> <p>One thing he wants that he doesn't have in the mock up is the ability to respond to and generate external events - there is an external piece of equipment that closes a microswitch, and when that happens he wants to update one of the tables and update the results on the screen, and when certain updates happen on the database, he wants to turn on or off a warning light on the equipment. He also wants graphs of summaries of data from the database embedded on the screen (looking at the mock-up, I can't tell of the graphs he has are live or just static images he's put there to make it look like what he wants.) He's also concerned about security and put as a non-mandatory feature the ability to lock a copy to a particular machine.</p> <p>I had a brief look at Kexi and Open Office Base, but I can't figure out if I can do even the basic main page functionality, never mind the graphs and the external events business. So I'm tempted to just quote him the price for me to develop a wxPython and MySQL app from scratch. Is there a better option? Can I do it with Base or Kexi?</p> <p>(Also, suggestions on how to interface the external events would be appreciated. He wanted to just wire the microswitch into the F12 key on the keyboard and control the light by playing sounds through one channel to turn it on and one to turn it off, but that seems cheesy and cheap looking to me.)</p> http://stackoverflow.com/questions/1778030/cast-concrete-class-to-generic-base-interface 1 Cast concrete class to generic base interface Sameer Shariff 2009-11-22T06:46:56Z 2009-11-23T06:45:11Z <p>Here's the scenario i am faced with:</p> <pre><code>public abstract class Record { } public abstract class TableRecord : Record { } public abstract class LookupTableRecord : TableRecord { } public sealed class UserRecord : LookupTableRecord { } public abstract class DataAccessLayer&lt;TRecord&gt; : IDataAccessLayer&lt;TRecord&gt; where TRecord : Record, new() { } public abstract class TableDataAccessLayer&lt;TTableRecord&gt; : DataAccessLayer&lt;TTableRecord&gt;, ITableDataAccessLayer&lt;TTableRecord&gt; where TTableRecord : TableRecord, new() { } public abstract class LookupTableDataAccessLayer&lt;TLookupTableRecord&gt; : TableDataAccessLayer&lt;TLookupTableRecord&gt;, ILookupTableDataAccessLayer&lt;TLookupTableRecord&gt; where TLookupTableRecord : LookupTableRecord, new() { } public sealed class UserDataAccessLayer : LookupTableDataAccessLayer&lt;UserRecord&gt; { } public interface IDataAccessLayer&lt;TRecord&gt; where TRecord : Record { } public interface ITableDataAccessLayer&lt;TTableRecord&gt; : IDataAccessLayer&lt;TTableRecord&gt; where TTableRecord : TableRecord { } public interface ILookupTableDataAccessLayer&lt;TLookupTableRecord&gt; : ITableDataAccessLayer&lt;TLookupTableRecord&gt; where TLookupTableRecord : LookupTableRecord { } </code></pre> <p>Now, when i try to do the following cast, it does not compile:</p> <pre><code>UserDataAccessLayer udal = new UserDataAccessLayer(); ITableDataAccessLayer&lt;TableRecord&gt; itdal = (ITableDataAccessLayer&lt;TableRecord&gt;)udal; </code></pre> <p>However, when i do the following cast it compiles with no runtime errors:</p> <pre><code>UserDataAccessLayer udal = new UserDataAccessLayer(); ITableDataAccessLayer&lt;UserRecord&gt; itdal = (ITableDataAccessLayer&lt;UserRecord&gt;)udal; </code></pre> <p>I really need to work with the base <code>ITableDataAccessLayer&lt;TableRecord&gt;</code> interface, as i don't know the concrete type.</p> <p>Hope this is descriptive and helpfull enough to answer my question.</p> http://stackoverflow.com/questions/1685524/why-cant-flash-cs3-find-the-movieclip-base-class-even-after-classpath-is-set-as 1 Why can't Flash CS3 find the MovieClip base class even after classpath is set (AS3)? helpless 2009-11-06T05:06:54Z 2009-11-06T06:08:31Z <p>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.</p> <p>And yes it's nested in <strong>myproj/as/blah/Foo.as</strong> And yes, it imports flash.display.MovieClip at the top of the file.</p> <p>I also have <strong>myproj/fla/main.fla</strong>. main.fla is set to publish as AS3 against flash player 9. main.fla has classpath which includes myproj/as/</p> <p>on frame1 scene1 in main.fla:</p> <pre><code>import blah.Foo; var myfoo:Foo = new Foo(); stop(); </code></pre> <p>compiler dies at class definition of Foo in Foo.as:</p> <pre><code>import flash.display.MovieClip; class blah.Foo extends MovieClip //&lt;=== dies here { //whatever... } </code></pre> <p>It complains that: <strong>"1017: The definition of base class MovieClip was not found".</strong></p> <p>Someone please help! How can it not find one of the most basic classes in AS3?!!</p> http://stackoverflow.com/questions/1542602/nhibernate-base-and-derived-class-mapping 0 NHibernate base and derived class mapping npeBeg 2009-10-09T08:39:53Z 2009-10-31T19:00:02Z <p>Situation: I have a class <strong>MyClass</strong> and its "lightweight" version <strong>MyClassLite</strong>, so i have</p> <pre><code>public class MyClass : MyClassLite </code></pre> <p>I also use <strong>hbm</strong> file for mapping my classes (they are mapped to the same table). The thing is that when i try to get a list of <strong>MyClassLite</strong> entities, i get not only <strong>MyClassLite</strong> entities, but a list of <strong>MyClass</strong> entities moreover. How can i rid of that?</p> http://stackoverflow.com/questions/1644990/using-base-classes-in-wpf 0 Using Base classes in WPF Vytas 2009-10-29T16:36:07Z 2009-10-30T19:02:47Z <p>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 is only empty window, without these elements. For better understanding i put my code here:</p> <pre><code>using XSoftArt.WPFengine; namespace XSoftArt { public class WindowBase : Window { public WindowBase() { } </code></pre> <p>}</p> <p><strong>Code of the Windows, whitch inherits WindowBase:</strong></p> <pre><code>namespace XSoftArt.WPFengine { public partial class NewAbility : WindowBase { public NewAbility() { base.ChildForm = this; InitializeComponent(); } } } </code></pre> <p>Or maybe someone can put an working example or link with implemented base classes in wpf? Thanks</p> http://stackoverflow.com/questions/1563804/is-it-possible-to-have-2-base-classs-which-already-inherit-from-something-inher 0 Is it possible to have 2 Base class's which already inherit from something inherit or know of a third common class? BlackTea 2009-10-14T01:25:07Z 2009-10-14T01:48:07Z <p>I have 2 class's</p> <p>Class 1.</p> <pre><code>public class BaseContentPage : System.Web.UI.Page { } </code></pre> <p>Class 2.</p> <pre><code>public class BaseUserControl : System.Web.UI.UserControl { } </code></pre> <p>And now i want them to be aware of this class.</p> <pre><code>public class BaseCommon { public string Variable1 { get; set; } public string Variable2 { get; set; } public string Variable3 { get; set; } } </code></pre> <p>How I'm currently doing it is by making the variables of the BaseCommon class static like so</p> <pre><code>public static string Variable1 { get; set; } public static string Variable2 { get; set; } public static string Variable3 { get; set; } </code></pre> <p>How else can i do this?</p> http://stackoverflow.com/questions/1542735/base-class-for-windows-service 0 Base class for windows service unknown (yahoo) 2009-10-09T09:14:00Z 2009-10-09T09:20:23Z <p>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. This base class will perform common functions like creating instances of other windows services by iterating through the config file (may be like Activator.CreateInstance), do event logging on onStart, onStop etc. and may contain some more functionality.</p> <p>Before I start developing stuff, wondering if there is any pattern already in place or someone has good understanding of how to implement this kind of functionality.</p> <p>Any help appreciated.</p> http://stackoverflow.com/questions/1495783/how-to-assign-theme-in-base-class-using-master-page 0 How to assign theme in base class using master page? James 2009-09-30T01:57:48Z 2009-09-30T02:22:40Z <p>Hi,</p> <p>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 "OnLoad" here is performed before the "Page_PreInit". This needs to go in Page_PreInit, but why isn't it firing?</p> <pre><code>Imports Microsoft.VisualBasic Public Class MyBaseClass Inherits System.Web.UI.Page Private Sub Page_PreInit(ByVal sender As Object, ByVal e As System.EventArgs) 'Assign the CSS Theme based on the Browser Type If (Request.Browser.Type = "IE8") Then Page.Theme = "Standard-IE8" Else Page.Theme = "Standard" End If End Sub Protected Overrides Sub OnLoad(ByVal e As System.EventArgs) MyBase.OnLoad(e) End Sub End Class </code></pre> <p>Then, I have my Login page coded to inherit the base class:</p> <pre><code>Partial Class Login 'Inherits System.Web.UI.Page Inherits MyBaseClass Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load </code></pre> <p>Thank you, James</p> http://stackoverflow.com/questions/1354792/how-to-get-modified-file-from-base-file-and-diff-file 1 How to get modified file from base file and diff file ? Rohit 2009-08-30T20:13:47Z 2009-08-30T20:51:49Z <p>Consider the following example :</p> <pre><code>$ls base.txt base-modified.txt $diff base.txt base-modified.txt &gt; diff.txt $rm base-modified.txt $ </code></pre> <p>I want the base-modified.txt from base.txt and diff.txt... Can anyone suggest a way ?</p> http://stackoverflow.com/questions/95105/is-there-any-built-in-way-to-convert-an-integer-to-a-string-of-any-base-in-c 5 Is there any built-in way to convert an integer to a string (of any base) in C#? Jedidja 2008-09-18T18:09:09Z 2009-08-12T07:02:29Z <p>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?</p> http://stackoverflow.com/questions/1235371/fastest-base-conversion-method 3 Fastest base conversion method? GenTiradentes 2009-08-05T19:50:44Z 2009-08-05T23:58:59Z <p>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.</p> <p>The problem is that I'm having a hard time getting my own base conversion methods to be fast <em>and</em> reliable. If I use strings, it's generally reliable and works well, but it's slow. If I use char arrays, it's generally much faster, but it's also very messy, and unreliable. (It produces heap corruption, comparison of strings that should match return a negative, etc.)</p> <p>So what's the fastest and most reliable way of converting from a very large integer to a base 62 key? In the future, I plan on utilizing SIMD model code in my application, so is this operation parallelizable at all?</p> <p>EDIT: This operation is performed several million times a second; as soon as the operation finishes, it begins again as part of a loop, so the faster it runs, the better. The integer being converted is of arbitrary size, and can easily be as large as a 128 bit integer (or larger).</p> <p>EDIT: This is the function I am currently using.</p> <pre><code>char* charset = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; int charsetLength = (int)(strlen(charset)); //maxChars is an integer specifying the maximum length of the key char* currentKey = new char[maxChars]; void integerToKey(unsigned long long location) { unsigned long long num = location; int i = 0; for(; num &gt; 0; i++) { currentKey[i] = charset[num % (charsetLength)]; num /= charsetLength + 1; } currentKey[i + 1] = '\0'; } </code></pre> <p>I ripped this out of a class that is part of my application, and some of the code is modified so that it makes sense sans its owning class.</p> http://stackoverflow.com/questions/686847/baseconvert-in-net 3 base_convert in .NET Dinah 2009-03-26T17:46:19Z 2009-07-29T15:54:17Z <p>Does .NET have a native function that is equivalent to PHP's <a href="http://php.net/base_convert" rel="nofollow">base_convert</a> 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' base can be any integer 2-36.</p> <p>Example of the PHP function: base_convert($number_to_convert, $from_base, $to_base)</p> <pre><code>// convert 101 from binary to decimal echo base_convert('101', 2, 10); // 5 </code></pre> <p>As noted by Luke in the comments of Jon Skeet's answer: Convert.ToString can't handle conversion to/from any arbitrary base, only 2, 8, 10 and 16</p> <p><strong>Update:</strong> Apparently, the answer is: no, there is no native way. Below, Erik shows one way to do this. Another implementation is here: <a href="http://www.codeproject.com/KB/macros/Convert.aspx" rel="nofollow">http://www.codeproject.com/KB/macros/Convert.aspx</a></p> http://stackoverflow.com/questions/1171984/base-class-library 2 Base Class Library George Legge 2009-07-23T14:03:16Z 2009-07-23T14:13:04Z <p>I am new to C#, C++ and .Net.</p> <p>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, Rexx and clist etc so the command syntax is reasonably familiar to me as are programming standards and structures.</p> <p>However I am having quite a bit of trouble getting to grips with the BCL and understanding the various components and what each is designed for and which is best to use in various situations, and in fact how some are actually used and coded. </p> <p>I am often scratching my head wondering how the code came about from the descriptions I have found about the BCL components. Basically how to use them and code them seems to be a black art with no intuitive means at all.</p> <p>So my question is, apart from the msdn library, which I am finding to be a bit over complicated for my current needs, is there any good reference book, site, pdf that can give me a reasonable description, usage notes etc of the most commonly used .NET components such as System.IO etc ?</p> <p>I have read a few book on C# etc and have found a small program that does part of what I need to do in a project I have, requiring acces to devices via RS-232 ports, but when decoding the program I find myself wondering why the person used the components he did and how would I know which components I should use when I make the changes I need to and add in the extra code that I require and how do I actually use these components when I do find them ?</p> <p>I do realise a lot of this will be down to plain old experience, but a helping hand in the right direction would really help a lot.</p> <p>Many thanks, George.</p> http://stackoverflow.com/questions/1109609/xcode-iphone-base-sdk-active-sdk-difference 0 Xcode iPhone - Base SDK, Active SDK difference? quano 2009-07-10T13:43:57Z 2009-07-12T06:42:40Z <p>What's the difference between the <em>"Base SDK for all configurations"</em> and the <em>"Active SDK"</em> in Xcode?</p> http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16 1 How to convert an arbitrary large integer from base 10 to base 16? Ryan Shaw 2009-05-13T09:53:15Z 2009-06-30T15:51:55Z <p>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.</p> <p>For example, the input is "1234567890987654321234567890987654321234567890987654321", and the output shall be "CE3B5A137DD015278E09864703E4FF9952FF6B62C1CB1"</p> <p>The faster the algorithm the better.</p> <p>It will be very easy if the input is limited within 32-bit or 64-bit integer; for example, the following code can do the conversion:</p> <pre><code>#define MAX_BUFFER 16 char hex[] = "0123456789ABCDEF"; char* dec2hex(unsigned input) { char buff[MAX_BUFFER]; int i = 0, j = 0; char* output; if (input == 0) { buff[0] = hex[0]; i = 1; } else { while (input) { buff[i++] = hex[input % 16]; input = input / 16; } } output = malloc((i + 1) * sizeof(char)); if (!output) return NULL; while (i &gt; 0) { output[j++] = buff[--i]; } output[j] = '\0'; return output; } </code></pre> <p>The real challenging part is the "arbitrary large" unsigned integer. I have googled but most of them are talking about the conversion within 32-bit or 64-bit. No luck is found.</p> <p>Can anyone give any hit or any link that can be read on?</p> <p>Thanks in advance.</p> <p><strong>Edit</strong> This is an interview question I encountered recently. Can anyone briefly explain how to solve this problem? I know there is a gmp library and I utilized it before; however as an interview question it requires not using external library. </p> http://stackoverflow.com/questions/965133/how-do-you-rebase-hyperlinks-and-content-in-an-asp-net-page 0 How do you rebase hyperlinks and content in an ASP.NET page? Alex 2009-06-08T14:19:39Z 2009-06-09T11:04:14Z <p>I have an ASP.NET page to handle "404 page not found" it's setup by configuring the <code>&lt;customErrors&gt;</code> section in my web.config file and setting the custom error page for 404 errors in IIS manager.</p> <p>It works as expected for pages in the root of my website but doesn't work in a subdirectory of the site - the hyperlinks and content in my custom error page have the wrong url base.</p> <p>All the links in my error page are server-side controls (runat="server") and have their links based with "~/".</p> <p>When I browse the site with <code>http://mysite/nosuchfolder/nosuchfile</code> the page renders with links thinking it's being served from the root, rather from <code>nosuchfolder</code> and as such all the links are broken in the browser as the browser is basing links from <code>nosuchfolder</code>.</p> <p>Is there any way to 'tell' the ASP.NET page to re-base links on a different folder/filename?</p> <p>Notes:</p> <ul> <li>The majority of the page template is rendered from a master page</li> <li>I'm running IIS6 and have set custom error 404 to URL: <code>/error404.aspx</code></li> <li>In my web.config file I have configured the <code>&lt;customErrors&gt;</code> section to redirect to <code>/error404.aspx</code></li> <li>As a workaround I am using the HTML <code>&lt;base&gt;</code> tag in the page, but I want to avoid this</li> <li>I don't want to have to change all my "~/" based links to "/" or an in-line basing hack</li> </ul> http://stackoverflow.com/questions/923771/quickest-way-to-convert-a-base-10-number-to-any-base-in-net 5 Quickest way to convert a base 10 number to any base in .NET? joshcomley 2009-05-28T23:50:51Z 2009-05-30T16:17:57Z <p>I have and old(ish) C# method I wrote that takes a number and converts it to any base:</p> <pre><code>string ConvertToBase(int number, char[] baseChars); </code></pre> <p>It's not all that super speedy and neat. Is there a good, known way of achieving this in .NET?</p> <p><b>EDIT:</b> I should clarify - I'm looking for something that allows me to use <b>any</b> base with an arbitrary string of characters to use.</p> <p>This only allows bases 16, 10, 8 and 2:</p> <pre><code>Convert.ToString(1, x); </code></pre> <p>I want to use this to achieve a massively high base taking advantage of numbers, all lower case and all upper case letters. Like in <a href="http://stackoverflow.com/questions/656941/converting-decimals-to-sexagesimal-base-sixty-in-javascript">this thread</a>, but for C# not JavaScript.</p> <p>Does anyone know of a good and efficient way of doing this in C#?</p> http://stackoverflow.com/questions/905181/how-do-i-determine-an-image-url-string-is-without-a-base-domain-through-javascrip 1 How do I determine an image url string is without a base domain through javascript? cybervaldez 2009-05-25T03:05:28Z 2009-05-26T03:11:36Z <p>I'm capturing data from an external url using php and throwing it back to my page via ajax to load images. My problem is the external url have some images that are relative("images/example.jpg") so I have to prepend their base domain("http://www.example.com) so I can load it in my page. Problem is some of the images includes a base domain url yet some are in their relative form. Im guessing maybe use regex in my javascript to the determines the string if it have a base("http://example.domain.com") or just a relative("images/") to it. How can I achieve that through regex? </p> http://stackoverflow.com/questions/791459/unique-base-class-instance 0 Unique base class instance sergio 2009-04-26T19:37:30Z 2009-04-26T19:56:09Z <p>Hi all, i'm developing a c++ dll that containts three classes: say base class Base, Derived1 and Derived2 class. The scenario:</p> <p>class Base { //ctor, dtor, members and methods here }</p> <p>class Derived1 : public Base { //ctor, dtor, members and methods here }</p> <p>class Derived2 : public Base { //ctor, dtor, members and methods here }</p> <p>The dll i'm creating with MS VC++ 2008 express, that i want use under Turboc++ (borland: very good ide/rad). I export Derived1 via facotry method, and via client code, Derived1 makes instances of Derived2. Both Derived1 and Derived2 share a pointer function contained in another dll, so i put that poiner function under Base class. Here is the problem. Once time i create one instance (via factory) of Derived1 and it can create multiple instances of Derived2, so Base class CTOR is called more times (1 for Derived1 and multiple times for Derived2). How can i prevent multiple intances of Base?</p> <p><strong>A further question:</strong></p> <p>With the scenario i described early, Derived1 call multiple intances of Derived2 and both Derived1 and Derievd2 extends unique common base class. I ask: it is a bad design? is there another design of classes and their inheritance hierarchy better than i used?</p> http://stackoverflow.com/questions/704901/search-in-svn-repository-for-a-file-name 0 Search in SVN repository for a file name Baljeet 2009-04-01T10:16:27Z 2009-04-01T10:30:28Z <p>Issue:- Search in SVN epository for with file name.</p> <p>The Problem is:- We have a bulk repository for code contain thousands of folder and sub folder, i want to search under this repositor with file name or with some word.</p> <p>Exp:-</p> <p>Root folder a\ b\ c\ d\ e\ f\ab\ f\ab\cd.txt</p> <p>I want to search for cd.txt but dont know where it is in SVN Repository, for that i want to perform a search on the root folder of SVN where i will put the file name cd.txt and run the command, will check in each folder and will display the file details result....</p> <p>Hope requirement is clear. Can you please help me on this. </p> http://stackoverflow.com/questions/643504/what-do-i-need-to-do-when-i-include-output-from-an-asp-net-aspx-page-in-a-html 0 What do I need to do when I include output from an ASP.NET .aspx page in a HTML page? Something like <base> Olav 2009-03-13T16:20:21Z 2009-03-13T16:55:58Z <p>I have a ASP.NET file at <a href="http://localhost/nn/n.aspx" rel="nofollow">http://localhost/nn/n.aspx</a> Output from processing that file is included in <a href="http://localhost/index.asp" rel="nofollow">http://localhost/index.asp</a>. </p> <p>Is there some general or specific things I should do so that the ASP.NET code sitting on the client knows were it is? </p> <p>Setting <code>&lt;form action="http://localhost/nn/n.aspx</code> makes it post to the right location, but my update-panel is failing.</p> <p>I think perhaps that's the ScriptPath of the ScriptManager, and i can probably figure that out.</p> <p>But I am afraid there could be other issues, and i am hoping there is something like the HTML tag that i can use to tell my client code where it is.</p> <p>Thanks Olav</p> http://stackoverflow.com/questions/603177/c-how-do-i-call-a-static-method-of-a-base-class-from-a-static-method-of-a-deriv 0 C#: How do I call a static method of a base class from a static method of a derived class? mindmodel 2009-03-02T17:24:58Z 2009-03-12T03:46:05Z <p>In C#, I have base class Product and derived class Widget.</p> <p>Product contains a static method MyMethod().</p> <p>I want to call static method Product.MyMethod() from static method Widget.MyMethod().</p> <p>I can't use the base keyword, because that only works with instance methods.</p> <p>I can call Product.MyMethod() explicitly, but if I later change Widget to derive from another class, I have to revise the method.</p> <p>Is there some syntax in C# similar to base that allows me to call a static method from a base class from a static method of a derived class?</p> http://stackoverflow.com/questions/389957/forward-declaration-of-a-base-class 2 Forward Declaration of a Base Class TomWij 2008-12-23T20:13:45Z 2009-03-04T17:01:48Z <p>Hello, I'm trying to create proper header files that don't include much other files.<br /> (To keep them clean, to speed up compiling time, ...)</p> <p>I encountered two problems while doing this:</p> <p>1 - Forward declaratoin on base classes doesn't work.</p> <pre><code>class B; class A : public B { // ... } </code></pre> <p>2 - Forward declaration on STD classes doesn't work.</p> <pre><code>namespace std { class string; } class A { string aStringToTest; } </code></pre> <p>How do I solve these problems?</p> http://stackoverflow.com/questions/107414/whats-your-best-trick-to-break-out-of-an-unbalanced-quote-condition-in-base-sas 2 What's your best trick to break out of an unbalanced quote condition in BASE SAS? Martin Bøgelund 2008-09-20T06:41:08Z 2009-02-22T04:12:20Z <p>As a base SAS programmer, you know the drill:</p> <p>You submit your SAS code, which contains an unbalanced quote, so now you've got not only and unclosed quote, but also unclosed comments, macro function definitions, and a missing run; or quit; statement.</p> <p>What's your best trick for not having those unbalanced quotes bother you?</p> http://stackoverflow.com/questions/552247/android-baseadapter-position-not-really-the-position 1 Android BaseAdapter : position not really the position? Chrispix 2009-02-16T04:13:55Z 2009-02-16T05:39:23Z <p>I am so confused when my list view using a BaseAdapter goes off the screen, each row no longer maintains a consecutive position. I don't know how else to explain it other than this.</p> <p>If my BA/LV shows 4 items on the screen, and I add a view that displays a TextView of each row, it shows 0,1,2,3 for the row numbers (which is correct). But as soon as I scroll the list down to the bottom 4 items (items 5-8) it then shows those as 4,5,0,1?? Why?? I am so confused :/ I have tried doing all kinds of things (even some unconventional things, but this is the last thing I have that is not working). </p> <p>** EDIT ** I did discover that if I change rv = (RowView) convertView; to</p> <pre><code>rv = new RowView(mContext,(cursor.getString(2)), (cursor.getString(5)), cursor.getString(cursor.getColumnIndex(DBHelper.KEY_IMAGEFILENAME)), cursor.getString(cursor.getColumnIndex(DBHelper.KEY_CITY)),position); </code></pre> <p>that it works, but then it is not re-using the code. So I guess I am on the right track. I did try some convenience methods, but that did not help me too much because I needed to set those values before the Constructor fired off. Do I need to create a new method and fire that at the end? Such as 'addRow' method? This also causes it to scroll VERY Slow.</p> <pre><code> @Override public void onCreate(Bundle bundle) { super.onCreate(bundle); //setContentView(R.layout.findlist); //getListView().setEmptyView(findViewById(R.id.empty)); mDbHelper = new DBHelper(this); mDbHelper.open(); cursor = mDbHelper.fetchAllLocations(); startManagingCursor(cursor); mAdapter = new myListAdapter(this); setListAdapter(mAdapter); } public class myListAdapter extends BaseAdapter { public String testing; public myListAdapter(Context c) { mContext = c; // TODO Auto-generated constructor stub } @Override public int getCount() { // TODO Auto-generated method stub return cursor.getCount(); } @Override public Object getItem(int position) { // TODO Auto-generated method stub return position; } @Override public long getItemId(int position) { // TODO Auto-generated method stub return position; } @Override public View getView(int position, View convertView, ViewGroup parent) { cursor.moveToPosition(position); RowView rv; if (convertView == null) { rv = new RowView(mContext,(cursor.getString(2)), (cursor.getString(5)), cursor.getString(cursor.getColumnIndex(DBHelper.KEY_IMAGEFILENAME)), cursor.getString(cursor.getColumnIndex(DBHelper.KEY_CITY)),position); } else { rv = (RowView) convertView; try { // I KNOW THIS SECTION IS NOT RIGHT, BUT I HAVE BEEN MESSING IN HERE rv.setAddress(cursor.getString(2)); rv.setCity(cursor.getString(5)); rv.setFocusable(true); rv.setClickable(true); } catch (Exception e) { rv = (RowView) convertView; rv.setAddress(cursor.getString(2)); rv.setCity(cursor.getString(5)); rv.setFocusable(true); rv.setClickable(true); Toast mToast; mToast = Toast.makeText(FindList.this, "Error :" + e.toString() , Toast.LENGTH_LONG); mToast.show(); } } return rv; } public void addItems() { //String[] from = new String[] { DBHelper.KEY_BUSINESSNAME, DBHelper.KEY_ADDRESS, DBHelper.KEY_CITY, DBHelper.KEY_GPSLONG, DBHelper.KEY_GPSLAT, DBHelper.KEY_IMAGEFILENAME + ""}; // create array of values of widgits //to = new int[] { R.id.businessname, R.id.address, R.id.city, R.id.gpslong, R.id.gpslat, R.id.preview}; // Now create an array adapter and set it to display using our row from notes_row.xml } } private class RowView extends LinearLayout { private TextView mAddress; private TextView mCity; public ImageView mArrow; public ImageView mPicture; public String mPathName; public String mDateTime; public RowView(Context context, String title, String words, String pathName, String city, int position) { super(context); this.setOrientation(HORIZONTAL); this.setVerticalGravity(16); //CENTER_VERTICAL // Here we build the child views in code. They could also have // been specified in an XML file. //DISPLAY DELETE BUTTON Button mButton = new Button(context); mButton.setFocusable(false); mButton.setId(position); mButton.setBackgroundResource(R.drawable.delete3); addView(mButton, new LinearLayout.LayoutParams( LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); TextView mTitle; mTitle = new TextView(context); mTitle.setText(Integer.toString(position)); addView(mTitle, new LinearLayout.LayoutParams( LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); this.setOrientation(HORIZONTAL); try { Bitmap bm = Bitmap.createScaledBitmap(BitmapFactory.decodeFile(cursor.getString(cursor.getColumnIndex(DBHelper.KEY_IMAGEFILENAME))),100, 100, true); mPicture = new ImageView(context); mPicture.setImageBitmap(bm); } catch (Exception e) { mPicture = new ImageView(context); mPicture.setImageResource(R.drawable.noimage); } addView(mPicture, new LinearLayout.LayoutParams( LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); mArrow = new ImageView(context); mArrow.setBackgroundResource(R.drawable.arrowleft3); addView(mArrow, new LinearLayout.LayoutParams( LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); currentPosition = position; Button button = (Button)findViewById(position); button.setOnClickListener(mCorkyListener); } </code></pre> http://stackoverflow.com/questions/494884/inheriting-a-linq-to-sql-class-and-cast-the-result-of-a-linq-query 1 Inheriting a Linq to SQL class and cast the result of a linq query Matthew Hood 2009-01-30T08:35:11Z 2009-01-30T20:39:02Z <p>I am writing an application where we will need to extend a basic entity into a number of different things (eg employee, vehicle etc). The design is as such that there is a Entity table and a second table with type specific values eg an employee will have an ID Number but a vehicle will have a registration number.</p> <p>I have inherited from the class entity generated in the Data Context but am having trouble with the casting in my repository. What is the correct way of doing this?</p> <pre><code>public class cAccountEmployee : cAccountEntity { public string id_number { get { try { return this.cAccountEntityValues.Single(e =&gt; e.type == 1).value; } catch (Exception) { return ""; } } set { try { this.cAccountEntityValues.Single(e =&gt; e.type == 1).value = value; } catch (Exception) { this.cAccountEntityValues.Add(new cAccountEntityValue() { accountentity_id = this.id, cAccountEntity = this, type = 1, value = value }); } } } </code></pre> <p>}</p> <p>Then in my repository (does not inherit anything)</p> <pre><code>public IEnumerable&lt;cAccountEmployee&gt; All(int accountholder_id) { return db.cAccountEntities.Where(e =&gt; e.accountholder_id == accountholder_id).OrderBy(a =&gt; a.name).Cast&lt;cAccountEmployee&gt;(); } public cAccountEmployee Single(int id) { return db.cAccountEntities.Single(a =&gt; a.id == id) as cAccountEmployee; } </code></pre> <p>The cast fails in the single method and hence I get back null. It is my understanding you cannot define explicit or implicit operators from or to a base class? How can I get the base class Linq result to cast up to the inherited Employee class, while still maintaining its db state so I can submit changes?</p>