active questions tagged dynamic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T15:08:29Z http://stackoverflow.com/feeds/tag/dynamic http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1860036/google-wave-and-robot-with-dynamic-thirdparty-data-source 1 Google Wave and Robot with dynamic thirdparty data source Questionner 2009-12-07T13:38:47Z 2009-12-07T13:51:25Z <p>Hi! I am new to google wave robot programming and for some time I am looking for an answer to my question. Consider example: </p> <p>(A) - Thirdparty Data Source with Thirdparty API<br> (B) - Google Robot<br> (C) - Google Wave </p> <p>Is there a way to create robot (B), which will periodically interact with (A) updating the (C) even if user is away (doesn't use the Google Wave), so when he get back, he will get, for example, a new wave for him? I am thinking of using Google Wave as kind of LogFile on third party data source for which I got API in Java. </p> <p>Question in straight forward, but I can't find (yet) appropriate explanation. Does anyone know the answer?</p> <p>thx in advance! </p> http://stackoverflow.com/questions/796936/web-application-project-reference-tag 0 Web Application Project @Reference tag digiguru 2009-04-28T09:09:26Z 2009-12-06T14:37:12Z <p>I am converting a web site project to a web application project in VS 2008 and i've run across a query regarding dynamically loading user controls.</p> <pre><code>&lt;%@ Reference Control="~/UserControls/MyUserControl.ascx" %&gt; </code></pre> <p>and then in the page I simply called...</p> <pre><code>Dim ucSupplierDetails As New ASP.usercontrols_myusercontrol_ascx </code></pre> <p>Sadly when updateing to a web applciation project, this is no longer a valid line. Is there an alternative? </p> http://stackoverflow.com/questions/1855242/net-4-makes-for-better-unit-testing-mocking-due-to-the-ability-to-monkey-patch 1 .NET 4 makes for better unit testing/mocking due to the ability to monkey patch? Dockers 2009-12-06T12:16:22Z 2009-12-06T13:05:03Z <p>Consider this about the up-coming <a href="http://ironpython.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27320" rel="nofollow">Iron Python</a> implementation.</p> <p>In theory it would allow monkey patching right? Good or bad, it matters not. Given someone else's non-testable code (at least easily) the dynamic keyword would allow <a href="http://en.wikipedia.org/wiki/Monkey%5Fpatch" rel="nofollow">monkey patching</a> would it not? This has great potential for C# and VB if I'm reading it right.</p> <p>What are the thoughts on this?</p> http://stackoverflow.com/questions/302069/ssrs-report-dynamic-selection-of-fields 0 SSRS Report , Dynamic selection of fields suni 2008-11-19T14:42:57Z 2009-12-06T11:59:59Z <p>Hi,</p> <p>I want to create a report where my report's fields should change according to my input parameter values. </p> <p>eg. if i select '2 months'. there should be 2 fields in result, having month wise calculation. if select '3 weeks'. there should be 3 fileds each for each weeks calculation instead of the 2 months field.</p> <p>How do I achieve this.</p> <p>Please help me.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1852967/jquery-apply-plugin-dynamically 0 jQuery: apply plugin dynamically Fuxi 2009-12-05T18:11:51Z 2009-12-05T19:08:11Z <p>hi,</p> <p>i'm having this markup:</p> <pre><code>&lt;div plug=tButton&gt;&lt;/div&gt; </code></pre> <p>and wrote a little plugin which makes a button ouf of the div like this:</p> <pre><code>var cmd = $("[plug]"); cmd.tButton(); </code></pre> <p>my question: when only having the div (and its plug-attribute), how can i apply the corresponding plugin to it (without using eval)?</p> <p>it should be like:</p> <pre><code>var plug = div.attr("plug"); div[plug]; </code></pre> <p>but doesn't work obviously.</p> <p>thx.</p> http://stackoverflow.com/questions/1850853/asp-menu-driving-me-insane 0 ASP Menu driving me insane simplesimon 2009-12-05T02:05:53Z 2009-12-05T05:47:32Z <p>Hi there,</p> <p>I am trying to create a menu using ASP (I have never used ASP before, im a PHP man) using values stored in a database.</p> <p>basically the html layout i want is as such:</p> <pre><code>&lt;ul&gt; &lt;li&gt; &lt;ul class="sub-menu"&gt; &lt;li class="sub-menu-li"&gt;Test&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p>I need to loop around the root menu items rs("AD_Level") which is equal to 0 for root objects, then inside that loop, lop around anything that has the same parent id eg if the current record is AD_Level =0 and AD_Parent=5 then loop around all items with AD_Parent 5 and AD_Level != 0 and insert the values into html and so on and so forth.</p> <p>Please help! I am struggling with a new language and cannot see a way to do this without losing sanity</p> http://stackoverflow.com/questions/1846013/how-do-you-instantiate-net-hosted-controls-dynamically-loaded-via-javascript 0 How do you instantiate .NET hosted controls dynamically loaded via JavaScript? gum411 2009-12-04T10:05:40Z 2009-12-04T10:54:55Z <p>I am trying to load a bunch of .NET hosted controls into a page dynamically using <a href="http://en.wikipedia.org/wiki/JavaScript" rel="nofollow">JavaScript</a> to inject OBJECT tags into the HTML.</p> <p>My problem is that the objects do not instantiate, only the static object that is visible on page load will appear. Is there any way to get these objects to load?</p> <pre> <code> &lt;h1&gt; Visible static&lt;/h1&gt; &lt;div id=&quot;staticObject&quot;&gt; &lt;object id=&quot;Object1&quot; name=&quot;dropfolder&quot; classid=&quot;http:DropFolder.dll#DropFolder.DropFolder&quot;&gt; &lt;param name=&quot;FolderName&quot; value=&quot;Intranet only - Worcs&quot;&gt; &lt;param name=&quot;NodeKey&quot; value=&quot;default|Intranet&quot;&gt; &lt;param name=&quot;DropAction&quot; value=&quot;&quot;&gt; &lt;/object&gt; &lt;/div&gt; &lt;h2&gt; Hidden static&lt;/h2&gt; &lt;div id=&quot;objwrap&quot; style=&quot;display: none;&quot;&gt; &lt;object id=&quot;default_Intranet&quot; name=&quot;dropfolder&quot; classid=&quot;http:DropFolder.dll#DropFolder.DropFolder&quot;&gt; &lt;param name=&quot;FolderName&quot; value=&quot;Intranet only - Worcs&quot;&gt; &lt;param name=&quot;NodeKey&quot; value=&quot;default|Intranet&quot;&gt; &lt;param name=&quot;DropAction&quot; value=&quot;&quot;&gt; &lt;/object&gt; &lt;/div&gt; &lt;input type=&quot;button&quot; value=&quot;unhide!&quot; onclick=&quot;document.getElementById('objwrap').style.display = 'block';&quot; /&gt; &lt;h2&gt; OnLoad target&lt;/h2&gt; &lt;div id=&quot;objectTarget1&quot;&gt; &lt;/div&gt; &lt;h2&gt; Click target&lt;/h2&gt; &lt;div id=&quot;objectTarget2&quot;&gt; &lt;/div&gt; &lt;input type=&quot;button&quot; value=&quot;inject&quot; onclick=&quot;javascript:inject('objectTarget2');&quot; /&gt; &lt;script type=&quot;text/javascript&quot;&gt; function inject(target) { var target = document.getElementById(target); target.innerHTML = '&lt;object id=&quot;default_Intranet&quot; name=&quot;dropfolder&quot; classid=&quot;http:DropFolder.dll#DropFolder.DropFolder&quot;&gt;' + '&lt;param name=&quot;FolderName&quot; value=&quot;Intranet only - Worcs&quot;&gt;' + '&lt;param name=&quot;NodeKey&quot; value=&quot;default|Intranet&quot;&gt;' + '&lt;param name=&quot;DropAction&quot; value=&quot;&quot;&gt;' + '&lt;/object&gt;'; }; inject('objectTarget1'); &lt;/script&gt; </code> </pre> http://stackoverflow.com/questions/1840806/c-how-to-conditionally-determine-which-functions-are-called-at-compile-time 5 [C] How to conditionally determine which functions are called at compile time? pbean 2009-12-03T15:50:15Z 2009-12-04T03:20:07Z <p>I'm working on implementing a very, <em>very</em> basic component system in C, but now I am at a point where I want to 'dynamically' call some functions. The set-up is very easy: the main program is simply an endless while loop, in which some conditions are checked and in which a "process" function is called for each enabled component.</p> <p>For example, now it works like this:</p> <pre><code>while (1) { input_process(); network_process(); graphics_process(); } </code></pre> <p>But I want to separate it into separate components, and somehow define in a central place which parts are used. This could be done with simple defines, like so:</p> <pre><code>#define HAS_NETWORK ... while (1) { input_process(); #ifdef HAS_NETWORK network_process(); #endif graphics_process(); } </code></pre> <p>As you can see this is alright for 1 or maybe only a few components, but if I want to do this for all of these (input, network and graphics) and additional components in the future, I would have to put separate #ifdefs in there for each of them, and that's quite tedious.</p> <p>In pseudo code, what I'm trying to accomplish is the following:</p> <pre><code>components = {'input', 'network', 'graphics'} ... foreach component in components execute component_process() </code></pre> <p>This way components could easily be added in the future. I don't really mind if the checking is done compile time or run time (although I obviously prefer compile time, but I can imagine run time is easier to implement). I have no idea how to even start.</p> http://stackoverflow.com/questions/1839965/dynamically-creating-functions-in-c 3 Dynamically creating functions in c nick 2009-12-03T13:50:17Z 2009-12-03T22:16:51Z <p>hi, how can i dynamically create a function in c?</p> <p>I try to summarize my C problem as follows: i have a matrix and i want to be able to use some function to generate its elements function has no arguments hence i define the following : </p> <pre><code>typedef double(function)(unsigned int,unsigned int); /* writes f(x,y) to each element x,y of the matrix*/ void apply(double ** matrix, function * f); </code></pre> <p>now i need to generate constant functions within the code. i thought about creating a nested function and returning its pointer, but gcc manual (which allows nested functions) says </p> <p>"If you try to call the nested function through its address after the containing function has exited, all hell will break loose."</p> <p>which i would kind of expect from this code...</p> <pre><code>function * createConstantFunction(const double value){ double function(unsigned int,unsigned int){ return value; } return &amp;function; } </code></pre> <p>so how can i get it to work?</p> <p>thanks!</p> http://stackoverflow.com/questions/432100/dynamic-proxy-generation-with-linfu 1 Dynamic Proxy generation with LinFu Rauhotz 2009-01-11T01:16:34Z 2009-12-03T13:24:22Z <p>I am trying to build a dynamic proxy for an interface with LinFu. The proxy should just implement the getter methods of the properties that are defined by the interface and return for instance a value from a dictionary, where the key is the property name.</p> <p><a href="http://code.google.com/p/linfu/" rel="nofollow">link text</a></p> http://stackoverflow.com/questions/890166/loading-different-assembly-versions-dynamically-in-net 1 Loading different assembly versions dynamically in .NET Crackerjack 2009-05-20T20:48:56Z 2009-12-03T01:00:02Z <p>Is it better to use System.Assembly.Load or to load the assembly directly into the AppDomain using System.AppDomain.CurrentDomain.CreateInstanceFromAndUnwrap? I am specifically interested in calling different versions of the same assembly running in the same process. I think with CreateInstanceFromAndUnwrap your assembly must have the [serializable] attribute, but why is that?</p> <p>EDIT: The assembly I'm trying to load is NOT in the same location as the caller.</p> http://stackoverflow.com/questions/1836697/jquery-apply-selector-to-every-field-in-a-dynamic-form 0 jQuery. Apply selector to every field in a dynamic form Enrique 2009-12-02T23:47:16Z 2009-12-03T00:01:53Z <p>I have a form which is built dynamically using this jQuery plugin </p> <pre><code>http://code.google.com/p/jquery-dynamic-form/ </code></pre> <p>When I duplicate a <strong>div</strong>, all the fields in the <strong>div</strong> are duplicated, and -as plugin docs state- <strong>brackets</strong> are added to the field name</p> <p>I use also jQueryUI. I use the datePicker plugin</p> <pre><code>$("#myDynDateField").datepicker(); </code></pre> <p>It works fine when there's only 1 instance of this datePicker field. When I duplicate the whole div, the datePicker field is also duplicated, and errors begin</p> <pre><strong> inst is undefined uncaught exception: Missing instance data for this datepicker </strong></pre> <p>1) How can I use a jQuery selector that covers all the duplicated fields also?<br> 2) How can I make sure that every duplicated datePicker field will have its right instance, etc.?</p> <p>Thanks a lot in advance,</p> http://stackoverflow.com/questions/1835912/how-do-i-express-a-void-method-call-as-the-result-of-dynamicmetaobject-bindinvoke 10 How do I express a void method call as the result of DynamicMetaObject.BindInvokeMember? Jon Skeet 2009-12-02T21:22:27Z 2009-12-02T23:21:51Z <p>I'm trying to give a short example of <a href="http://msdn.microsoft.com/en-us/library/system.dynamic.idynamicmetaobjectprovider%28VS.100%29.aspx" rel="nofollow"><code>IDynamicMetaObjectProvider</code></a> for the second edition of C# in Depth, and I'm running into issues.</p> <p>I want to be able to express a void call, and I'm failing. I'm sure it's possible, because if I dynamically call a void method using the reflection binder, all is fine. Here's a short but complete example:</p> <pre><code>using System; using System.Dynamic; using System.Linq.Expressions; class DynamicDemo : IDynamicMetaObjectProvider { public DynamicMetaObject GetMetaObject(Expression expression) { return new MetaDemo(expression, this); } public void TestMethod(string name) { Console.WriteLine(name); } } class MetaDemo : DynamicMetaObject { internal MetaDemo(Expression expression, DynamicDemo demo) : base(expression, BindingRestrictions.Empty, demo) { } public override DynamicMetaObject BindInvokeMember (InvokeMemberBinder binder, DynamicMetaObject[] args) { Expression self = this.Expression; Expression target = Expression.Call (Expression.Convert(self, typeof(DynamicDemo)), typeof(DynamicDemo).GetMethod("TestMethod"), Expression.Constant(binder.Name)); var restrictions = BindingRestrictions.GetTypeRestriction (self, typeof(DynamicDemo)); return new DynamicMetaObject(target, restrictions); } } class Test { public void Foo() { } static void Main() { dynamic x = new Test(); x.Foo(); // Works fine! x = new DynamicDemo(); x.Foo(); // Throws } } </code></pre> <p>This throws an exception:</p> <blockquote> <p>Unhandled Exception: System.InvalidCastException: The result type 'System.Void' of the dynamic binding produced by the object with type 'DynamicDemo' for the binder 'Microsoft.CSharp.RuntimeBinder.CSharpInvokeMemberBinder' is not compatible with the result type 'System.Object' expected by the call site.</p> </blockquote> <p>If I change the method to return object and return null, it works fine... but I don't want the result to be null, I want it to be void. That works fine for the reflection binder (see the first call in Main) but it fails for my dynamic object. I want it to work like the reflection binder - it's fine to call the method, so long as you don't try to use the result.</p> <p>Have I missed a particular kind of expression I can use as the target?</p> http://stackoverflow.com/questions/1831877/catchall-properties-in-c 0 "Catchall" Properties in C#? Justin Alexander 2009-12-02T10:00:49Z 2009-12-02T20:32:20Z <p>Is it possible to create a "catchall" getter property in C#?</p> <pre><code>class xyzFactory { public static object this.*(string name){ get { return new name();} } } </code></pre> <p>In PHP you would write something like </p> <pre><code>//static getters are new to 5.3, so I didn't put it here. class xyzFactory{ public _get($name){ return $name();} } </code></pre> http://stackoverflow.com/questions/1823241/build-a-form-dynamically-with-ajax-jquery 0 Build a form dynamically with Ajax, jQuery Enrique 2009-11-30T23:55:55Z 2009-12-02T19:02:00Z <p>I'm building a very small web ERP application with PHP / mySQL / CodeIgniter / jQuery<br> The Bill/Invoice is built with </p> <pre><code>current date client data etc </code></pre> <p>Now, I must add products to that new invoice that is being created, without reloading/submitting the page. Each product will have its qtty., description, unit price, subtotal, etc.</p> <p>I'd like to add each product "row" using Ajax/jQuery. </p> <ul> <li>How should I build the products form dynamically? I mean, allowing users to add a new product row, or remove product rows from invoice, using Ajax? </li> <li>How to sum all the dinamically added "rows" in the form, for getting invoice total?</li> <li>And how should I receive and treat all the post data so I can insert the proper invoice record in the invoices table and insert the products records into the products_invoices table?</li> </ul> <p>Thanks a lot. Hope you've understood my question.</p> <p><strong>EDIT: here you can see a working example of what I want to do<br> <a href="http://www.bambooinvoice.org/index.php/invoices/newinvoice" rel="nofollow">http://www.bambooinvoice.org/index.php/invoices/newinvoice</a></strong></p> <p><strong>EDIT2: This jQuery plugin seems to be what I was looking for<br> <a href="http://code.google.com/p/jquery-dynamic-form/" rel="nofollow">http://code.google.com/p/jquery-dynamic-form/</a></strong></p> http://stackoverflow.com/questions/1509873/serve-dynamic-generated-images-using-restlet 0 Serve dynamic generated images using restlet Lily 2009-10-02T14:29:11Z 2009-12-02T16:41:48Z <p>I have searched online for a while and almost all the questions regarding image serving using restlet are about static images. What I want to do is to serve dynamic generated image from restlet. </p> <p>I have tried serving static images using restlet, it's working. Also, I can successfully generate a dynamic image and store them in a local folder, so the problem goes to how to serving it. If it's an http response, what I shall do is to attach all the bytes of the image to the body of the response. However, I am not sure about how to use restlet to do that? Is it FileRepresentation? </p> <p>Newbie in this field, and any suggestion will be welcomed. </p> <p>Thanks</p> http://stackoverflow.com/questions/1832641/generic-object-controller-in-mvc-can-you-improve-my-code 0 Generic object controller in MVC, can you improve my code ? Rustovich 2009-12-02T12:33:34Z 2009-12-02T14:54:02Z <p>I am creating an application that will display a list of objects in a datagrid (list of any type of object), and allow the user to update any item. The code will know nothing about the object being displayed until runtime. Can you improve my code for the update? I am using Formcollection to get items from the form and creating an instance of my class based on the Routing info, ie it will pull out the object (hardcoded Employee for this example) from URL and create an instance of it.</p> <pre><code>[HttpPost] public ActionResult Details(FormCollection Collection) { try { foreach (var item in Collection) { //TODO set up form values container for populating new object string test = Collection[item.ToString()]; } Assembly CurrentAssembly = Assembly.GetExecutingAssembly(); dynamic updateObject = CurrentAssembly.CreateInstance("Employee"); </code></pre> http://stackoverflow.com/questions/1830805/dynamic-content-in-joomla-articles 0 Dynamic content in Joomla Articles Jasim 2009-12-02T05:21:58Z 2009-12-02T13:41:25Z <p>I have some joomla articles. some values in that article has to be updated by data obtained through a soap call to other site. Is there any plugin available for joomla by which i can embed custom php inside articles?? How can i do this.??</p> http://stackoverflow.com/questions/1817724/changing-children-of-dynamic-created-states 0 changing children of dynamic created states algro 2009-11-30T03:36:39Z 2009-12-02T05:24:12Z <p>I'm building an Xml-driven application. I create new states in a seperate actionscript-class. These states all contain a DataGrid. I can switch the states in the Main.mxml. </p> <p>But now I would like to access certain children of the DataGrid. In this case I would like to toggle the visibility of GridItems, from a Button in the Main.mxml. </p> <p>How do I have access and apply this to the already created states ? I tried to create RemoveChilds and override/push it to the state. All I archieved was to remove an entire GridRow at the very last state, but it should be just one GridItem at every state. </p> <p>Thanks a lot for help!</p> http://stackoverflow.com/questions/1825769/django-dynamic-forms 0 Django Dynamic Forms John 2009-12-01T12:06:23Z 2009-12-01T19:04:13Z <p>I am using <a href="http://www.b-list.org/weblog/2008/nov/09/dynamic-forms/" rel="nofollow">James Bennetts code</a> to create a dynamic form. I have everything working but want to save the data to a database. Has anyone got any code which does this or could show me what the best way to do this would be e.g. how the model should be set up etc?</p> http://stackoverflow.com/questions/1827797/c-type-casting-at-run-time-using-reflection 0 C# Type Casting at Run-Time Using Reflection Sanjamal 2009-12-01T17:51:09Z 2009-12-01T17:58:08Z <p>Judging by the title of this question, what I want to do may not be possible so I will describe what I'm doing and you can feel free to let me know what I'm doing wrong and what would be a better way to accomplish my goal.</p> <p>I have an XML file that describes 1) a custom object that is derived of a base type, and 2) the internal field names and associated values. These derived objects may have additional fields that the base class doesn't know about.</p> <p>I extract the type of object as a string and I place all the object data into a dictionary where the key is the field name and the value is the field's value. I instantiate the object using the string name and the object's default constructor. I can sniff out all the object's properties into a <strong>PropertyInfo[]</strong>. Now I need to take all the values that are in string form and convert them into the correct data types so I can load them into the object's properties. (As I type this, it sounds like I'm taking a sort of save state and restoring it, but I've only heard of this sort of thing. If you would like to advise along these lines, then please keep in mind that I'm stuck reading data from an XML file and I can't change that.)</p> <p>I can convert all the string values to a type given by a <strong>Type</strong> object and using a brute-force function that I made having the following definition:</p> <pre><code>public object convertMe(string v, Type t) </code></pre> <p>Since I don't know what <strong>Type</strong> I'm throwing at the function, I don't know what's coming back and I am unable to explicitly cast the <strong>object</strong> to the proper type for assigning to the aforementioned property. I have been attempting the following sort of casts to no avail:</p> <pre><code>string objectType = /*read type string from XML*/; ... // Wherein I instantiate an object "theObject" and get PropertyInfo[] from it. ... // I also make sure that I'm trying to assign the correct data to ... // the correct property. Type t = currentProperty.PropertyType; object o = convertMe(value, Type.GetType(qtype)); currentProperty.SetValue(theObject, (t)o, null); // Doesn't work currentProperty.SetValue(theObject, (t)Convert.ChangeType(o, t), null); // Doesn't work. Apparently (t) is bad syntax. </code></pre> <p>Ultimately, my goal is to create an instance of the object and load it with data from the XML file in such a way that the data types aren't hard-coded. The reason that I'm doing this in C# is because this used to be a Python program and I've been assigned to translate it into C# .NET 2.0. It's a learning experience to say the least. The reason that I created that "brute-force function" is because I was looking for a way around this casting problem, but no matter what I try I can't get it to work. I could likely do this on my own using pure force, but I figured that there must be an elegant solution that I'm missing.</p> <p>Any help is greatly appreciated!</p> http://stackoverflow.com/questions/1002518/dynamically-change-the-width-of-datagrid-column-in-flex 1 Dynamically change the width of Datagrid column in FLEX. unknown (google) 2009-06-16T16:14:38Z 2009-12-01T14:29:07Z <p>Hi,</p> <p>Can we change the width of the datagrid column dynamically by clicking on the border of the column in order to display the complete string which is too long to be displayed and needs to be scrolled ? If so, How ?</p> <p>Also, how can we ensure that the column width changes dynamically based on the number of characters / length of string; since many a times the data is too long to be displayed. Can we set the column width to take the length of data into consideration before displaying onto the datagrid ?</p> http://stackoverflow.com/questions/1824363/dynamic-allocation-deallocation-of-2d-3d-arrays 1 dynamic allocation/deallocation of 2D & 3D arrays Ankur 2009-12-01T06:30:10Z 2009-12-01T07:10:23Z <p>I know about algorithms to allocate/deallocate a 2D array dynamically, however I'm not too sure about the same for 3D arrays.<br> Using this knowledge and a bit of symmetry, I came up with the following code.<br> (I had a hard time visualizing in 3D during coding). </p> <p>Please comment on the correctness and suggest any better alternative (efficiency-wise or intuitively), if any.<br> Also, I think both these 2D and 3D arrays can be accessed normally like static arrays like arr2D[2][3] and<br> arr3D[2][3][2]. Right? </p> <p>Code for 2D</p> <pre><code>//allocate a 2D array int** allocate2D(int rows,int cols) { int **arr2D; int i; arr2D = (int**)malloc(rows*sizeof(int*)); for(i=0;i&lt;rows;i++) { arr2D[i] = (int*)malloc(cols*sizeof(int)); } } //deallocate a 2D array void deallocate2D(int** arr2D,int rows) { int i; for(i=0;i&lt;rows;i++) { free(arr2D[i]); } free(arr2D); } </code></pre> <p>Code for 3D </p> <pre><code>//allocate a 3D array int*** allocate3D(int l,int m,int n) { int ***arr3D; int i,j,k; arr3D = (int***)malloc(l * sizeof(int **)); for(i=0;i&lt;l;i++) { arr3D[i] = (int**)malloc(m * sizeof(int*)); for(j=0;j&lt;m;j++) { arr3D[i][j] = (int*)malloc(n*sizeof(int)); } } return arr3D; } //deallocate a 3D array void deallocate3D(int arr3D,int l,int m) { int i,j; for(i=0;i&lt;l;i++) { for(int j=0;j&lt;m;j++) { free(arr3D[i][j]); } free(arr3D[i]); } free(arr3D); } </code></pre> http://stackoverflow.com/questions/1823149/dynamic-method-dispatch-based-on-value-of-variable 1 Dynamic method dispatch based on value of variable Ian Warburton 2009-11-30T23:34:06Z 2009-11-30T23:43:35Z <p>Hi there,</p> <p>Long switch statments are often frowned upon. The solution is to use polymorphism. However what if the thing I'm switching on is not a type code? What I would like to do is replace the switch statement with something like this...</p> <pre><code>public void HandleString(string s = "Hello") { ... } public void HandleString(string s = "Goodbye") { ... } ... HandleString("Hello"); // results in the first method being called. </code></pre> <p>This would replace the following...</p> <pre><code>string s = "Hello"; switch(s) { case "Hello": ... break; case "Goodbye": ... break; default; break; } </code></pre> <p>Any ideas? In theory I think you could do away with 'if/switch' statements altogether and just call methods that are automatically bound based on the value of an expression.</p> http://stackoverflow.com/questions/258988/will-the-dynamic-keyword-in-c4-support-extension-methods 6 Will the dynamic keyword in C#4 support extension methods? Motti 2008-11-03T15:28:58Z 2009-11-30T22:39:49Z <p>I'm <a href="http://channel9.msdn.com/shows/Going+Deep/Inside-C-40-dynamic-type-optional-parameters-more-COM-friendly/" rel="nofollow">listening to a talk</a> about <strong>C#4</strong>'s <code>dynamic</code> keyword and I'm wondering... Will this feature be orthogonal to other .NET features, for example will it support extension methods?</p> <pre><code>public static class StrExtension { public static string twice(this string str) { return str + str; } } ... dynamic x = "Yo"; x.twice(); // will this work? </code></pre> http://stackoverflow.com/questions/1822585/absolute-positioned-objects-added-via-jquery-are-not-positioning-properly 0 absolute-positioned objects added via jQuery are not positioning properly! NathanJamal 2009-11-30T21:38:50Z 2009-11-30T22:13:54Z <p>I'm dynamically adding some <code>li</code>s to an unordered list using jQuery. They are positioned absolutely (using the <code>style</code> param on each <code>li</code>), but when they are added to the page they aren't in the right positions, even though when I check them with Firebug or Chrome's element inspector, all the values are correct.</p> <p>Also note that the <code>li</code>s are using the jQuery draggable and resizeable classes.</p> <p>you can see it here: <a href="http://bit.ly/5HfegZ" rel="nofollow">http://bit.ly/5HfegZ</a></p> <p>This is the script that adds the <code>li</code>s to the page (from xml file)</p> <pre><code> //load saved board var savedBoard = getParameterByName("open"); if (savedBoard != ""){ $.ajax({ type: "GET", url: "saved/" + savedBoard + ".xml", dataType: "xml", success: function(xml) { $(xml).find('item').each(function() { var openTag = $(this).find('openTag').text(); openTag = openTag.replace(/%3C/g, "&lt;"); openTag = openTag.replace(/%2F/g, "/"); openTag = openTag.replace(/%3E/g, "&gt;"); var media = $(this).find('media').text(); media = media.replace(/%3C/g, "&lt;"); media = media.replace(/%2F/g, "/"); media = media.replace(/%3E/g, "&gt;"); $('#other').append(openTag + "&lt;div class='inners'&gt;" + media + "&lt;/div&gt;&lt;div class='boxMenu'&gt;&lt;img class='star' src='img/gold_star.gif' alt='Favorite' /&gt;&lt;img class='delete' src='img/minus.gif' alt='Delete'/&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;&lt;/li&gt;"); $("li", "#other").draggable(); $("li", "#other").resizable({ transparent: true, handles: 'all' }); menustuff(); checkColour(); }); } }); } </code></pre> <p>HTML:</p> <pre><code>&lt;ul id="other" class="ui-widget-header"&gt; </code></pre> <p> </p> <p>XML:</p> <pre><code>&lt;item n="0"&gt; &lt;openTag&gt;%3Cli runat='server' title='0' class='ui-widget-content' style='z-index:16;width:250px;height:150px;top:187 px;left:135px;'%3E&lt;/openTag&gt; &lt;media&gt;%3Cimg class="imaged" src="http:%2F%2Fimages.websnapr.com%2F?size=s&amp;amp;key=bOJhv6ljQ0aq&amp;amp;url=http:%2F%2Fwww.cancerpartnersuk.org" alt=""&amp;gt;&lt;/media&gt; </code></pre> <p> </p> http://stackoverflow.com/questions/1087349/rending-reports-with-dynamic-structure-not-template-based-approach 0 Rending reports with dynamic structure (Not template based approach) Maxim Veksler 2009-07-06T14:42:25Z 2009-11-30T21:27:08Z <p>Hello Friends,</p> <p>I need a reporting framework that would allow me to create reports with dynamic structure.</p> <p>Unlike Jasper Reports working mode in which you create a template for how your report will look like, I need exactly the opposite: I need a framework that will allow me to create reports with varying structure (Programmatic). The report is a table showing by which factors some result was calculated. The number of factors can vary, thus the number of columns in the table varies accordingly.</p> <p>I would please like to know what reporting library can be used in the above described working mode.</p> <p>Thank you for your time, Maxim.</p> http://stackoverflow.com/questions/1821386/link-a-blog-into-scrolling-text-of-swf-file 0 Link a Blog into scrolling text of SWF file Jeron 2009-11-30T18:03:46Z 2009-11-30T18:22:30Z <p>I'm working on an entirely flash-based site for a client who has already been using Blogspot for his News/Homepage updates. He wants to continue updating through Blogspot, but wants the blog to automatically fill in the text box on the flash site Homepage. I'm not sure if this is possible, or how I would go about doing it.</p> <p>Here is the blogspot page: <br> <a href="http://atmarsamps.blogspot.com/" rel="nofollow">http://atmarsamps.blogspot.com/</a></p> <p>Here is an example of what the scrolling SWF text box will be like:<br> <a href="http://eloquentcreative.com/" rel="nofollow">http://eloquentcreative.com/</a></p> <p>Is this possible? Any help would be absolutely amazing!</p> http://stackoverflow.com/questions/1331851/dynamic-interception-of-calls-in-net 1 Dynamic interception of calls in .NET karmasponge 2009-08-26T01:05:33Z 2009-11-30T13:27:34Z <p>I am curious to learn if .NET supports any form of dynamic interception of method calls (or properties invoctions) at runtime. That is, can you intercept a call to an object without static compilation information such as an interface (along the lines of the CORBA DII (<a href="http://www.puder.org/corba/cg/" rel="nofollow">link text</a>) or COM's IDispatch).</p> <p>If not, would the new 'Dynamic Typed Objects' feature in C# 4.0 help in this regard.</p> http://stackoverflow.com/questions/1793590/c-dynamic-allocated-array 1 C++ dynamic allocated array klw 2009-11-24T23:10:53Z 2009-11-30T11:56:42Z <p>Hi, I'm doing some assignment and got stuck at one point here. I am trying to write an list_add() function. The first functionality of it is to add values to the array. The second functionality for it is to increase the size of the array. So it works much like a vector. I dunno if I get it right though. What I tried is to create a new dynamic allocated array which is larger than the old one, and then copy over all the values to the new array.</p> <p>Is it the right approach?</p> <p>Here's the main body</p> <pre><code>int main() { const int N = 7; //declaring dynamic array allocation int* list = new int[N]; int used = 0, a_val; for(int i=0;i&lt;11;i++) { list_add(list, used, N, i); } cout &lt;&lt; endl &lt;&lt; "Storlek: " &lt;&lt; N &lt;&lt; endl &lt;&lt; endl; cout &lt;&lt; "Printar listan " &lt;&lt; endl; for(int i=0;i&lt;used;i++) { cout &lt;&lt; list[i] &lt;&lt; ". "; } } </code></pre> <p>Here's the function</p> <pre><code>bool list_add(int *list, int&amp; space_used, int max_size, int value) { if(max_size-space_used &gt; 0) { *(list+(max_size-space_used-1)) = value; space_used++; return true; } else { cout &lt;&lt; "Increasing size of array!" &lt;&lt; endl; int new_max_size = space_used+1; delete [] list; int *list_new = new int[new_max_size]; for(int i=0; i&lt;new_max_size; i++) { list_new[i] = i; cout &lt;&lt; list_new[i] &lt;&lt; ". "; } cout &lt;&lt; endl; space_used++; list = list_new; return false; } } </code></pre>