Top Questions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T06:56:33Z http://stackoverflow.com/feeds http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1695606/pointers-problem 0 Pointers problem.. manugupt1 2009-11-08T06:54:12Z 2009-11-08T06:56:26Z <p>What is the difference b/w</p> <pre><code>struct { float *p; } *ptr = s; *ptr-&gt;p++ </code></pre> <p>and</p> <pre><code>(*ptr-&gt;p)++; </code></pre> <p>I understand that the former points to the next address while the latter increments the value by 1 but I cannot get how it is happening..... </p> http://stackoverflow.com/questions/31044/is-there-an-exists-function-for-jquery 13 Is there an "exists" function for jQuery jakemcgraw 2008-08-27T19:49:41Z 2009-11-08T06:55:58Z <p>So I know that you can do:</p> <pre><code>if ($(selector).length&gt;0) { // Do something } </code></pre> <p>But is there a more elegant method?</p> http://stackoverflow.com/questions/1695452/searching-values-of-a-list-in-another-list-using-python 1 Searching values of a list in another List using Python Al 2009-11-08T05:20:21Z 2009-11-08T06:55:54Z <p>Im a trying to find a sublist of a list. Meaning if list1 say [1,5] is in list2 say [1,4,3,5,6] than it should return True. What I have so far is this:</p> <pre><code>for nums in l1: if nums in l2: return True else: return False </code></pre> <p>This would be true but I'm trying to return True only if list1 is in list2 in the respective order. So if list2 is [5,2,3,4,1], it should return False. I was thinking along the lines of comparing the index values of list1 using &lt; but I'm not sure.</p> http://stackoverflow.com/questions/1024723/wcf-datacontract-upcasting 1 WCF DataContract Upcasting Jarred Froman 2009-06-21T20:52:03Z 2009-11-08T06:55:33Z <p>I'm trying to take a datacontract object that I received on the server, do some manipulation on it and then return an upcasted version of it however it doesn't seem to be working. I can get it to work by using the KnownType or ServiceKnownType attributes, but I don't want to roundtrip all of the data. Below is an example:</p> <pre><code>[DataContract] public class MyBaseObject { [DataMember] public int Id { get; set; } } [DataContract] public class MyDerivedObject : MyBaseObject { [DataMember] public string Name { get; set; } } [ServiceContract(Namespace = "http://My.Web.Service")] public interface IServiceProvider { [OperationContract] List&lt;MyBaseObject&gt; SaveMyObjects(List&lt;MyDerivedObject&gt; myDerivedObjects); } public class ServiceProvider : IServiceProvider { public List&lt;MyBaseObject&gt; SaveMyObjects(List&lt;MyDerivedObject&gt; myDerivedObjects) { ... do some work ... myDerivedObjects[0].Id = 123; myDerivedObjects[1].Id = 456; myDerivedObjects[2].Id = 789; ... do some work ... return myDerivedObjects.Cast&lt;MyBaseObject&gt;().ToList(); } } </code></pre> <p>Anybody have any ideas how to get this to work without having to recreate new objects or using the KnownType attributes? </p> http://stackoverflow.com/questions/1695592/math-sqrt-vs-newton-raphson-method-for-finding-roots-in-c 0 math.sqrt vs. Newton-Raphson Method for finding roots in c# Alex 2009-11-08T06:44:45Z 2009-11-08T06:54:44Z <p>Hi, I'm doing a homework project that requires this:</p> <p>Below you will find the code that I have written to compute the square root of a number using the Newton-Raphson method. Include it in your project. For this project your job will be to write a test harness that tests the code that I have written. Carefully read the method prologue to understand how the function should work. Your test harness will provide a loop that:</p> <ol> <li>Prompts the user to enter in a test value.</li> <li>Gets the user's input. If a zero is entered, your program will print out a report and terminate.</li> <li>Calls the Sqrt method provided in this project, and saves the return value in a double variable.</li> <li>Calls the Sqrt method that is built into the Math class and saves the return value in a second double variable.</li> <li>Compare these two values to see if they are equal.</li> <li>When the user indicates that they are done (by entering a zero) display a report that shows this information: * How many test cases you executed * How many passed * How many failed</li> </ol> <p>So I've done all this without any problems in about 15 minutes, however for extra credit he asks us to find what is wrong with his Sqrt method and fix it so its return value equals the Math.Sqrt return value of the .net framework. I can't seem to find the problem in his method, and I want to find it, so I was wondering if anyone could point me in the right direction as to what the problem is with his Sqrt method? Thanks.</p> <p>Here is my complete code:</p> <pre><code>// declare variables double userInput = 0.0; double debrySqrtReturnValue = 0.0; double dotNetSqrtReturnValue = 0.0; int testCasesExecuted = 0; int testsPassed = 0; int testsFailed = 0; bool isEqual = false; do { // Prompt the user to enter in a test value Console.Write("Please enter a positive integer value: "); userInput = double.Parse(Console.ReadLine()); if (userInput != 0) { debrySqrtReturnValue = Sqrt(userInput); dotNetSqrtReturnValue = Math.Sqrt(userInput); Console.WriteLine("The square root of {0} is: {1}", userInput, debrySqrtReturnValue); Console.WriteLine("The real square root of {0} is: {1}\n", userInput, dotNetSqrtReturnValue); if (debrySqrtReturnValue == dotNetSqrtReturnValue) isEqual = true; else isEqual = false; if (isEqual) testsPassed++; else testsFailed++; testCasesExecuted++; } } while (userInput != 0); Console.WriteLine("\n\n--------------------------------Report---------------------------------"); Console.WriteLine("test cases excecuted: {0}", testCasesExecuted); Console.WriteLine("tests passed: {0}", testsPassed); Console.WriteLine("tests failed: {0}", testsFailed); Console.ReadLine(); } // The Sqrt method // Purpose: to compute the square root of a number // Parameters: a positive, non-zero integer // returns: a double, which is the square root of the number // --------------------------------------------------------- static double Sqrt(double number) { // constants to use in the calculation const int FIRST_APPROX = 2; const double EPS = 0.001; // a local variable double xN = 0; // pick 2 as first approximation double xNPlus1 = FIRST_APPROX; do { xN = xNPlus1; xNPlus1 = xN - ((xN * xN - number) / (FIRST_APPROX * xN)); } while (Math.Abs(xNPlus1 - xN) &gt; EPS); return xN; } </code></pre> <p>} </p> http://stackoverflow.com/questions/1694515/htmlparser-help 1 htmlParser Help unknown (google) 2009-11-07T21:38:46Z 2009-11-08T06:54:41Z <p>UPDATE: Hi Pascal, Thanks for the quick reply, This is almost what I wanted. The newlink is different for each tag, can you please help me to do that. </p> <p>Thanks Micheal</p> <p>All i need to do is iterate over all the link tags that appear in the input String, grab their value, and replace with a different link with out disturbing the link text</p> <p>Any help would be greatly appreciated.</p> <p>Thanks</p> <p>Hi, </p> <p>I am new using htmlParser in Java, please help me with this condition.</p> <pre><code>htmlString = &lt;a class="user" href=""&gt;first name&lt;/a&gt; posted on &lt;a class="user" href=""&gt;Test Test&lt;/a&gt;'s wiki entry, &lt;a href="http://localhost:8080/b/lll/ddd"&gt;werwrwrwerwerwer&lt;/a&gt;, in </code></pre> <p>I need to replace the <code>href</code> link in <code>&lt;a class="user" href=""&gt;</code> to another link in the tag.</p> <p>Thanks, Micheal</p> http://stackoverflow.com/questions/1686107/what-is-a-good-library-for-creating-pdfs-in-delphi-2010 2 What is a good library for creating PDFs in Delphi 2010? Zartog 2009-11-06T08:04:47Z 2009-11-08T06:53:21Z <p>What is a good library for creating PDFs in Delphi 2010?</p> <p>Pre Unicode I used PowerPDF, which though obsolete, was flexible enough to do what I wanted to do (very customized non-db/table based reports)</p> <p>I currently have PowerPDF compiling in Delphi 2010, but not yet working, and I'd rather not port and debug if there are any good Open Source PDF libraries already available for Delphi 2010...</p> http://stackoverflow.com/questions/1695585/what-kind-of-database-would-be-best-suited-to-maintaining-an-extremely-large-list -1 What kind of database would be best suited to maintaining an extremely large list of items with a counter for each item that is updated often in real time? Daniel Straight 2009-11-08T06:40:13Z 2009-11-08T06:53:18Z <p>Let's pretend it's for word frequency counts in a web crawler. Is relational the way to go (I'm imagining a simple two-column table) or is there a NoSQL option better suited to this task?</p> http://stackoverflow.com/questions/1695425/generic-object-carrier-class-c 0 Generic object carrier class - C++ Appu 2009-11-08T05:05:28Z 2009-11-08T06:52:55Z <p>I need to create a generic <em>object carrier</em> class. I came up with something simple like</p> <pre><code>template&lt;typename T&gt; class ObjectCarrier { public: const T&amp; item() const { return item_; } void setItem(T&amp; item) { item_ = item; } private: T item_; }; </code></pre> <p>This works well when <code>T</code> has got a default constructor (parameterless). Things gets complicated when <code>T</code> has parameterized constructors. So I rewrote the class like</p> <pre><code>template&lt;typename T&gt; class ObjectCarrier { public: const T&amp; item() const { return *item_; } void setItem(T&amp; item) { item_ = new T ( item ); } private: T* item_; }; </code></pre> <p>Changed the <code>item_</code> variable to <code>T*</code> and created a new instance using the copy constructor of <code>T</code>. Again this worked well until <code>T</code> is a pointer type. I mean <code>ObjectCarrier&lt;Foo*&gt;</code> won't work. </p> <p>I am wondering how can I design this class so that it works for almost all kind of types. I think I may need to create a <code>traits</code> type specialized for pointers. But unfortunately, I am not able to make that work.</p> <p>Any help would be great.</p> http://stackoverflow.com/questions/1695601/multi-dimensional-array-transmit-issue 0 multi-dimensional array transmit issue George2 2009-11-08T06:52:13Z 2009-11-08T06:52:13Z <p>Hello everyone,</p> <p>I am using VSTS 2008 + Native C++ to develop RPC programs (both client and server). I am reading MSDN document for marshalling multi-dimensional array</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa374185%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa374185%28VS.85%29.aspx</a></p> <p>I am confused about the following statement, and I am confused about what means offline and online, and why offline/online is related to size of stub/performance? Could anyone help to clarify please?</p> <p><hr></p> <h2>The fully-interpreted method marshals data completely offline. This reduces the size of the stub code considerably, but it also results in decreased performance. In mixed-mode marshaling, the stubs marshals some parameters online. While this results in a larger stub size, it also offers increased performance.</h2> <p>thanks in advance, George</p> http://stackoverflow.com/questions/1614396/prefetching-data-in-with-linq-to-sql-ioc-and-repository-pattern 1 Prefetching data in with Linq-to-SQL, IOC and Repository pattern Mose 2009-10-23T15:56:40Z 2009-11-08T06:52:12Z <p>Hi,</p> <p>using Linq-to-SQL I'd like to prefetch some data.</p> <p>1) the common solution is to deal with <strong>DataLoadOptions</strong>, but in my architecture it won't work because :</p> <ul> <li>the options have to be set before the first query</li> <li>I'm using IOC, so I don't directly instanciate the DataContext (I cannot execute code at instanciation)</li> <li>my DataContext is persistent for the duration of a web request</li> </ul> <p>2) I have seen another possibility based on <strong>loading</strong> the <strong>data and its childs</strong> in a method, then returning only the data (so the child is already loaded) <a href="http://www.west-wind.com/weblog/posts/38838.aspx" rel="nofollow">see an example here</a></p> <p>Nonetheless, in my architecture, it cannot not work :</p> <ul> <li>My queries are cascaded out of my repository and can be consumed by many services that will add clauses</li> <li>I work with interfaces, the concrete instances of the linq-to-sql objects do not leave the repositories (yes, you can work with interfaces AND add clauses)</li> <li>My repositories are generic</li> </ul> <p>Yes, this architecture is quiet complicated, but it's very cool as I can play with the code like lego ;)</p> <p>My question is : what are the <strong>other possibilities</strong> to prefetch a data ?</p> http://stackoverflow.com/questions/1695593/vb-net-dataset-update 0 VB.NET DataSet Update RedsDevils 2009-11-08T06:45:55Z 2009-11-08T06:52:07Z <p>Why my set of codes didn't update in DataSet? Then it goes to Error. Please anyone check this code and point me out where I am missing. Thanks in advance!</p> <pre><code>Private Sub btnUpdate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnUpdate.Click Dim conxMain As New SqlConnection("Data Source=SERVER;Initial Catalog=DBTest;Persist Security Info=True;User ID=username;Password=pwds") Dim dadPurchaseInfo As New SqlDataAdapter Dim dsPurchaseInfo As New DataSet1 Try Dim dRow As DataRow conxMain.Open() Dim cmdSelectCommand As SqlCommand = New SqlCommand("SELECT * FROM Stock", conxMain) cmdSelectCommand.CommandTimeout = 30 dadPurchaseInfo.SelectCommand = cmdSelectCommand Dim builder As SqlCommandBuilder = New SqlCommandBuilder(dadPurchaseInfo) dadPurchaseInfo.Fill(dsPurchaseInfo, "Stock") For Each dRow In dsPurchaseInfo.Tables("Stock").Rows If CInt(dRow.Item("StockID").ToString()) = 2 Then dRow.Item("StockCode") = "Re-Fashion[G]" End If Next dadPurchaseInfo.Update(dsPurchaseInfo, "Stock") Catch ex As Exception MsgBox("Error : ") Finally If dadPurchaseInfo IsNot Nothing Then dadPurchaseInfo.Dispose() End If If dsPurchaseInfo IsNot Nothing Then dsPurchaseInfo.Dispose() End If If conxMain IsNot Nothing Then conxMain.Close() conxMain.Dispose() End If End Try End Sub </code></pre> http://stackoverflow.com/questions/1695574/directshow-is-reseting-my-pc 0 DirectShow is reseting my PC unknown (google) 2009-11-08T06:34:05Z 2009-11-08T06:50:52Z <p>Hello, </p> <p>I developed small application using DirectShow and code on next link:</p> <p><a href="http://www.codeproject.com/KB/directx/directxcapture.aspx" rel="nofollow">http://www.codeproject.com/KB/directx/directxcapture.aspx</a></p> <p>If i have 2nd display active, when I close application, it reset my PC.</p> <p>How does it looks line? First, when I close application, for 0.5 is all ok, after that PC freezes for 1 sec, blue screen for 0.5 sec, and then reset.</p> <p>I have Nvidia 7600GS video card in PC.</p> <p>Is there maybe a problem with capture.Close(); method? Or it's video card?</p> <p>Please help!</p> http://stackoverflow.com/questions/1695597/stop-form-page-load-upon-submit-with-jquery 0 Stop form page load upon submit with jQuery a2h 2009-11-08T06:49:38Z 2009-11-08T06:49:38Z <pre><code>$(document).ready(function() { $("form.ajax").submit(function(e) { destString = $(this).attr('action'); dataString = $(this).serialize(); $.ajax({ type: "POST", url: destString, data: dataString, datatype: json, success: function(data) { if (!data.success) { $.amwnd({ title: 'Error!', content: data.message, buttons: ['ok'], closer: 'ok' }); } } }); e.preventDefault(); return false; }); }); </code></pre> <p>That is some code I am using for making all forms I have with <code>class="ajax"</code> submit using Ajax. I have looked at some StackOverflow questions such as <a href="http://stackoverflow.com/questions/804946/submit-form-does-not-stop-in-jquery-ajax-call">this one</a> along with other sites on the web, which has led me put this block of code in:</p> <pre><code>e.preventDefault(); return false; </code></pre> <p>That's two things that apparently both stop the form submission via normal methods, but looks like that's not working.</p> <p>Am I doing something wrong, or..?</p> http://stackoverflow.com/questions/1695578/silverlight-unity-and-inotifypropertychanged 0 Silverlight, Unity and INotifyPropertyChanged DaRKoN_ 2009-11-08T06:37:15Z 2009-11-08T06:48:33Z <p>I'm starting a new Silverlight project at the moment, and I'm having issues where by Unity is throwing an exception if my ViewModel (which it is instantiating for me) contains the RaisePropertyChanged event.</p> <p>I looks like this:</p> <pre><code>public class AddNewClientViewModel : ViewModelBase { private Visibility _extraClientFieldsVisible; public Visibility ExtraClientFieldsVisible { get { return _extraClientFieldsVisible; } set { _extraClientFieldsVisible = value; base.RaisePropertyChanged("ExtraClientFieldsVisible"); } } public AddNewClientViewModel(IMyInterface blah) { ExtraClientFieldsVisible = Visibility.Collapsed; } </code></pre> <p>ViewModelBase which it inherits looks like this:</p> <pre><code> public abstract class ViewModelBase : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; public void RaisePropertyChanged(string propertyName) { PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } } </code></pre> <p>The full stack trace is noted below, but it seems like calling the RaisePropertyChanged event during the constructor causes Unity to blowup.</p> <p>Here's the full stack trace of the error:</p> <pre><code>Microsoft.Practices.Unity.ResolutionFailedException was unhandled by user code Message="Resolution of the dependency failed, type = \"ClientSide.ViewModels.AddNewClientViewModel\", name = \"\". Exception message is: The current build operation (build key Build Key[ClientSide.ViewModels.AddNewClientViewModel, null]) failed: Object reference not set to an instance of an object. (Strategy type BuildPlanStrategy, index 3)" TypeRequested="AddNewClientViewModel" StackTrace: at Microsoft.Practices.Unity.UnityContainer.DoBuildUp(Type t, Object existing, String name) at Microsoft.Practices.Unity.UnityContainer.DoBuildUp(Type t, String name) at Microsoft.Practices.Unity.UnityContainer.Resolve(Type t, String name) at Microsoft.Practices.Unity.UnityContainerBase.Resolve(Type t) at Microsoft.Practices.Unity.UnityContainerBase.Resolve[T]() at ClientSide.Framework.ServiceLocator.get_AddNewClientViewModel() InnerException: Microsoft.Practices.ObjectBuilder2.BuildFailedException Message="The current build operation (build key Build Key[ClientSide.ViewModels.AddNewClientViewModel, null]) failed: Object reference not set to an instance of an object. (Strategy type BuildPlanStrategy, index 3)" BuildKey="Build Key[ClientSide.ViewModels.AddNewClientViewModel, null]" ExecutingStrategyIndex=3 ExecutingStrategyTypeName="BuildPlanStrategy" StackTrace: at Microsoft.Practices.ObjectBuilder2.StrategyChain.ExecuteBuildUp(IBuilderContext context) at Microsoft.Practices.ObjectBuilder2.Builder.BuildUp(IReadWriteLocator locator, ILifetimeContainer lifetime, IPolicyList policies, IStrategyChain strategies, Object buildKey, Object existing) at Microsoft.Practices.Unity.UnityContainer.DoBuildUp(Type t, Object existing, String name) InnerException: System.NullReferenceException Message="Object reference not set to an instance of an object." StackTrace: at ClientSide.ViewModels.ViewModelBase.RaisePropertyChanged(String propertyName) at ClientSide.ViewModels.AddNewClientViewModel.set_ExtraClientFieldsVisible(Visibility value) at ClientSide.ViewModels.AddNewClientViewModel..ctor(IDataCore dataCore) at BuildUp_ClientSide.ViewModels.AddNewClientViewModel(IBuilderContext ) at Microsoft.Practices.ObjectBuilder2.DynamicMethodBuildPlan.BuildUp(IBuilderContext context) at Microsoft.Practices.ObjectBuilder2.BuildPlanStrategy.PreBuildUp(IBuilderContext context) at Microsoft.Practices.ObjectBuilder2.StrategyChain.ExecuteBuildUp(IBuilderContext context) InnerException: </code></pre> <p>So I'm hitting a NullReferenceException. I can't just work out how...</p> http://stackoverflow.com/questions/1695568/handling-events-fired-in-constructors 0 Handling events fired in constructors Niran 2009-11-08T06:28:52Z 2009-11-08T06:47:26Z <pre><code>Work = New ExampleWork() </code></pre> <p>Here the <code>Work</code> is a <code>withevents</code> variable and I've used the handles clause for handling various events fired by the <code>ExampleWork</code> object. However the event handler will not get assigned till the constructor of the <code>ExampleWork</code> returns. Now how can I handle any events fired from the constructor? I can move the constructor logic out to a separate method and call it after the constructor has returned and thus handle all the fired events including events fired from constructor. However it doesn't look good. What is the best way to handle such a situation?</p> http://stackoverflow.com/questions/1695591/jquery-draggable-makes-input-text-fields-uneditable-swallows-onfocus 0 Jquery draggable makes input text fields uneditable (swallows onfocus?) Martin 2009-11-08T06:44:38Z 2009-11-08T06:46:49Z <p>Hi!</p> <p>I have written code (below) to be able to drag an input field onto another, but it seems that draggable swallows <code>input[text].onfocus</code>. </p> <p>This results in the problem, that all draggable input fields act as disabled (firefox) and clicking the mouse does not focus them. I can edit the input field if I focus on them using the TAB key, but I have to traverse all the necessary tab-indexes. </p> <p>So it seems draggable swallows the <code>input[text].onfocus</code> mouse event. </p> <p>Is there a way to workaround this during bind-time?</p> <pre><code>&lt;head&gt; &lt;script type="text/javascript" src="/js/jquery.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="/js/jquery-ui.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready( function() { $("#drag-table tr td input").draggable({helper: 'clone', revert: 'invalid', cancel: null, cursor: 'move', addClasses: false, containment: $("#drag-table"), handle: 'h2', opacity: 0.8, scroll: true }); $("#drag-table tr td input").droppable({ addClasses: false, drop: function(ev, ui) { alert('value='+ ui.draggable.val() + ", text=" + ui.draggable.text() + " and deeper=" + ui.draggable[0].value); $(this).insertAtCaret(ui.draggable.val()); ui.draggable.val(null); $(this).trigger('change'); } }); }); $.fn.insertAtCaret = function (myValue) { return this.each(function(){ //IE support if (document.selection) { this.focus(); sel = document.selection.createRange(); sel.text = myValue; this.focus(); } //MOZILLA / NETSCAPE support else if (this.selectionStart || this.selectionStart == '0') { var startPos = this.selectionStart; var endPos = this.selectionEnd; var scrollTop = this.scrollTop; this.value = this.value.substring(0, startPos)+ myValue+ this.value.substring(endPos,this.value.length); this.focus(); this.selectionStart = startPos + myValue.length; this.selectionEnd = startPos + myValue.length; this.scrollTop = scrollTop; } else { this.value += myValue; this.focus(); } }); }; &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;table border="1" cellspacing="10" cellpadding="10" id="drag-table"&gt; &lt;tr&gt; &lt;td&gt;&lt;input type="text" name="1x1y" id="id1x1y" value="text" onfocus="alert('onfocus swallowed?');"/&gt;&lt;/td&gt; &lt;td&gt;&lt;input type="text" name="2x1y" id="id2x1y" onchange="alert('hello');"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;input type="text" name="1x2y" id="id1x2y" value="next"/&gt;&lt;/td&gt; &lt;td&gt;&lt;input type="text" name="2x2y" id="id2x2y"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/body&gt; </code></pre> http://stackoverflow.com/questions/1695546/deploy-crystal-report-dlls-only-using-clickonce-without-using-prerequisite-msi 0 Deploy Crystal Report dlls only using ClickOnce without using prerequisite .msi Xster 2009-11-08T06:13:19Z 2009-11-08T06:43:29Z <p>Hi, </p> <p>I believe the conventional way to deploy Crystal Report with a .NET program is to set it as a prerequisite in the publish settings and then a .msi will be packaged with the ClickOnce files on the web/network/CD/wtv. When the user runs setup.exe, it will check whether Crystal Report is on the client computer. If not, it runs the Crystal Report .msi. But that will always require admin rights. </p> <p>My question is, is it possible to package Crystal Report's dlls along with other application's output assemblies so that no explicit install is required? My application makes use of many many components and including a dll with the install is sufficient for most of them. Could I do the same with Crystal Report?</p> http://stackoverflow.com/questions/1695559/css-box-borders 1 CSS box borders JMSA 2009-11-08T06:24:35Z 2009-11-08T06:43:20Z <p>This is a CSS problem. I need to trim the white spaces from a div or list or paragraph.</p> <pre><code>------------------------------------------- | This is my Text. | ------------------------------------------- </code></pre> <p>How to convert this div/list/paragraph (i.e. any box) to show like the following when it is needed?</p> <pre><code>-------------------- | This is my Text. | -------------------- </code></pre> <p><strong>And the Vice-versa?</strong></p> <p>This should work regardless of the parent container.</p> http://stackoverflow.com/questions/1695433/simply-adding-data-to-an-nsbrowser 0 Simply adding data to an NSBrowser? unknown (google) 2009-11-08T05:10:15Z 2009-11-08T06:42:06Z <p>I have a tree data structure which I would like to put into an NSBrowser. I have found complicated methods that involve App Delegates, but I would just like to insert the rows as I come across them.</p> http://stackoverflow.com/questions/1439457/can-you-typecast-a-net-object-in-ironpython 0 can you typecast a .NET object in IronPython? Phil Smyth 2009-09-17T15:05:39Z 2009-11-08T06:41:23Z <p>I'm interfacing with a .NET API in IronPython. The API is returning an object of the wrong type (some kind of generic object). I suspect that the problem is not showing up in their C# code because the type declaration when the object is constructed is forcing the returned object to the correct type. Is it possible to typecast an .NET object in IronPython? I think this would do the trick.</p> http://stackoverflow.com/questions/1686998/php-domdocument-xml-load-with-broken-xml-data 3 PHP DomDocument XML Load with Broken XML Data Kaitsuli 2009-11-06T11:24:31Z 2009-11-08T06:41:19Z <p>Hi,</p> <p>How do you deal with broken data in XML files? For example, if I had</p> <pre><code>&lt;text&gt;Some &amp;improper; text here.&lt;/text&gt; </code></pre> <p>I'm trying to do:</p> <pre><code> $doc = new DOMDocument(); $doc-&gt;validateOnParse = false; $doc-&gt;formatOutput = false; $doc-&gt;load(...xml'); </code></pre> <p>and it fails miserably, because there's an unknown entity. Note, I can't use CDATA due to the way the software is written. I'm writing a module which reads and writes XML, and sometimes the user inserts improper text.</p> <p>I've noticed that DOMDocument->loadHTML() nicely encodes everything, but how could I continue from there?</p> http://stackoverflow.com/questions/1176032/eclipse-php-ide-3-5-no-completions-available-on-var 0 [Eclipse PHP IDE 3.5] "No completions available" on var_ cupakob 2009-07-24T06:27:45Z 2009-11-08T06:40:51Z <p>hi all,</p> <p>i have againg a problem with completition. now i can't get any suggestion. Sure i can type var_dump, but it is more comfortable with autocompletion. </p> <p>I'm using Eclipse PHP Ide 3.5 with PDT 2.1. </p> http://stackoverflow.com/questions/1695043/helper-script-tool-for-one-a-day-reminders-applications 0 Helper script/tool for "one a day" reminders applications unknown (google) 2009-11-08T01:31:58Z 2009-11-08T06:40:17Z <p>I am looking for a helper tool/ script that can be used to power an application that presents some randomized content periodically eg once per day. Example applications are "One a Day Bridal Prep", "Daily Quotations", "Daily Programming Tips" etc etc It is simple enough to code one up myself but I am wondering if I don't need to reinvent the wheel here. I am working with php/mysql but am open to working with scripts that are made with other languages.</p> http://stackoverflow.com/questions/1164180/pdt-installed-but-php-perspective-is-missing 0 PDT installed but PHP Perspective is missing cupakob 2009-07-22T09:46:05Z 2009-11-08T06:39:52Z <p>I have installed PDT 2.1 but i can't switch to the PHP Perspective, any ideas?</p> http://stackoverflow.com/questions/1695572/need-help-in-asp-net-password-textbox 0 Need help in asp.net password textbox Sumit 2009-11-08T06:31:55Z 2009-11-08T06:39:04Z <p>Hi all, I have problem with password text box control. I have username textbox, password textbox, retypepassword textbox. And i have drowpdownlist with items Website, Newspaper, Others. After filling username, password, retype password in textbox. Whenever i am selecting items Newspaper and Others items from drowdownlist, password and retypepassword textbox value getting cleared. I have set in autopostback=true in dropdownlist control. Pls somebody help me where is my mistake??</p> <p>Thanks, Sumit</p> http://stackoverflow.com/questions/1695389/odd-behavior-of-mktime 0 Odd behavior of mktime() Austin Hyde 2009-11-08T04:46:27Z 2009-11-08T06:38:55Z <p>Continuing on <a href="http://stackoverflow.com/questions/1692184/best-way-to-convert-epoch-time-to-real-date-time">my attempt to create a DateTime class</a> , I am trying to store the "epoch" time in my function:</p> <pre><code>void DateTime::processComponents(int month, int day, int year, int hour, int minute, int second) { struct tm time; time.tm_hour = hour; time.tm_min = minute; time.tm_sec = second; time.tm_mday = day; time.tm_mon = month; time.tm_year = year - 1900; ticks_ = mktime(&amp;time); processTm(time); } void DateTime::processTm(struct tm time) { second_ = time.tm_sec; minute_ = time.tm_min; hour_ = time.tm_hour; weekday_ = time.tm_wday; monthday_ = time.tm_mday; yearday_ = time.tm_yday; month_ = time.tm_mon; year_ = time.tm_year + 1900; } </code></pre> <p>For an arbitrary date, <code>processComponents(5,5,1990,1,23,45)</code> (June 6, 1990 1:23:45 am), it sets all values correctly and as expected.</p> <p>However, upon further testing, I find that for <code>processComponents(0,0,1970,0,0,0)</code> (January 1, 1970, 12:00:00 am), <code>mktime(&amp;time)</code> causes <code>time</code> to be screwed up:</p> <pre><code>time.tm_mon = 11; time.tm_mday = 30; time.tm_year = 69; time.tm_hour = 23; time.tm_min = 0; time.tm_sec = 0; time.tm_isdst = 0; time.tm_gmtoff = -18000; time.tm_zone = "EST"; time.tm_wday = 2; time.tm_yday = 363; </code></pre> <p>Translating to a date of December 31, 1969 11:00:00 pm.</p> <p>I can verify that <code>mktime()</code> is responsible, because by commenting out that line, it reports the date and time correctly as January 1, 1970 12:00:00 am.</p> <p>Why is <code>mktime()</code> only messing up the epoch? And how should I fix / workaround this?</p> <p>Thanks! </p> http://stackoverflow.com/questions/1695581/whats-a-good-book-that-teaches-php-to-total-beginners -2 What's a good book that teaches PHP to total beginners? Alexsander Akers 2009-11-08T06:38:33Z 2009-11-08T06:38:33Z <p>I want to learn PHP, but I'm a total beginner. I'm not new to the developer scene, though. I know Obj-C, and JS, so it wouldn't have to teach from the <i>ground</i> up.</p> <p>Thanks a <code>document.write(Math.random()*Math.pow(10,18));</code><br> :)</p> http://stackoverflow.com/questions/1652224/how-to-deal-with-multi-criteria-queries-in-3-tier-architecture 3 How-To Deal with Multi-Criteria Queries in 3-Tier Architecture Yoann. B 2009-10-30T20:46:48Z 2009-11-08T06:37:58Z <p>Assuming a basic 3-Tier application (UI-Service-Data Access) with a total abstraction of Data Access layer (SQL, Xml ...)</p> <p>The UI applications are composed with Datagrids with multi criteria filters, find etc..</p> <p>So how-to deal with mutli-criteria queries in this architecture without having to create multiple service methods with all possible criteria as parameters...</p> <p>Note that UI tier doesn't know how the DAL works.</p> http://stackoverflow.com/questions/1695567/cant-connect-to-mysql-using-bitnami-lamp-stack-through-php 0 Can't connect to mysql using Bitnami lamp stack through php MikiRei 2009-11-08T06:28:38Z 2009-11-08T06:37:29Z <p>Ok, this will be a long question.</p> <p>I'm trying to get something up and running on my university account. We have a public_html folder that we can use as web space to host anything we want there. </p> <p>I've installed Bitnami lamp stack in the public_html folder (probably not the best idea, security-wise, but I'm only going to test this application for a couple of days and pull it down so I really don't care so long I can get this up and running fast) and the site I want to host is working fine and accessible via (http:// (uni address)/(my account name)/public_html/lamp/apache2/htdocs/(etc..). However, certain parts of the code that connects to the databse gives me the following warning:</p> <pre><code>Warning: mysql_connect() [function.mysql-connect]: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) </code></pre> <p>I'm connecting to the database using the following code:</p> <pre><code>mysql_connect($CFG-&gt;dbhost,$CFG-&gt;dbuser,$CFG-&gt;dbpass); </code></pre> <p>Where dbhost is 'localhost'. </p> <p>Since it's referencing /var/run/mysqld/mysqld.sock - it obviously means it's trying to connect to the wrong thing as the mysql in the lamp stack I've installed have the following in its my.cnf:</p> <pre><code>[mysqladmin] user=root [mysqld] basedir=(my account folder)/public_html/lamp/mysql datadir=(my account folder)/public_html/lamp/mysql/data port=3306 socket=(my account folder)/public_html/lamp/mysql/tmp/mysql.sock tmpdir=(my account folder)/public_html/lamp/mysql/tmp [mysqld_safe] mysqld=mysqld.bin [client] port=3306 socket=(my account folder)/public_html/lamp/mysql/tmp/mysql.sock [manager] port=3306 socket=(my account folder)/public_html/lamp/mysql/tmp/mysql.sock pid-file=(my account folder)/public_html/lamp/mysql/tmp/manager.pid default-mysqld-path=(my account folder)/public_html/lamp/mysql/bin/mysqld.bin </code></pre> <p>So my question is, anyone know how to get it to connect to the correct socket? Also, var/run/mysqld/mysqld.sock doesn't exist at all and I obviously don't have the permission to create it (not that I see how it serves my purpose at all). </p> <p>This had been plaguing me since yesterday. Any help would be greatly appreciated.</p> <p>Cheers!</p>