active questions tagged data - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T01:36:12Z http://stackoverflow.com/feeds/tag/data http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1867086/terminating-and-starting-data-connection-on-windows-mobile-6-5-in-c 0 Terminating and Starting Data Connection on Windows Mobile 6.5 in C#? Ashh 2009-12-08T13:47:57Z 2009-12-08T16:30:27Z <p>Heys Guys!</p> <p>Just got a rather annoyingly akward question :S</p> <p>I want to create an easy application for windows mobile devices, i have recently got a HTC HD2 and the connection is being eaten by the weather app, email accounts and windows live service :@ </p> <p>I am getting rather annoyed with this and well i have set myself a project to give myself a small piece of glory and create a working application that will Terminate an idle connection on my phone.</p> <p>I am using C# and the latest WM6.5 sdk.</p> <p>How do i access these controls?</p> <p>Thanks guys!</p> <p>Ash</p> http://stackoverflow.com/questions/1865275/edifact-macro-readable-message-structure 0 EDIFACT macro (readable message structure) Jonas 2009-12-08T07:35:23Z 2009-12-08T15:54:48Z <p>Hi,</p> <p>I´m working within the EDI area and would like some help with a EDIFACT macro to make the EDIFACT files more readable.</p> <p>The message looks like this: data'data'data'data'</p> <p>I would like to have the macro converting the structure to: data' data' data' data'</p> <p>Pls let me know how to do this. Thanks in advance!</p> <p>BR Jonas</p> http://stackoverflow.com/questions/1866550/fiiling-data-base-randomly 1 fiiling data base randomly unknown (yahoo) 2009-12-08T12:06:23Z 2009-12-08T12:08:24Z <p>i need to generate my sql server 2005 database for testing a multithreaded application. it must be morre than 3 gb at least, what should i do</p> 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/1853205/php-mysql-echo-data 0 PHP mysql echo data John 2009-12-05T19:37:51Z 2009-12-07T13:01:07Z <pre><code>&lt;?php // query db $sql = "SELECT category.id as category_pk, category_id, products.* from category, products WHERE products.id = category.category_id AND category.id = category_id"; // from category get id if ($result = mysql_query($sql)) { if (mysql_num_rows($result)) { $row = mysql_fetch_assoc($result); echo "&lt;h2&gt;" . $row['category_id'] . "&lt;/h2&gt;"; } else { echo "Something is wrong!"; } } ?&gt; &lt;div class="datadivleftcontent"&gt; &lt;?php // query db $sql = "SELECT product_image, products.* FROM product_image, products WHERE product_image.product_id = products.id AND product_image.product_id = products.id"; // from products get id if ($result = mysql_query($sql)) { if (mysql_num_rows($result)) { while ($row = mysql_fetch_assoc($result)) { //initial the loop echo "&lt;h4&gt;" . $row['name'] . "&lt;/h4&gt;"; // echo date results as format "h4" echo "&lt;p&gt;" . $row['description'] . "&lt;/p&gt;"; // echo content as p format "body text" echo "&lt;h5&gt;Measurements: " . $row['measurements'] . "&lt;/h5&gt;"; // echo content as p format "body text" echo "&lt;a href='img/products/{$row['filename']}' rel='lightbox' title='{$row['name']}'&gt;"; echo "&lt;img src='img/products/thumbnails/{$row['filename']} 'alt='{$row['name']}' title='{$row['name']}' width='173' height='136'&gt;&lt;/a&gt;"; } } else { echo "Something is wrong!"; } } ?&gt; </code></pre> <p>Hi,</p> <p>Firstly many thanks for all your help and support it is very much appreciated. I am finding this quiet difficult trying to sort out, I am not so familiar with backend mysql,php programming but i am getting by thanks to your help.</p> <p>OK this is what I’ve done so far:</p> <pre><code>The DB: category: id (pk, auto increment) category_id (index) products: id (fk to category_id, cascade) name (index) description measurements product_image: product_id (fk to name, cascade) filename thumbnail </code></pre> <p>Now, I have menu (list item) were you can select the type of category linking to product_range.php:</p> <pre><code>&lt;?php // query db $sql = mysql_query ("SELECT * FROM `category` ORDER BY ID ASC"); // echo linked result from db if($resource and !is_bool($resource)) { $row = mysql_fetch_assoc($resource); } while ($row = mysql_fetch_assoc($sql)){ echo "&lt;a href='product_range.php?id={$row['category_id']}' "; echo ($fullpath == "product_range.php?category_id={$row['category_id']}") ? 'id="select"' : ''; echo "&gt;" . ($row['category_id']) . "&lt;/a&gt;"; } ?&gt; </code></pre> <p>This is the code for the product_range.php</p> <pre><code>&lt;?php include ("include/head.php"); ?&gt; &lt;?php // db connect $link = mysql_connect('localhost', 'root', 'password'); if (!$link) { die('Could not connect: ' . mysql_error()); } echo ''; mysql_select_db("wp"); ?&gt; &lt;body&gt; &lt;?php include ("include/header.php"); ?&gt; &lt;div class="wrapper"&gt; &lt;?php include ("include/topnav.php"); ?&gt; &lt;!-- data div --&gt; &lt;div class="datadiv"&gt; &lt;div class="datadivleft"&gt; &lt;?php // query db if (isset($_GET['id'])) { $sql = "SELECT category.id as category_pk, category_id, products.* from category, products WHERE products.id = category.category_id AND category.id = ?" . mysql_real_escape_string($_GET['id']) . "'"; // from category get id if ($result = mysql_query($sql)) { if (mysql_num_rows($result)) { $row = mysql_fetch_assoc($result); echo "&lt;h2&gt;" . $row['category_id'] . "&lt;/h2&gt;"; } else { echo "Something is wrong!"; } } } ?&gt; &lt;div class="datadivleftcontent"&gt; &lt;?php // query db if (isset($_GET['id'])) { $sql = "SELECT products_image.* FROM products_image, products WHERE products_image.id = products.name AND products_image.id = ?" . mysql_real_escape_string($_GET['id']) . "'"; // from products get id if ($result = mysql_query($sql)) { if (mysql_num_rows($result)) { while ($row = mysql_fetch_assoc($result)) { //initial the loop echo "&lt;h4&gt;" . $row['name'] . "&lt;/h4&gt;"; // echo date results as format "h4" echo "&lt;p&gt;" . $row['description'] . "&lt;/p&gt;"; // echo content as p format "body text" echo "&lt;h5&gt;Measurements: " . $row['measurements'] . "&lt;/h5&gt;"; // echo content as p format "body text" echo "&lt;a href='img/products/{$row['filename']}' rel='lightbox' title='{$row['name']}'&gt;"; echo "&lt;img src='img/products/thumbnails/{$row['filename']} 'alt='{$row['name']}' title='{$row['name']}' width='173' height='136' /&gt;&lt;/a&gt;"; } } else { echo "Something is wrong!"; } } } ?&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;!-- end --&gt; &lt;?php include ("include/showcase.php"); ?&gt; &lt;?php include ("include/btmcontent.php"); ?&gt; &lt;/div&gt; &lt;?php include ("include/footer.php"); ?&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Now at present i cannot get any data echoed from the DB i,ve tried sourcing out the syntax as mention, I must be doin something wrong? </p> http://stackoverflow.com/questions/1858414/oracle-data-modeler-and-synonyms 0 Oracle Data Modeler and synonyms unb 2009-12-07T07:34:29Z 2009-12-07T10:49:11Z <p>Hi,</p> <p>I've been searching the web for two days and still cannot find a way to <strong>generate DDL code with public synonyms</strong>. Would be very grateful for an advice.</p> http://stackoverflow.com/questions/168455/how-do-you-post-to-an-iframe 4 How do you post to an Iframe? Murtaza RC 2008-10-03T19:18:53Z 2009-12-07T06:22:12Z <p>How do you post data to an iframe?</p> http://stackoverflow.com/questions/1855916/can-anyone-recommend-a-synthetic-data-generator 1 Can anyone recommend a synthetic data generator? Oren Yosifon 2009-12-06T17:17:28Z 2009-12-06T22:30:19Z <p>Did anyone come across a free data generator that ca create synthetic data to load into databases for testing purposes?</p> http://stackoverflow.com/questions/840981/how-do-you-store-raw-bytes-as-text-without-losing-information-in-python-2-x 1 how do you store raw bytes as text without losing information in python 2.x? Manuel 2009-05-08T17:37:43Z 2009-12-06T21:13:43Z <p>Suppose I have any data stored in bytes. For example:</p> <blockquote> <p>0110001100010101100101110101101</p> </blockquote> <p>How can I store it as <em>printable</em> text? The obvious way would be to convert every 0 to the character '0' and every 1 to the character '1'. In fact this is what I'm currently doing. I'd like to know how I could pack them more tightly, without losing information.</p> <p>I thought of converting bits in groups of eight to ASCII, but some bit combinations are not accepted in that format. Any other ideas? </p> http://stackoverflow.com/questions/1439041/tool-for-transforming-excel-files-swapping-columns-basic-string-manipulation-e 1 Tool for transforming Excel files? (swapping columns, basic string manipulation etc) derfred 2009-09-17T13:55:40Z 2009-12-06T20:01:33Z <p>I need to import tabular data into my database. The data is supplied via spreadsheets (mostly Excel files) from multiple parties. The format of each of these files is similar but not the same and various transformations will be necessary to massage the data into the final format suitable for import. Furthermore the input formats are likely to change in the future. I am looking for a tool that can be run and administered by regular users to transform the input files.</p> <p>Now let me list some of the transformations I am looking to do:</p> <ul> <li>swap columns:</li> </ul> <p>Input is:</p> <pre><code>|Name|Category|Price| |data|data |data | </code></pre> <p>Output is</p> <pre><code>|Name|Price|Category| |data|data |data | </code></pre> <ul> <li>rename columns</li> </ul> <p>Input is:</p> <pre><code>|PRODUCTNAME|CAT |PRICE| |data |data|data | </code></pre> <p>Output is</p> <pre><code>|Name|Category|Price| |data|data |data | </code></pre> <ul> <li>map columns according to a lookup table, like in the above examples: replace every occurrence of the string "Car" by "automobile" in the column Category</li> <li>basic maths: multiply the price column by some factor</li> <li>basic string manipulations Lets say that the format of the Price column is "3 x $45", I would want to split that into two columns of amount and price</li> <li>filtering of rows by value: exclude all rows containing the word "expensive"</li> <li>etc.</li> </ul> <p>I have the following requirements:</p> <ul> <li>it can run on any of these platform: Windows, Mac, Linux</li> <li>Open Source, Freeware, Shareware or commercial</li> <li>the transformations need to be editable via a GUI</li> <li>if the tool requires end user training to use that is not an issue</li> <li>it can handle on the order of 1000-50000 rows</li> </ul> <p>Basically I am looking for a graphical tool that will help the users normalize the data so it can be imported, without me having to write a bunch of adapters.</p> <p>What tools do you use to solve this?</p> http://stackoverflow.com/questions/1852393/why-java-has-fixed-data-type-size-unlike-c 3 Why java has fixed data type size unlike C Harish 2009-12-05T14:53:27Z 2009-12-05T16:40:25Z <p>In C as we know the size of data types (ex. int) can vary depending on compiler / hardware.</p> <p>But why the size of data types is constant in java language? why don't we have the flexibility for different data type size in java depending on compiler?</p> http://stackoverflow.com/questions/681969/how-to-animate-the-flex-chart-axis-when-the-maximum-of-the-data-changes 0 How to animate the flex chart axis when the maximum of the data changes? 2009-03-25T14:56:11Z 2009-12-05T00:11:00Z <p>I have a flex chart feed with multiple data sets, and I want to display only one of the data set in one view. So I created multiple buttons to select different data sets. Whenever the user clicks one of the buttons, I adjust the maximum of the vertical axis so that the chart can represent the data normally (i.e. not to display the fluctuation of data that has very small scale, say between 0 ~ 10, in a chart with the maximum of vertical axis being set to 1000).</p> <p>I want to let the user to notice this change of the vertical maximum when they switch data set. Currently I'm trying to apply the standard effects of flex to the vertical axis renderer (e.g. glow, blur, etc.), but I don't think they are ideal for this scenario.</p> <p>Could anyone teach me how to animate this transition naturally so that the user would notice the change of the range of data intuitively?</p> <p>Thanks in advance.</p> <p>Cheng</p> http://stackoverflow.com/questions/1816049/introduction-to-java-graphics-libraries 4 Introduction to Java Graphics Libraries Steve 2009-11-29T16:59:32Z 2009-12-04T23:46:39Z <p>I just got into information-visualization and scientific-visualization and have been using Piccolo and a little with JFreeChart. I am trying to find a few new libraries that I can start using. I am looking specifically for libraries that involve multi-dimensional visualization and map overlaying (something like open-layers), but would be open to get exposure to any graphics libraries.</p> http://stackoverflow.com/questions/1789713/where-can-i-find-source-code-for-the-java-data-structures 1 Where can I find source code for the Java data structures? Michael 2009-11-24T12:16:44Z 2009-12-04T18:03:50Z <p>Hi all, </p> <p>Not sure if this has been asked before, did some digging. I'm trying to prepare for a few interviews, and I was just curious to see if how Java implements its data structures (arraylist, map), etc is public. </p> <p>Thanks.</p> http://stackoverflow.com/questions/1842398/xml-data-not-showing-in-flash-movie 0 xml data not showing in flash movie Tom 2009-12-03T19:44:13Z 2009-12-03T19:59:37Z <p>I know this has been asked already. But the solution given is not working.</p> <p>I have a page.php with a flash banner embeded. banner.swf loads, but displays nothing because it is not getting its data from data.xml which is in flash/lighter/data.xml</p> <p>It only works if the banner.swf and data.xml and the banner_images are all in the root directory. That's not possible and totally unacceptable. So I did get some info here about setting a parameter like this :: :: which is exactly where the data.xml file resides. I figured that had to be the solution. Still no data gets loaded.... unless I have the data.xml, banner.swf, banner_images, all in the root directory where page.php which contains the object code resides. How can I make this seemingly easy thing work ??</p> <p>tia, Tom</p> http://stackoverflow.com/questions/1557273/jquery-post-array-of-multiple-checkbox-values-to-php 0 jQuery - Post array of multiple checkbox values to php jjclarkson 2009-10-12T22:22:59Z 2009-12-03T10:52:56Z <p>Why is only one value of the "db" checkbox values array being sent to the server side script?</p> <p><strong>JQUERY:</strong></p> <pre><code>$(".db").live("change", function() { $(this).add($(this).next("label")).add($(this).next().next("br")).remove().insertAfter(".db:last + label + br"); var url = "myurl.php"; var db = []; $.each($('.db:checked'), function() { db.push($(this).val()); }); if(db.length == 0) { db = "none"; } $.post(url, {db: db}, function(response) { $("#dbdisplay").html(response); }); return true; }); </code></pre> <p><strong>HTML:</strong></p> <pre><code>&lt;input type="checkbox" name="db[]" class="db" value="track"/&gt;&lt;label for="track"&gt;track&lt;/label&gt;&lt;/br&gt; &lt;input type="checkbox" name="db[]" class="db" value="gps"/&gt;&lt;label for="gps"&gt;gps&lt;/label&gt;&lt;/br&gt; &lt;input type="checkbox" name="db[]" class="db" value="accounting"/&gt;&lt;label for="accounting"&gt;accounting&lt;/label&gt;&lt;/br&gt; </code></pre> <p><strong>Edit</strong>: I ended up answering my own question, but does anyone have documentation (or an explanation) of why this is necessary? It was difficult for me to find the exact answer (thus the posthumous post). </p> http://stackoverflow.com/questions/1836758/flash-how-to-read-data-from-shape-graphics-object 0 Flash : How to read data from shape/graphics object. Ole Kristian 2009-12-02T23:59:02Z 2009-12-03T09:39:43Z <p>Hallo,</p> <p>I am wondering if it is possible to get the data that is stored in a shape/graphics object in flash using actionscript 3?</p> <p>In my project I would like to be able to draw a shape and then read all the points in that shape into my script. The reason for that is that I need go generate lines from those points that I later can use to check if my characters velocity intersects with any of them.</p> <p>Regards,</p> http://stackoverflow.com/questions/1836045/list-management-problem 0 List management problem... slomojoe 2009-12-02T21:47:39Z 2009-12-02T23:53:21Z <p>I have a datasource, which I show as a list in a Flex UI.</p> <p>I refresh the list periodically, One of my UI requirements is to gracefully show when the datasource removes an item from the list, So I'm correlating the current list against the incoming datasource.</p> <p>The correlation process is this: </p> <ol> <li><p>Refresh the datasource.</p></li> <li><p>Loop through the existing dataset, Check each ID against the incoming items, if I can't find a match, flag the existing item as closed. (UI handles this flag on item update and does it's visual trick.)</p></li> <li><p>On the next refresh of data, look for flagged items in the current list and remove them.</p></li> </ol> <p>Here's my question, am I doing this in the most efficient manner? Or is there some simple trick I'm missing?</p> http://stackoverflow.com/questions/1507972/how-to-add-new-entity-to-main-tables-view-from-pop-up-view-in-iphone 0 How to add new entity to main table's view from pop up view in iPhone? Teerasej 2009-10-02T06:17:46Z 2009-12-02T18:00:03Z <p>Hi, everyone.</p> <p>I am working on an iPhone application but something strange happen. I think I can ask you for advice.</p> <p>I implemented a TableView and a custom view as a create new object form. I make the custom view slide up when user tab 'Add' button in the tool bar in TableView like the code below:</p> <pre><code>- (void)slide_up_form:(id)sender { CustomViewController *controller = [[CustomViewController alloc] init]; // Assign this controller to use add_entity: message to TableView. controller.parent = self; [self presentModalViewController:controller animated:TRUE]; } // To update TableView presentation. -(void)add_block:(Block *)newBlock { [blockArray insertObject:newBlock atIndex:0]; NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0]; [self.tblCameraList insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationNone]; [self.tblCameraList scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:YES]; } </code></pre> <p>and in custom view, user fill the form and tab 'Save' button. So I did save the entity to Core data. and need to update the TableView with new object, so I code following statement in custom view:</p> <pre><code>@synthesize parent; - (void)save_block:(id)sender { // save entity. [self.parent add_block:newBlock]; // Slide down the custom view and show the TableView. [[self parentViewController] dismissModalViewControllerAnimated:TRUE]; } </code></pre> <p>I have tested this already in simulator and iPhone. when user tab 'Save' button, the application saved the new entity, but it doesn't update TableView with new entry.</p> <p>Could you give your advice to solve this problem? </p> http://stackoverflow.com/questions/1833373/how-to-design-a-database-to-save-data-whose-structure-is-not-always-known-during 4 how to design a database to save data whose structure is not always known during design, and could change later? unknown (google) 2009-12-02T14:50:05Z 2009-12-02T16:27:04Z <p>sites like IBM's many eyes, swivel etc store varieties of data and allow their users to visualize them. How do they design their tables? For example, if you were to save the data from data.gov site into a database and allow your users to perform operations on it, how would you go about designing the tables? The structure needs to be generic enough to hold any type of data. data.gov for example, has tons of data, some of them more complex than the others.</p> http://stackoverflow.com/questions/1549510/what-data-exists-to-show-that-refactoring-is-useful 5 What data exists to show that refactoring is useful? Jason Baker 2009-10-11T00:50:16Z 2009-12-02T13:31:20Z <p>I'm giving a presentation on refactoring Python. I'd like to put in a couple of slides giving statistics to show that refactoring is a good thing. I've been searching the ACM digital library, but it's a bit like looking for a needle in a haystack. Does anyone know of any statistics on the subject of refactoring in regards to productivity or quality that would be good in a presentation?</p> http://stackoverflow.com/questions/1513068/styling-of-data-in-data-grid-in-wpf 0 Styling of data in data grid in wpf Gopakumar 2009-10-03T07:20:18Z 2009-12-01T08:23:01Z <p>I have data being populated into my data grid.Now,In the last column I have data like "Out of Balance " and "Inbalance". I want the display to show all "out of balance" data as being underlined and red in clour while the "in Balance" data to be green in colour without any underline.Note that, the stored proc would give me initially all the "out of balance" records followed by "inbalance" records.please help.I am completely new to the world of WPF and have to give a solution by Monday.Thanks in advance</p> http://stackoverflow.com/questions/1823314/very-long-data-acquisition-and-storage-preservation -1 very long data acquisition and storage/preservation. [closed] Steve L 2009-12-01T00:29:41Z 2009-12-01T00:35:33Z <p>Is anyone interested in a simple analog representation of digital data that lasts areally long time and is inexpensive? I've been "playing" with a system for a long time and am ready to get reviews of the concept. If you are interested please respond</p> http://stackoverflow.com/questions/1822318/master-data-validation-enumerations 0 Master data validation & enumerations Muralidhar 2009-11-30T20:53:19Z 2009-11-30T20:53:19Z <p>At a high level my question is like the following - </p> <p>I am doing a data sync, using web services, between two different systems. To validate the mater data, I depended on creating enums and tried to validate; which I though will ease my job of comparison. But evetually, I ended up comparing as enum.ToString() (which I feel not a good practice or performance driven). </p> <p>Please suggest / point to an approach where Mater data can handled in better / manageable manner. I have to compare from both source &amp; destinations systems.</p> http://stackoverflow.com/questions/1819782/datalayer-in-linq-with-different-version-of-data-model 1 DataLayer in Linq with different version of Data model Polo 2009-11-30T13:20:07Z 2009-11-30T13:30:06Z <p>Hi,</p> <p>I wanted to ask the SO community about this problem in my project. I have a Silverlight App Project in SL 3.0, which at the moment has a classic design with a business layer and a data layer in Linq2SQL. The problem is that the Data model can be in different version with some little changes in between. </p> <p>I have 2 solutions but neither of them seemed good :</p> <ol> <li><p>Get rid of the Linq and put old stored procedures :</p> <ul> <li>the good point if the data model changes i just have to change the stored procedures</li> <li>the bad part is that my linq with dynamic filters would give me 30 stored procedures to change</li> </ul></li> <li><p>Build one data layer for each version </p> <ul> <li>the good point is that the model stays clean with unit test for non regression</li> <li>the bad part is that I have to develop for each new version of the model</li> </ul></li> </ol> <p>Is there a good pattern to watch for data layer accessibility?</p> <p>Thanks and sorry for my poor English</p> http://stackoverflow.com/questions/1597643/digitally-sign-data-as-it-is-archived 0 Digitally Sign Data as it is Archived cephil 2009-10-20T22:17:03Z 2009-11-30T09:49:23Z <p>I have an application that records data from a manufacturing process on a periodic basis (various sample rates, minimum of 1 sec, the usual max is 10 min or more). The customer would like to know if the data has been altered (changed in place, records added to, or records deleted from).</p> <p>The data is recorded as a binary record. There can be multiple streams of data, each going to its own file, and each with its own data format. The data is written a record at a time, and if the monitoring PC or process goes down, manufacturing does not necessarily stop, so I can't guarantee the archiving process will stay up. Obviously, I can only authenticate what I actually record, but the recording might start and stop.</p> <p>What methods can be used to authenticate that data? I'd prefer to use a separate 'logging' file to validate the data to maintain backwards compatibility, but I'm not sure that's possible. Barring direct answers, are there suggestions for search terms to find some suggestions?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1818449/use-net-object-as-data-source-in-crystal-report-2008 0 Use .net object as data source in Crystal Report 2008 Linh 2009-11-30T08:10:06Z 2009-11-30T08:10:06Z <p>HI all,</p> <p>I created a .net object (ex: A) which contain data have been collected from tables. Next, i create a List() and pass to SetDataSource() method of ReportDocument object. When i run then an Exception have been throwed : "CrystalDecisions.CrystalReports.Engine.DataSourceException: The data source object is invalid" I don't know the Exception above, Error message isn't clear. Can anybody explain for me? ex: the .net object must inherit from ISerializable.....</p> http://stackoverflow.com/questions/1816727/why-is-that-data-structures-usually-have-a-size-of-2n 4 Why is that data structures usually have a size of 2^n ? Hoffa 2009-11-29T20:51:19Z 2009-11-29T21:50:02Z <p>Is there a historical reason or something ? I've seen quite a few times something like <code>char foo[256];</code> or <code>#define BUF_SIZE 1024</code>. Even I do mostly only use 2^n sized buffers, mostly because I think it looks more elegant and that way I don't have to think of a specific number. But I'm not quite sure if that's the reason most people use them, more information would be appreciated. :)</p> <p>Thanks in advance, Hoffa.</p> http://stackoverflow.com/questions/1814994/access-97-external-dll-gets-outdated-data-what-can-i-do 0 Access 97 - external dll gets outdated data - what can i do? Thomas G. Liesner 2009-11-29T08:23:35Z 2009-11-29T21:42:19Z <p>Hello,</p> <p>In my current job i have to fix some issues in an old Access97-application. My last problem is this: Some reports are created with an external dll and sometimes the reports are wrong. They contain data from the previous call or the detail data is missing and so on. If i start the same report without any change on the data the reports are correct. </p> <p>The cause for this is in my opionion, that the external dll gets outdated data from access instead the current data, which is written just before calling the dll. Is there any documented way to flush the internal buffers from access or do i have to add some wait cycle in the hope, that it will avoid this problem in most of the times?</p> <p>Thx,<br> Thomas G. Liesner</p> http://stackoverflow.com/questions/1815965/mvc-toolkit-and-xmlmetadataprovider 0 MVC Toolkit and XmlMetadataProvider Ryan Pedersen 2009-11-29T16:26:02Z 2009-11-29T16:34:31Z <p>I have been working on validation with the ASP.NET MVC BETA 2. Some of the reading that I have done is very critical of the buddy class approach because it isn't DRY (Don't Repeat Yourself) and because it puts the buddy class in the model layer and not in the web layer. I understand these arguments and through lots of searching I found an old reference to the MVC Toolkit 3.5 Preview 1.</p> <p>Inside the toolkit is an XmlMetadataProvider. It is fairly basic but easy enough to extend. This would put the meta data for the model into an XML file with the web project and it seems that it would solve the issues raised by others with the Buddy Classes.</p> <p>Does anyone have any thoughts or feedback on this toolkit approach? Have you used it? Do you know where I can get a more up to date example?</p> <p><a href="http://asp.net/downloads/3.5-extensions/MVCToolkit.zip" rel="nofollow">Old MVC Toolkit</a></p>