active questions tagged dynamically - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T08:50:10Z http://stackoverflow.com/feeds/tag/dynamically http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1832338/how-to-update-product-wxs-file-dynamic 0 how to update product.wxs file dynamic Samir 2009-12-02T11:26:07Z 2009-12-03T13:37:47Z <p>Hello, i want to make an application which includes dynamic screensaver. User can select multiple images from their PC and generate swf file. so i want to include swf file and images in the wix project dynamically. and want to generate an MSI file.is there any way to add images path and swf file dynamically</p> <p>reply me soon</p> <p>Samir</p> http://stackoverflow.com/questions/1674818/add-checkbox-datagird-wpf-c-disable-problem 0 Add Checkbox DataGird Wpf C# Disable problem Aizaz 2009-11-04T16:06:04Z 2009-11-04T17:44:26Z <p>I have added checkboxes into a DataGird, but they are not enabling they just disable when i click on another control giving you complete source code.</p> <pre><code>public partial class WinSubnetRangeInput : RibbonWindow { public DataTable objdtIPrange = new DataTable(); public WinSubnetRangeInput() { this.InitializeComponent(); objdtIPrange.Columns.AddRange(new DataColumn[] { new DataColumn(" ",typeof(Boolean)), new DataColumn("Start IP"), new DataColumn("End IP") }); dataGridIPs.CanUserDeleteRows = true; //dataGridIPs.ColumnWidth = 264.5; if (File.Exists(@"DiscoveryConfig.bin")) { FileStream fs = null; BinaryFormatter bf = null; try { fs = new FileStream(@"DiscoveryConfig.bin", FileMode.Open); bf = new BinaryFormatter(); objdtIPrange = (DataTable)bf.Deserialize(fs); dataGridIPs.DataContext = objdtIPrange; } catch (Exception ex) { fs.Close(); File.Delete(@"DiscoveryConfig.bin"); MessageBox.Show("Configration file corrupted, Input IP range again.", "VDIworks - Protocol Inspector", MessageBoxButton.OK, MessageBoxImage.Error); Thread.Sleep(1000); } } //else //{ // dataGridIPs.DataContext = objdtIPrange; //} } private void btnAdd_Click(object sender, System.Windows.RoutedEventArgs e) { IPAddress ipAddress = null; </code></pre> <p>// if (IPAddress.TryParse(txtFromIP.Text.Trim(), out ipAddress) &amp;&amp; IPAddress.TryParse(txtToIp.Text.Trim(), out ipAddress) &amp;&amp; !txtToIp.Text.Equals(txtFromIP.Text)) if (IPAddress.TryParse(txtFromIP.Text.Trim(), out ipAddress) &amp;&amp; IPAddress.TryParse(txtToIp.Text.Trim(), out ipAddress)) { if(IPCompare.IsGreater(txtFromIP.Text.Trim(),txtToIp.Text.Trim())) { MessageBox.Show("Starting IP should be smaller than ending IP", "VDIworks - Protocol Inspector", MessageBoxButton.OK, MessageBoxImage.Error); return; }</p> <pre><code> objdtIPrange.Rows.Add(true, txtFromIP.Text, txtToIp.Text); dataGridIPs.DataContext = objdtIPrange; } else { MessageBox.Show("Invalid IP Range Specified", "VDIworks - Protocol Inspector", MessageBoxButton.OK, MessageBoxImage.Error); } } private void btnSave_Click(object sender, System.Windows.RoutedEventArgs e) { FileStream fs = new FileStream(@"DiscoveryConfig.bin", FileMode.Create); BinaryFormatter bf = new BinaryFormatter(); bf.Serialize(fs,objdtIPrange); fs.Close(); //object[] test = null; //test = objdtIPrange.Rows[0].ItemArray; //MessageBox.Show(test); this.Window.Close(); } private void RibbonCommand_Executed_btnAdd(object sender, ExecutedRoutedEventArgs e) { } private void RibbonCommand_Executed_btnSave(object sender, ExecutedRoutedEventArgs e) { } private void RibbonCommand_Executed_AppMnu(object sender, ExecutedRoutedEventArgs e) { } private void btnCancel_Click(object sender, RoutedEventArgs e) { this.Window.Close(); //ProtocolConfiguration.ConfigureProtocols().Rows[2].ItemArray[0].ToString(); } } </code></pre> <p>}</p> <pre><code>&lt;r:RibbonWindow xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:r="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:Custom="http://schemas.microsoft.com/wpf/2008/toolkit" x:Class="VDIUtilities.WinSubnetRangeInput" x:Name="Window" Title="Input Subnet Range" Width="635" Height="280" mc:Ignorable="d" Background="#FFCADAED"&gt; </code></pre> <p> </p> <pre><code> &lt;/ResourceDictionary&gt; &lt;/r:RibbonWindow.Resources&gt; </code></pre> <p> <br> --> </p> <pre><code>&lt;Grid x:Name="LayoutRoot" Background="White" VerticalAlignment="Top" Height="171" &gt; &lt;Label HorizontalAlignment="Left" Margin="38.5,20.5,0,0" VerticalAlignment="Top" Width="57" Height="30" Content="Start IP:"/&gt; &lt;Label Margin="287.5,20.5,295.5,0" VerticalAlignment="Top" Height="30" Content="End IP:" RenderTransformOrigin="0,0.533"/&gt; &lt;TextBox x:Name="txtFromIP" HorizontalAlignment="Left" Margin="105.5,25,0,0" VerticalAlignment="Top" Width="166" Height="21" Text="" TextWrapping="Wrap"/&gt; &lt;TextBox x:Name="txtToIp" Margin="0,25,118.5,0" VerticalAlignment="Top" Height="21" Text="" TextWrapping="Wrap" HorizontalAlignment="Right" Width="166" d:LayoutOverrides="HorizontalAlignment, Width"/&gt; &lt;Button x:Name="btnAdd" HorizontalAlignment="Right" Margin="0,25,51.5,0" VerticalAlignment="Top" Width="52" Height="21" Content="Add" Click="btnAdd_Click"/&gt; &lt;Custom:DataGrid x:Name="dataGridIPs" Margin="38.5,75,51.5,26" AlternationCount="2" AutoGenerateColumns="True" ItemsSource="{Binding}" AlternatingRowBackground="#FFCDE1FC" BorderBrush="Black" RowBackground="#FFD8E8FC" d:LayoutOverrides="VerticalAlignment" Height="66"/&gt; &lt;Button x:Name="btnSave" Margin="249,0,0,1" VerticalAlignment="Bottom" Height="21" Content="Save" Click="btnSave_Click" d:LayoutOverrides="VerticalAlignment" HorizontalAlignment="Left" Width="47"/&gt; &lt;Button x:Name="btnCancel" Margin="310,0,270,1" VerticalAlignment="Bottom" Height="21" Content="Cancel" Click="btnCancel_Click" d:LayoutOverrides="VerticalAlignment"/&gt; &lt;/Grid&gt; &lt;/DockPanel&gt; </code></pre> <p></p> http://stackoverflow.com/questions/1487618/accessing-value-of-dynamically-created-controls-c-asp-net 1 Accessing value of dynamically created controls c# asp.net SocialAddict 2009-09-28T15:14:50Z 2009-10-31T02:14:57Z <p>I'm trying to access the value of a selected radioButton. I have a list of radio button's seperated by sub headers (hence why i havent used a radioList)</p> <p>I don't know how to access the selected value as i'm not sure what name it's given with it being dynamic.</p> <p>The following code is in a for loop and outputs radio options. All the options are for one required user selection.</p> <pre><code>//add list to radio button list RadioButton button1 = new RadioButton { GroupName = "myGroup", Text = singleType.appTypeName, ID = singleType.appTypeID.ToString() }; radioArea.Controls.Add(button1); myLabel = new Label(); myLabel.Text = "&lt;br /&gt;"; radioArea.Controls.Add(myLabel); </code></pre> <p>This is how im trying to access it:</p> <pre><code>RadioButton myButton = (RadioButton) radioArea.FindControl("myGroup"); </code></pre> <p>I realise this should be very simple but im still in a very much PHP mindset and appreciate any help.</p> <p>Thanks</p> http://stackoverflow.com/questions/1534462/resin-restarts-when-class-files-or-servlets-are-uploaded 0 Resin Restarts when class files or Servlets are uploaded. JM 2009-10-07T21:55:12Z 2009-10-07T22:44:11Z <p>Hi. When we upload a .class file or a servlet to the server, the web server restarts. This does not happen when we upload a JSP. Is there a way to configure Resin so that it dynamically loads the class without restarting the web server?</p> http://stackoverflow.com/questions/1497907/spring-mvc-dynamically-binding-to-and-from-a-list-of-beans 0 Spring MVC dynamically binding to and from a list of beans raju 2009-09-30T12:50:08Z 2009-10-06T07:34:21Z <p>Hi,</p> <p>I am new to spring MVC.In my application I need to bind dynamically generated textbox contents to a list of beans dynamically.I went through the spring mvc book for binding to lists.But before binding, we must not only initialize the collection, but populate it with objects.</p> <p>In my case I dont know the size of the list initially.</p> <p>So is there any way to achive this ?</p> <p>any help ?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1464992/adding-an-scriptreference-dynamically-which-is-a-page-request-to-scriptmanager 0 Adding an ScriptReference Dynamically which is a page request to ScriptManager Hossein Margani 2009-09-23T09:42:48Z 2009-09-29T01:23:38Z <p>Hi!</p> <p>I use ScriptManager in my ASP.NET page, and want to add a ScriptReference which is a page request like this:</p> <pre><code>var id = 10; tsm.CompositeScript.Scripts.Add(new ScriptReference("~/Response.aspx?action=test&amp;id=" + id)); </code></pre> <p>but it raises an error:</p> <blockquote> <pre><code>'~/Response.aspx?action=test&amp;id=10' is not a valid virtual path. </code></pre> </blockquote> <p>I should add this script dynamically, what should I do?</p> http://stackoverflow.com/questions/1398657/dynamically-loading-google-maps-apis 1 Dynamically Loading Google Maps api's ido 2009-09-09T09:53:18Z 2009-09-21T06:11:48Z <p>Hi, Im trying to load the google maps api's dynamically. I'm using the following code:</p> <p>var head= document.getElementsByTagName('head')[0]; var script= document.createElement('script'); script.type= 'text/javascript'; script.src= '<a href="http://www.google.com/jsapi?key=" rel="nofollow">http://www.google.com/jsapi?key=</a>; head.appendChild(script);</p> <p>but when trying to create the map map = new GMap2(document.getElementById("map")); or map = new google.maps.Map2(document.getElementById("map"));</p> <p>I'm getting an error that google (or GMap2) is undefined.</p> http://stackoverflow.com/questions/1437800/asp-net-saving-webpage-layout-in-a-smart-and-fast-way 0 ASP.NET Saving webpage layout in a smart and fast way Patrick 2009-09-17T09:55:33Z 2009-09-19T01:17:21Z <p><img src="http://www.pafo.net/example.png" alt="alt text" />Hello!</p> <p>I don't know what i should title this question regarding ASP.NET and saving a webpage layout. I will be referring to BBC just illustrate what i am after. <a href="http://news.bbc.co.uk/" rel="nofollow">http://news.bbc.co.uk/</a></p> <p>The page will have around 10,000-20,000 visitors each day. I have one MS SQL 2008 database and i am programming ASP.NET (C#) 3.5.</p> <p>I am building a magazine/paper like BBC but in a smaller format, now the administrator has to be able to style the general pages (like Economics, Politics etc) and place what articles are to be display and how to display them. On the BBC page (when i'm looking at it now) you have one big article on the first row, then 2 smaller on the second and third row, then a box with "FEATURES, VIEWS, ANALYSIS". I attached a picture with the areas painted in different colors. I wan't to allow the administrator to modify the appearance of the general pages and thus place the news in an arranged order.</p> <ul> <li>The first problem i have is how to save it for optimized speed, both for fetching the webpage but also for editing it. So i thought that saving the page in XML in a XML document would allow me to add the functionallity that i want, since i can modify the XML and also add new tags if i expand the program. But the problem is then loading it to the client, i could create a .aspx page on the server when the administrator presses save or i could dynamically load it every time someone wants to display the webpage. Any ideas on performance?</li> </ul> <p>So the flow is: 1) Administrator changes the layout on a specific page in the admin panel, he or she changes what article to show and where to place them. (Single, Next to another article etc) 2) The administrator then saves the changes. 3) The user can now view the updated layout 4) The administrator can load back the layout to make further changes.</p> <ul> <li>The second problem is that i have small boxes on the right side, the contents in these boxes could either reflect the article/webpage or it could be something different. The administrator chooses what boxes to use when he/she creates the article. Now, how to save that information and load the boxes efficient. The boxes, when they are created, faces the same problem as above, how to save them in a good manner so the articles can load them fast. I was thinking about saving the information, like above, in a XML document. When the administrator creates an article i then save the box id-number in a certain table in the MS SQL 2008 database with an id-number to the correct article. But the same problem arises, should i dynamically load the boxes or create every box as a Web User Control and then load it, something like: WebControl_1234 boxControl = (WebControl_1234)LoadControl("Data path" + box_id_from_sqlserver);</li> </ul> <p>Any ideas?</p> http://stackoverflow.com/questions/1409862/dynamically-binding-data-to-a-combobox-in-datagridview 0 dynamically binding data to a combobox in datagridview Suraj 2009-09-11T09:08:09Z 2009-09-11T09:08:09Z <p>I have a datagridview which is bound to a databindingsource one of the column in this datagridview is a combobox the combobox is also bound to a different binding source now my requirement is that once an item from the the combobox is entered into a row that item should not be shown in the combobox later. for eg. i have doctor,engineer,advocate in my combobox so when i enter the first row all items are displayed and in the first row i have selected doctor from the combobox. now when i enter the second row of the grid the combobox should only have engineer and advocate and viceversa</p> http://stackoverflow.com/questions/1399571/retain-value-of-input-type-file-in-a-jsp-file-while-being-dynamically-generated 0 retain value of input type file in a jsp file while being dynamically generated nidhiac 2009-09-09T13:03:11Z 2009-09-09T13:50:10Z <p>i have a jsp page where i have a input type file and i m allowing the user to browse files. i have one such input on jsp and the rest i m generating dynamically by javascript.</p> <p>this is my jsp code:</p> <pre><code>&lt;div id="labelContainer" style="display:inline"&gt; &lt;table align="center"&gt; &lt;tr&gt; &lt;td align="left"&gt;&lt;input type="text" id="label0" name="label0" size="15"&gt;&lt;/td&gt; &lt;td align="center"&gt;&lt;input type="file" id="filePath0" name="browsetrainset0"&gt;&lt;/td&gt; &lt;td id="addlabel" &gt;&lt;img src="../images/add.png" title="Add Label" onclick="addLabel()"&gt;&lt;/td&gt; &lt;td id="removelabel"&gt;&lt;img src="../images/remove.png" title="Remove Label" onclick="removeLabel('labelDiv0')"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; </code></pre> <p>and this is my javacsritp code:</p> <pre><code>function addLabel(){ var text=""; lCount++; text+=("&lt;table id='labelDiv"+lCount+"' align='center'&gt;"); text+=("&lt;tr&gt;"); text+=("&lt;td align='left' style='display:none'&gt;&lt;input type='checkbox' checked='true' name='labelchkbox'/&gt;&lt;/td&gt;"); text+=("&lt;td align='left' id='label'&gt;&lt;input type='text' id='label"+lCount+"' name='label"+lCount+"' size='15'&gt;&lt;/td&gt;"); text+=("&lt;td align='center'id='filePath' &gt;&lt;input type='file' id='filePath"+lCount+"'name='browsetrainset"+lCoun t+"'&gt;&lt;/td&gt;"); text+=("&lt;td id='addlabel' &gt;&lt;img src='../images/add.png' title='Add Label' onclick='addLabel()'&gt;&lt;/td&gt;"); text+=("&lt;td id='removelabel'&gt;&lt;img src='../images/remove.png' title='Remove Label' onclick=\"removeLabel('labelDiv"+lCount+"')\"&gt;&lt;/td&gt;"); text+=("&lt;/tr&gt;"); text+=("&lt;/table&gt;"); document.getElementById("labelContainer").innerHTM L+=text; } </code></pre> <p>but i m not able to retain the value of the file path i browse, on the jsp page once i click the add label and generate another input type file. I am using IE7. Please tell me how to reatin the value of the browsed files so that i can use them further. </p> http://stackoverflow.com/questions/1367829/asp-net-mvc-dynamically-load-user-control-like-in-asp-net-web-forms 0 ASP.NET MVC dynamically load user control, like in ASP.NET Web Forms Misha N. 2009-09-02T13:52:06Z 2009-09-02T13:59:33Z <p>Hallo, my team and I are about to start a project, and we would really like to use ASP.NET MVC, not the Web Forms. Why? Nothing special, just we want to learn it well and to measure what would be better to use in future projects.</p> <p>But, our project has important request. We need ability to dynamically load user controls, that can be created and uploaded in runtime. With ASP.NET Web Forms and it's LoadControl method it's simple.</p> <p>Can we do something like that with MVC?</p> <p>Tnx</p> http://stackoverflow.com/questions/1309694/application-fails-to-dynamically-reload-javascript-files 0 Application fails to dynamically _re_load JavaScript files leomdg 2009-08-21T01:36:14Z 2009-08-21T02:27:22Z <p>Hello people..</p> <p>I have research about an issue and could not find a solution for it through normal JavaScript techniques (maybe there is but I did not find any).</p> <p>The thing is, my application loads ( inserts) JavaScript files whenever the user loads a section of the system. The problem comes when I try to unload ( removal) one.</p> <p>I've noticed that if I load section A (which loads script A'), then load section B (which loads script B'), and then load section A again, the code in script A' does not run again, thus every event registration in there doesn't get performed, which I do want to happen. (Maybe some extra kind of cleaning is required that I am not aware of?)</p> <p>Any ideas? If what I just said makes any sense...</p> <p>An example:</p> <p>1- User enters Section 'Products'</p> <p>2- Both the UI and JavaScript file associated to 'Products' get loaded</p> <pre><code>2.1- Products.js is now inserted in the &lt;head&gt; 2.2- Products.js code gets parsed and executed </code></pre> <p>3- User enters Section 'Clients'</p> <pre><code>3.1 - Products.js reference is removed from the &lt;head&gt; </code></pre> <p>4- Both the UI and JavaScript file associated to 'Clients' get loaded</p> <pre><code>4.1- Clients.js is now inserted in the &lt;head&gt; 4.2- Clients.js code gets parsed and executed </code></pre> <p>5- User enters Section 'Products'</p> <pre><code>5.1 - Clients.js reference is removed from the &lt;head&gt; </code></pre> <p>6- Both the UI and JavaScript file associated to 'Products' get loaded</p> <pre><code>6.1- Products.js is now inserted in the &lt;head&gt; 6.2- Products.js code **DOES NOT** get parsed nor executed </code></pre> <p>Thanks in advanced.</p> <p>P.S.: No framework is being used for this part of the application.</p> http://stackoverflow.com/questions/1258181/how-to-dynamically-parse-and-compare-string-values-in-c 0 How to dynamically parse and compare string values in C#? Jeffrey 2009-08-11T02:17:25Z 2009-08-13T06:12:09Z <p>Sorry that I had to re-edit this question.</p> <p>I need to dynamically parse two string values to the appropriate type and compare them, then return a bool result.</p> <p>Example 1:</p> <pre><code>string lhs = “10”; string rhs = “10”; Compare.DoesEqual(lhs, rhs, typeof(int)); //true Compare.DoesEqual(lhs, rhs, typeof(string)); //true </code></pre> <p>Example 2:</p> <pre><code>string lhs = “2.0”; string rhs = “3.1”; Compare.IsGreaterThan(lhs, rhs, typeof(int)); //false Compare.IsGreaterThan(lhs, rhs, typeof(double)); //false Compare.IsGreaterThan(lhs, rhs, typeof(string)); //invalid, always false </code></pre> <p>Currently I am doing like this (I think it's stupid to do it such way):</p> <pre><code>public partial class Comparer { public static bool DoesEqual(string lhs, string rhs, Type type) { if (type.Equals(typeof(int))) { try { return int.Parse(lhs) &gt; int.Parse(rhs); } catch { return false; } } if (type.Equals(typeof(double))) { try { return double.Parse(lhs) &gt; double.Parse(rhs); } catch { return false; } } return false; } } </code></pre> <p>And this:</p> <pre><code>public partial class Comparer { public static bool IsGreaterThan(string lhs, string rhs, Type type) { if (type.Equals(typeof(int))) { try { return int.Parse(lhs) == int.Parse(rhs); } catch { return false; } } if (type.Equals(typeof(double))) { try { return double.Parse(lhs) == double.Parse(rhs); } catch { return false; } } if (type.Equals(typeof(string))) { return lhs.Equals(rhs); } return false; } } </code></pre> <p>I am looking for better a better (more generic way) implementation (perhaps using Expression Tree?). I appreciate any suggestions. Thank you!</p> http://stackoverflow.com/questions/1259940/php-some-pictures-doesnt-load-css-problem 0 PHP - some pictures doesn't load (css problem?) Sara 2009-08-11T12:06:50Z 2009-08-11T12:20:47Z <p>Hello, i am dynamically loading a website via file_get_contents with the following script.</p> <pre><code>&lt;?php header('Content-Type: text/html; charset=iso-8859-1'); $url = (substr($_GET['url'], 0, 7) == 'http://') ? $_GET['url'] : "http://{$_GET['url']}"; $base_url = explode('/', $url); $base_url = (substr($url, 0, 7) == 'http://') ? $base_url[2] : $base_url[0]; if (file_get_contents($url) != false) { $content = @file_get_contents($url); // $search = array('@(&lt;a\s*[^&gt;]*href=[\'"]?(?![\'"]?http))@', '|(&lt;img\s*[^&gt;]*src=[\'"]?)|'); // $replace = array('\1proxy2.php?url=', '\1'.$url.'/'); // $new_content = preg_replace($search, $replace, $content); function prepend_proxy($matches) { $url = (substr($_GET['url'], 0, 7) == 'http://') ? $_GET['url'] : "http://{$_GET['url']}"; $prepend = $matches[2] ? $matches[2] : $url; $prepend = 'http://h899310.devhost.se/proxy/proxy2.php?url='. $prepend .'/'; return $matches[1] . $prepend . $matches[3]; } function imgprepend_proxy($matches2) { $url = (substr($_GET['url'], 0, 7) == 'http://') ? $_GET['url'] : "http://{$_GET['url']}"; $prepend2 = $matches2[2] ? $matches2[2] : $url; $prepend2 = $prepend2 .'/'; return $matches2[1] . $prepend2 . $matches2[3]; } $new_content = preg_replace_callback( '|(href=[\'"]?)(https?://)?([^\'"\s]+[\'"]?)|i', 'prepend_proxy', preg_replace_callback( '|(src=[\'"]?)(https?://)?([^\'"\s]+[\'"]?)|i', 'imgprepend_proxy', $content ) ); echo "&lt;base href='http://{$base_url}' /&gt;"; echo $new_content; } else { echo "Sidan kan inte visas"; } ?&gt; </code></pre> <p>Now the problem is that some pictures doesn't show in websites. For example those sites who does have CSS links. It is a CSS problem i think. </p> <p>You can test the script here to see what i mean:</p> <p><a href="http://h899310.devhost.se/proxy/index.html" rel="nofollow">http://h899310.devhost.se/proxy/index.html</a></p> <p>How can I fix this?</p> http://stackoverflow.com/questions/868209/how-to-get-data-from-dynmically-created-treeview 0 How to get data from dynmically created Treeview. Shahzeb 2009-05-15T11:43:07Z 2009-07-15T20:05:09Z <p>I am using ComponentArt Third party controls for ASP.NET 2.0. Here is the problem i am facing.</p> <p>I created some ComponentArt.Web.UI.TreeView at runtime on Page_Load. Now at click event of a button, i want to get values of the selected nodes in the treeview.</p> <p>Can someone help ....!</p> http://stackoverflow.com/questions/1129975/dynamically-change-css-attributes-value-in-asp-net 0 dynamically change css attribute's value in asp.net Nauman 2009-07-15T07:43:26Z 2009-07-15T08:39:21Z <p>how can i change the css attribute value at runtime like all h1 color="blue" and all p color="green". if anyone know it please help me!</p> http://stackoverflow.com/questions/1075486/alternatives-to-create-swf-files-which-has-external-content-loaded-into-them-dy 1 Alternatives to create swf files (which has external content loaded into them) dynamically? Ancide 2009-07-02T16:48:44Z 2009-07-02T17:04:11Z <p>I'm about to start a project where there will be a Flash application where the visitor customizes a profile with externally loaded images and texts. Then the visitor needs to be able to download that profile as a dynamically created swf with all that external content baked into the swf. </p> <p>Any ideas how to achive this? </p> <p>Thank you!</p> http://stackoverflow.com/questions/894604/passing-dynamically-allocated-integer-arrays-in-c 0 Passing dynamically allocated integer arrays in C Jumper Bones 2009-05-21T19:15:34Z 2009-05-21T19:41:07Z <p>Hello,</p> <p>I read the example on "<a href="http://stackoverflow.com/questions/423554/passing-multi-dimensional-arrays-in-c">Passing multi-dimensional arrays in C</a>" on this site.</p> <p>It is a great example using char arrays, and I learned a lot from it. I would like to do the same thing by creating a function to handle a dynamically allocated one-dimensional integer array, and after that, create another function for handling a multi-dimensional integer array. I know how to do it as a return value to a function. But in this application I need to do it on the argument list to the function.</p> <p>Just like in the example I mentioned above, I would like to pass a pointer to an integer array to a function, along with the number of elements "num" (or "row" and "col" for a 2D array function, etc.). I got a reworked version of the other example here, but I cannot get this to work, try as I might (lines of code that are new, or modified, from that example, are marked). Does anyone know how to solve this?</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; #include &lt;string.h&gt; #define ELEMENTS 5 void make(char **array, int **arrayInt, int *array_size) { int i; char *t = "Hello, World!"; int s = 10; // new array = malloc(ELEMENTS * sizeof(char *)); *arrayInt = malloc(ELEMENTS * sizeof(int *)); // new for (i = 0; i &lt; ELEMENTS; ++i) { array[i] = malloc(strlen(t) + 1 * sizeof(char)); array[i] = StrDup(t); arrayInt[i] = malloc( sizeof(int)); // new *arrayInt[i] = i * s; // new } } int main(int argc, char **argv) { char **array; int *arrayInt1D; // new int size; int i; make(array, &amp;arrayInt1D, &amp;size); // mod for (i = 0; i &lt; size; ++i) { printf("%s and %d\n", array[i], arrayInt1D[i]); // mod } return 0; } </code></pre> http://stackoverflow.com/questions/841959/performance-questions-on-dynamically-loading-javascript-objects 1 performance questions on dynamically loading Javascript Objects crink 2009-05-08T21:44:25Z 2009-05-11T17:10:16Z <p>Which is faster, </p> <ol> <li><p>Using an XMLHTTP Get request and than using eval() for the reponsetext</p></li> <li><p>Using the JSONP technique for loading a script and then evaling the innerHtml of the script.</p></li> <li><p>Dynamically adding a script tag to the head of a document where the javascript object is being assigned to a variable?</p></li> </ol> <p>My gut tells me this should be option 3, but I am not sure how eval compares with using a script tag. Any thoughts?</p> http://stackoverflow.com/questions/844671/datagridview-problem 0 DataGridview Problem Nahid 2009-05-10T04:08:43Z 2009-05-11T17:08:49Z <p>I have three column in my datagridview .One is text ,one is Combo and another one is Text ...i dont want to use datasource want to add values on cell like datagridview.Rows[].cells[].value. Help me how i can do it? My database have several columns...How to add column value dynamically....</p> http://stackoverflow.com/questions/719283/how-do-i-dynamically-load-a-js-file-using-prototype 2 How do I dynamically load a js file using Prototype? domagoj412 2009-04-05T16:49:33Z 2009-05-06T17:50:55Z <p>Hello,</p> <p>I am using prototype to load external js file (actually it is php file) dynamically. Like this:</p> <pre><code>function UpdateJS(file) { var url = 'main_js.php?file='+file; var myAjax = new Ajax.Request( url, {method: 'get', onComplete: showResponseHeader} ); } function showResponseHeader (originalRequest) { $('jscode').innerHTML = originalRequest.responseText; } </code></pre> <p>Container "jscode" is defined like this:</p> <pre><code>&lt;script type="text/javascript" id="jscode"&gt;&lt;/script&gt; </code></pre> <p>And it works! But if some different file is called, all the functions from previous one are preserved. And I don't want that. Anybody knows how to "unload" first js file when second one is called?</p> <p>(I also tried using Ajax.Updater function but the result is the same.) </p> <p>Update: It turns out that there is bigger problem: it only loads if function "UpdateJS" is in window.onload that is why it doesn't load anything else after that. So prototypes update it's maybe not such a good way for this...</p> http://stackoverflow.com/questions/769400/clicking-on-several-links-part-dynamically-generated 0 Clicking on several links part dynamically generated masudmalo101 2009-04-20T17:58:35Z 2009-04-20T21:35:45Z <p>Hi all, I'm new in Selenium and testing matters. I'm trying to capture the id of an hyperlink element that is dynamically part generated. The click action is recorded like as below when i make click on in selenium, the part in bold are dynamically generated, there are many of them on my page and can differ from one site to another(I'm testing cms). I'd like to capture and click on any one. This is what I've tried to do since:</p> <p>storeAttribute | //button@class onclick=&quot;setLocation(javascript{baseUrlSelection()}['/checkout/cart/add/uenc/(a-zA-Z0-9)<em>/product/(0-9)</em>]'')&quot; | myid</p> <p><br>echo | ${myid} | </p> <p><br>clickAndWait | ${myid[0]}</p> <p>It doesn't work My links looks like this when click action is recorded in selenium: buton[@onclick="setLocation('<a href="http://localhost/mydomaine/index.php/checkout/cart/add/uenc/" rel="nofollow">http://localhost/mydomaine/index.php/checkout/cart/add/uenc/</a><strong>aHR0cDovL2xvY2FsaG9zdC9NYWdlbnRvSGls</strong></p> <p><strong>YWlyZURlbW9WMi9tYWdlbnRvZGVtb0hpbGFpcmVWMi9pbmRleC5waHAvY2F0ZWdvcmllMS5odG1sP19fX1NJRD1V</strong>/product/<strong>1</strong>/')"> Please Help.</p> http://stackoverflow.com/questions/681371/contextmenustrip-width 0 ContextmenuStrip Width Peymankh 2009-03-25T12:31:26Z 2009-04-13T16:45:00Z <p>Hi everyone, I need to change the contextmenustrip width dynamically, by default the contextmenustrip width depends on the text length of the ToolstripmenuItems.</p> <p>And BTW I really don't wanna redraw the control again!!!</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/696612/how-to-insert-dynamically-through-a-variable-in-pl-sql 0 How to insert dynamically through a variable in PL/SQL?? abhradwip 2009-03-30T09:44:02Z 2009-03-30T11:02:14Z <p>Lets create a table first</p> <p>create table test ( id number, name varchar2(20) );</p> <p>Now during insert, i wanna hold the data into variable first &amp; then dynamically pass the variable into the VALUES clause. </p> <p>declare v_data varchar2(50); begin v_data:='1,sunny'; execute immediate 'insert into test values(v_data)'; commit; end;</p> <p>But its showing some errors(Not enough values)...... plz help how to achieve this??</p> http://stackoverflow.com/questions/692636/is-dynamically-allocated-memory-heap-local-to-a-function-or-can-all-functions 1 Is dynamically allocated memory (heap), local to a function or can all functions in a thread have access to it even without passing pointer as an argument a g 2009-03-28T11:27:44Z 2009-03-29T07:44:23Z <p>Hello, I have a very basic question and need help. I am trying to understand what is the scope of a dynamically allocated memory (on heap). </p> <pre><code>#include &lt;stdio.h&gt; #include &lt;malloc.h&gt; //-----Struct def------- struct node { int x; int y; }; //------GLOBAL DATA------ //-----FUNC DEFINITION---- void funct(){ t-&gt;x = 5; //**can I access 't' allocated on heap in main over here ?** t-&gt;y = 6; //**can I access 't' allocated on heap in main over here ?** printf ("int x = %d\n", t-&gt;x); printf ("int y = %d\n", t-&gt;y); return; } //-----MAIN FUNCTION------ int main(void){ struct node * t = NULL;// and what difference will it make if I define //it outside main() instead- as a global pointer variable t = (struct node *) malloc (sizeof(struct node)); t-&gt;x = 7; t-&gt;y = 12; printf ("int x = %d\n", t-&gt;x); printf ("int y = %d\n", t-&gt;y); funct(); // FUNCTION CALLED** return 0; } </code></pre> <p>So, here can I access structure 't' in funct() even though the memory is allocated in main() without passing argument (pointer to t to function funct) - since heap is common to a thread ? And what difference will it make if I define struct node * t = NULL outside of main() as a global variable and is there anything wrong with it ? Thanks</p> http://stackoverflow.com/questions/684996/get-a-class-from-my-flash-library-dynamically 1 Get a class from my flash library dynamically Niclas Adlertz 2009-03-26T09:01:35Z 2009-03-26T12:12:01Z <p>I have several bitmaps in my flash library that I have exported for Actionscript. Now depending on the Flashvars I receive I want to load the corresponding library bitmap. </p> <p>How do I load a bitmap class dynamically?</p> http://stackoverflow.com/questions/673805/dynamic-creation-of-new-lookup-tables-based-on-values-in-main-data-table 1 Dynamic creation of new lookup tables based on values in main data table Alistair Knock 2009-03-23T15:21:24Z 2009-03-24T20:22:36Z <p>I am working on an application which accepts any uploaded CSV data, stores it alongside other datasets which have been uploaded previously, and then produces output (CSV or HTML) based on the user selecting which columns/values they want returned. The database will be automatically expanded to handle new/different columns and datatypes as required. This is in preference to a entity-attribute-value model.</p> <p>Example - uploading these 2 sets to a blank database:</p> <p>dataset A:</p> <pre><code>name | dept | age ------+-------+------ Bob | Sales | 24 Tim | IT | 32 </code></pre> <p>dataset B:</p> <pre><code>name | dept | age | salary ------+-------+------+-------- Bob | Sales | 24 | £20,000 Tim | IT | 32 | £20,000 </code></pre> <p>Will programatically change the 'data' table so that importing dataset A results in 3 newly created columns (name,dept,age). Importing dataset B results in 1 newly created column (salary). At the moment, forget about whether the recordsets should be combined or not and that there's no normalisation.</p> <p>The issue I have is that some columns will also have lookup values - let's say that the Dept column will at some point in the future have associated values which give the address and phone numbers of that department. The same could be true for the Salary column, looking up tax groupings etc.</p> <p>The number of columns in this big table should not become too high (a few hundred) but will be high enough to want the user to administer the lookup table structure and values through an admin panel rather than have to involve developers each time.</p> <p><strong>The question</strong> is whether to use individual lookup tables for each column (value, description), or a combined lookup table which references the column (column, value, description). Normally I would opt for individual lookup tables, but here the application will need to create them automatically (e.g. lookup_dept, lookup_salary) and then add a new join into the master SQL statement. This would be done at the request of the user rather than when the column's added (to avoid hundreds of empty tables).</p> <p>The combined lookup table on the other hand would need to be joined multiple times onto the data table, selecting on the column name each time.</p> <p>Individual lookups seems to make sense to me but I may be barking up completely the wrong tree.</p> http://stackoverflow.com/questions/626410/possible-to-dynamically-add-an-aspcheckbox-control-to-a-tablecell 1 Possible to dynamically add an asp:CheckBox control to a TableCell? Ylva D 2009-03-09T14:17:48Z 2009-03-11T21:33:02Z <p>Hi everyone,</p> <p>In my .NET application I need to add a checkbox to each row in a dynamically created asp:Table. Is it possible to do that by dynamically creating an asp:CheckBox for each row and somehow put it inside a TableCell object? (In that case how?)</p> <p>Or do I need to replace the asp:table control with something else, like a Repeater control or GridView to make it work?</p> <p>I'm looking for the quickest solution because I don't have much time.</p> <p>Thanks in advance!</p> <p>/Ylva</p> http://stackoverflow.com/questions/611962/dynamic-merging-of-cells-in-ssrs 0 Dynamic merging of cells in SSRS ravij 2009-03-04T18:59:07Z 2009-03-09T20:04:29Z <p>In an SSRS Report ,I have a table which has 14 columns, 1st column is 7am and the last column is 7pm. I have 100 records with conference names and the timings,</p> <p>ex: 1) interenational conference 9am to 5pm 2) national conference 8 am to 11 am</p> <p>so the problem is these column cells must merge based on the timings and siplay as one textbox with center aligning the text</p> <p>ex: national conference the columns from 8 to 11 am are to be merged and the time 8 to 11am must display in these merged cells with center align.</p> <p>Can anyone give me any suggestion for this issue, i thought to write custom code for this but i did not get any idea.</p> <p>So, If anyone cna help me i will be very greatful.</p> <p>(Can we merge the cells dynamically based on the condition in SSRS)</p> http://stackoverflow.com/questions/619588/in-asp-net-is-it-better-to-use-server-controls-within-the-aspx-page-or-create-the 1 In ASP.net is it better to use Server Controls within the ASPX page or create them dynamically in the code behind? Webdevbytes 2009-03-06T16:56:23Z 2009-03-06T17:05:22Z <p>I generally prefer to add controls dynamically, like table and generic html controls, to the ASPX page, rather than add them in the ASPX page and set the properties dynamically.</p> <p>Which approach is considered "better practice"?</p> <p>Also is using generic html controls dynamically a better practice than outputting formatted html strings to an asp:literal?</p> <p>Cheers!</p>