User virtualmic - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T18:47:39Zhttp://stackoverflow.com/feeds/user/70759http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1498347/auto-validation-in-winforms-in-a-dedicated-label-redux-using-datasets0Auto validation in Winforms in a dedicated label: Redux using DataSetsvirtualmic2009-09-30T14:08:18Z2009-09-30T14:08:18Z
<p>I had asked this question:
<a href="http://stackoverflow.com/questions/1491129/auto-validation-in-winforms-in-a-dedicated-label">http://stackoverflow.com/questions/1491129/auto-validation-in-winforms-in-a-dedicated-label</a></p>
<p>The answer was right, and I got thinking more: How to do this, using DataSets?</p>
<p>I stumbled upon this link:</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataproviders/thread/2367f061-4124-4050-8318-55193193c2d4" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataproviders/thread/2367f061-4124-4050-8318-55193193c2d4</a></p>
<p>However, I am unable to figure how do I bind these errors to my UI? How do I show them to the user? I want to do it using a dedicated label, as I described them in my previous question, but doing it using an errorProvider Component won't be bad either.</p>
<p>Thanks again!</p>
http://stackoverflow.com/questions/1491129/auto-validation-in-winforms-in-a-dedicated-label1Auto validation in Winforms in a dedicated labelvirtualmic2009-09-29T07:53:58Z2009-09-29T08:59:31Z
<p>I have seen in certain places (sorry, am unable to provide links at the moment) that validation errors in a form are displayed in a label at the top. As the user fills up the form, that error text changes accordingly.</p>
<p>I can see an obvious if...else and handling "Validating" etc events to implement this (though it can turn out to be very tedious for complex forms). Is there a more straightforward, cleaner way to do this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1377284/how-to-handle-exceptions-generated-by-datasets0How to handle exceptions generated by DataSets?virtualmic2009-09-04T04:52:35Z2009-09-05T08:54:05Z
<p>Hi,</p>
<p>DataSets in ADO.Net throw exceptions when there are constraint violations etc. It is easy to catch these exceptions in the WinForms UI Layer using DataGridView (using DataError event).</p>
<p>However, I am unable to find a way to catch and handle these exceptions when using simple data bound (to datasets) controls such as textboxes. Any ideas?</p>
<p>Thanks! </p>
<p><strong>Edit</strong> Sorry folks, but can anyone tell me the reason why I haven't received any answer/comment? Is it something about my question that is not understandable? I am quite open to suggestions/ criticism. Thanks again.</p>
http://stackoverflow.com/questions/995683/practical-wpf-programming2Practical WPF Programmingvirtualmic2009-06-15T11:49:42Z2009-06-15T13:39:42Z
<p>Hi,</p>
<p>I think I have got some grasp over basic WPF fundaes.</p>
<p>Now I want to go deep. However, apart from understanding how the classes work under the hood, I would like to learn practical aspects of WPF; that is, how to use it in real life projects.</p>
<p>I have seen a number of such books for Web Frameworks and languages such as Django, PHP etc, but none for WPF or for that matter, Winforms. All books of WPF/Winforms just include snippets, for that particular section/chapter.</p>
<p>I saw this question: <a href="http://stackoverflow.com/questions/720727/practical-silverlight-wpf-books">http://stackoverflow.com/questions/720727/practical-silverlight-wpf-books</a>, but it has more silverlight taste. I want for WPF.</p>
<p>I think reading blogs by WPF disciples and others is a good option, but I was thinking more of a systematic study.</p>
<p>So my question in nutshell is, what is the best systematic way to learn practical WPF programming for an advanced beginner?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/980002/problem-referencing-classes-in-external-assembly-in-wpf-designer-in-vs-20080Problem referencing classes in external assembly in WPF designer in VS 2008?virtualmic2009-06-11T08:39:29Z2009-06-11T08:41:02Z
<p>Here, Data refers to a another class-library project in the same solution. The main project is referencing Data properly and there is a data.dll in the debug directory of the main project. Yes, I am able to build and run this solution properly.</p>
<p>Is this a known problem? I searched on the web, but am unable to find a definite answer.</p>
<p><img src="http://img200.imageshack.us/img200/1087/bghelpertext.jpg" alt="Problem referencing classes in external assembly in WPF designer in VS 2008?" /></p>
http://stackoverflow.com/questions/585355/table-details-in-sql-anywhere1Table Details in SQL Anywhere?virtualmic2009-02-25T09:46:06Z2009-05-23T07:56:22Z
<p>I just downloaded the developer edition of SQL Anywhere. How can I get a list of tables in the database I'm connected to?. Also for a particular table, how do I get the meta-data for that table (column names, types, etc)?</p>
http://stackoverflow.com/questions/730347/best-net3-5-based-strategy-for-creating-disconnected-db-application5Best .NET3.5 based strategy for creating disconnected db application.virtualmic2009-04-08T14:40:31Z2009-05-13T05:04:33Z
<p>Hi group:</p>
<p>My requirements are:</p>
<li>Relatively small database: 25-30 tables with 4-5k rows in each.
<li>4-5 users with their own copies of local database on their laptops. Sync when needed or at the end of the day.
<li>Free solution, as am making this setup for a NFP ogranization.
<br/><br/>
<p>I have been researching various options in last few days. At last I was thinking of narrowing to Datasets, while serializing them to XML, but it seems that it is not a good idea afterall (answers to my previous questions suggested that strongly.)</p>
<p> So my question now is what approach (database and the access tech.) should I take? I would like to use c# and an easy to use technology to access my database and sync it at the end of the day. According to this link: http://msdn.microsoft.com/en-us/library/8fxztkff.aspx, MS suggests two different approaches. I am surprised to see that they have not mentioned LINQ here.</p>
<p>So group, what path do you recommend?</P>
<p>Thanks a lot for reading.</p>
http://stackoverflow.com/questions/829190/tostring-for-a-class-property0ToString() for a class property?virtualmic2009-05-06T11:43:49Z2009-05-06T12:41:05Z
<p>Supposing I have a class "Item", which has three member variables: string name, decimal quantity and string unit. I have got public get/set properties on all three.</p>
<p>Sometimes, I want to display quantity as text along with correct unit, eg. 10m or 100 feet. </p>
<p>My question is, is it possible to have some sort of ToString() function for properties too, so that their text output can be customized?</p>
<p>Thanks,</p>
<p>Saurabh.</p>
http://stackoverflow.com/questions/829132/db4o-replication-system-nullreferenceexception0db4o Replication System: NullReferenceException?virtualmic2009-05-06T11:23:03Z2009-05-06T11:23:03Z
<p>Hi,</p>
<p>I am trying to do standard bi-directional replication as follows. However, I get a NullReferenceException. This is a separate replication project. I did import the classes involved in the original project (such as Item, Category etc.) in this replication project. What am I doing wrong? (If I debug using VS, I can see that changedObjects does have all the changed objects; there seems to be some problem inside Replicate function)</p>
<pre><code>IObjectContainer local = Db4oFactory.OpenFile(@"G:\Work\School\MIS\VINMIS\Inventory\bin\Debug\vin.db4o");
IObjectContainer far = Db4oFactory.OpenFile(@"\\crs-lap\c$\vinmis\vin.db4o"); ;
IReplicationSession replication = Replication.Begin(local, far);
IObjectSet changedObjects = replication.ProviderA().ObjectsChangedSinceLastReplication();
while(changedObjects.HasNext())
replication.Replicate(changedObjects.Next()); // Exception!!!
replication.Commit();
changedObjects = replication.ProviderB().ObjectsChangedSinceLastReplication();
while (changedObjects.HasNext())
replication.Replicate(changedObjects.Next());
replication.Commit();
</code></pre>
<p>Regards,</p>
<p>Saurabh.</p>
http://stackoverflow.com/questions/788227/dataset-allowing-null-values-even-when-allowdbnull-false0Dataset allowing Null values even when AllowDBNull = False?virtualmic2009-04-25T04:28:16Z2009-04-25T11:09:12Z
<p>Hi,</p>
<p>I have designed a dataset using VS2008 dataset designer. In one of the datatables, I have set "AllowDBNull" property of most of the columns to be False. However, still if I create a DataRow containing null values for these columns, this datatable accepts this row, without any error.</p>
<p>Am I not understanding something here? Please advice. Thank you.</p>
<p><b>Edit</b> Mike Spross' excellent explanation however, brings forth another question. How do we check text fields if they are System.DBNull? It is surprising that DataSets are not considering a string "" as System.DBNull and throwing an exception. Or is it not?</p>
<p><b>Edit</b> I think I have found the problem and reason. I am initializing a new row of the DataTable, before filling in the values to that row. While initializing the row, default value for string, ie, "" might be being filled in that column. I think that's it? Any ideas about this?</p>
http://stackoverflow.com/questions/773187/two-different-net-applications-cant-access-the-db4o-file0Two different .NET applications can't access the db4o filevirtualmic2009-04-21T15:31:16Z2009-04-21T15:34:43Z
<p>I have just downloaded and and am using db40 7.9 and am testing it on two different .NET 3.5 applications using the supplied tutorial.</p>
<p>When I access the same database (c:\pilot.db4o) file using these two applications, one after the other, each one is reflecting only the changes made by that application, even if those changes were made during the previous run.</p>
<p>Why is each Application not seeing changes the other application made to the database file?</p>
http://stackoverflow.com/questions/746508/datasets-based-net-programme-use-designer-tools-or-do-it-self1DataSets based .NET programme: Use Designer tools or do it self?virtualmic2009-04-14T06:17:28Z2009-04-14T06:38:34Z
<p>Hi,</p>
<p>After thinking for long, I have decided to build my data app for the Not-for-profit organization I work for (I don't program regularly there, though...) using C#, .NET 3.5 (using ADO.NET DataSets) and Scimore db.</p>
<p>I have done base basic tinkering till now and have found this combo to be quite good and fast. Ya, "fast" is a requirement for me, as our computers are slow. </p>
<p>I have a question though: should I use Visual Studio design tools to help me build my GUI for data bound controls or should I code them by hand? In simple scenarios, I have found that designer generated code seems to be too big for the purpose.</p>
<p>Will it somehow affect the "fastness" of my final app?</p>
<p>Thanks for reading!</p>
<p><B>Edit</b> Sorry, I didn't mention, this would be a desktop application, using Winforms</p>
http://stackoverflow.com/questions/736766/default-values-from-sql-server-express-table-column-to-dataset0Default values from SQL Server Express table column to Dataset?virtualmic2009-04-10T05:05:38Z2009-04-10T16:26:03Z
<p>Hi,</p>
<p>I am a new Database programming learner. I am using C# (.NET 3.5) along with SQL Server Express.</p>
<p>I am following Forms over Data Video Series from Microsoft. However, I am creating a databse, different from the one created in the videos.</p>
<p>In one of the tables, I wanted the present date/time to be inserted in the date column, so I am using the getdate() function as default value, which I have set using SQL Server Management Studio. When I insert new rows in this table using SQL Server Management Studio, the said column is updated fine.</p>
<p>However, when I use Windows form, and the auto-generated data grid for the dataset of this particular table, it does not update using the default value.</p>
<p>I think I am missing something in this. If somebody could point me in the right direction, it would be really helpful. Thanks.</p>
http://stackoverflow.com/questions/730088/problem-in-updating-a-database-through-windows-application/730370#7303700Answer by virtualmic for Problem In updating a database through windows application.virtualmic2009-04-08T14:48:12Z2009-04-08T14:48:12Z<p>I think Zim is using automatically generated Datasets, along with Winforms controls. To send the data back to the database, in the automatically generated form, are you clicking the "Save" button, Zim?</p>
http://stackoverflow.com/questions/729938/datasets-and-xml-in-place-of-proper-db-not-a-good-idea2Datasets and XML in place of proper db: Not a good idea?virtualmic2009-04-08T13:14:12Z2009-04-08T13:25:59Z
<p>In continuation of: <a href="http://stackoverflow.com/questions/729634/storing-datarelation-in-xml">http://stackoverflow.com/questions/729634/storing-datarelation-in-xml</a></p>
<p>Thanks to everybody for answers to my earlier thread. However, could I ask the reason why everybody is not supporting this XML based approach? What exactly will be the problems? I can apply connstraints to dataset, and I can, I guess, also use transactions.</p>
<p>I am new to this. So if you could point me to some link, where I can find some sort of comparisons, that would be really helpful.</p>
<p>According to FAQ, discussions are not very encouraged, but I guess this is quite specific. I hope, not to be fired for this... :)</p>
<p>Thanks for reading,
Saurabh.</p>
http://stackoverflow.com/questions/729634/storing-datarelation-in-xml0Storing DataRelation in xml?virtualmic2009-04-08T11:49:50Z2009-04-08T12:53:04Z
<p>Hi,</p>
<p>I am designing a db application using a novel approach. (atleast novel to me... :) )</p>
<p>So I am doing some research for the same.</p>
<p>I am using .NET 3.5 ADO.NET Datasets to work with data and store it offline in XML.</p>
<p>First, is this approach any good for a serious (though a small db, 4-5 users, ~25 tables ~3-4k records in each) application?</p>
<p>Second, how do I exactly store a datarelation in an offline XML file?</p>
<p>Thanks!</p>
<p>Saurabh.</p>
http://stackoverflow.com/questions/995683/practical-wpf-programming/995718#995718Comment by virtualmic on Practical WPF Programmingvirtualmic2009-06-15T12:01:10Z2009-06-15T12:01:10ZBut do you and other readers think that this is the right approach for learning some good practices?
In my opinion, if I have some mentor, in form of an expert author, I would be able to learn certain practical good practices and then apply them to my own projects.http://stackoverflow.com/questions/980002/problem-referencing-classes-in-external-assembly-in-wpf-designer-in-vs-2008/980005#980005Comment by virtualmic on Problem referencing classes in external assembly in WPF designer in VS 2008?virtualmic2009-06-11T08:46:34Z2009-06-11T08:46:34ZAll right, that's sad.... Thanks Kent!http://stackoverflow.com/questions/730347/best-net3-5-based-strategy-for-creating-disconnected-db-application/856147#856147Comment by virtualmic on Best .NET3.5 based strategy for creating disconnected db application.virtualmic2009-05-13T08:31:17Z2009-05-13T08:31:17ZSince I was planning for a new project, I have changed my approach altogether. Instead of going with a RDBMS, I am using db4objects. It has db4o<->db4o replication built in.http://stackoverflow.com/questions/829190/tostring-for-a-class-propertyComment by virtualmic on ToString() for a class property?virtualmic2009-05-06T12:14:30Z2009-05-06T12:14:30ZThank you Greg, for you concern. I will definitely try out other approaches too, as you and Anton have suggested. Thanks again, everyone!http://stackoverflow.com/questions/829190/tostring-for-a-class-propertyComment by virtualmic on ToString() for a class property?virtualmic2009-05-06T12:08:39Z2009-05-06T12:08:39ZWow so many solutions! Choosing an answer becomes really difficult, as IMO, many of the solutions suggested seem correct and useful. Two points:
1. There is a UI, for now. However, I still want to do that "formatting" inside the object, because it seems to be so inherent of that object, to return its quantity along with the unit, when not getting involved in some calculations.
2. For now, I am going with Fredrik's solution, as it is providing me with a new ready-to-use property, without the "hassles" of a new object for quantity + unit.http://stackoverflow.com/questions/788227/dataset-allowing-null-values-even-when-allowdbnull-false/788334#788334Comment by virtualmic on Dataset allowing Null values even when AllowDBNull = False?virtualmic2009-04-25T10:20:48Z2009-04-25T10:20:48ZI had accepted this answer a while ago, but unaccepted it, just for the time being, so that answer to my further query can be provided. I will accept it, again as soon as that happens.http://stackoverflow.com/questions/788227/dataset-allowing-null-values-even-when-allowdbnull-false/788334#788334Comment by virtualmic on Dataset allowing Null values even when AllowDBNull = False?virtualmic2009-04-25T10:14:04Z2009-04-25T10:14:04ZThanks for the explanation. http://stackoverflow.com/questions/788227/dataset-allowing-null-values-even-when-allowdbnull-false/788263#788263Comment by virtualmic on Dataset allowing Null values even when AllowDBNull = False?virtualmic2009-04-25T05:20:58Z2009-04-25T05:20:58ZI have a text box and I am using following code:
if(this.nameTextBox.Text == "")
dr[DB.vinDataSet.item.nameColumn] = null;
else
{
dr[DB.vinDataSet.item.nameColumn] = this.nameTextBox.Text;
}
But I can enter row in DataTable, even when I explicitly set the nameColumn to null.
BTW, what's "NOT NULLABLE" property. All I can see is "AllowDBNull" in the DataSet Designer.http://stackoverflow.com/questions/746508/datasets-based-net-programme-use-designer-tools-or-do-it-self/746522#746522Comment by virtualmic on DataSets based .NET programme: Use Designer tools or do it self?virtualmic2009-04-14T06:47:38Z2009-04-14T06:47:38Zsorry, Adam, my bad. Didn't mention, I am using Winforms, as I don't want to get into trouble of all webserver etc.http://stackoverflow.com/questions/736766/default-values-from-sql-server-express-table-column-to-dataset/736776#736776Comment by virtualmic on Default values from SQL Server Express table column to Dataset?virtualmic2009-04-11T13:55:12Z2009-04-11T13:55:12ZThanks again for answering. Nevermind, I think I got it... It was really stupid on my part... :)http://stackoverflow.com/questions/736766/default-values-from-sql-server-express-table-column-to-dataset/736776#736776Comment by virtualmic on Default values from SQL Server Express table column to Dataset?virtualmic2009-04-10T09:02:56Z2009-04-10T09:02:56ZThanks for answer. However if I don't pass the date as a parameter, an exception is generated, as in the database table, that date is not allowed to be NULL. From where can I specify that it is OK if in Winform, date value is not there and the server will assign it properly?http://stackoverflow.com/questions/736766/default-values-from-sql-server-express-table-column-to-datasetComment by virtualmic on Default values from SQL Server Express table column to Dataset?virtualmic2009-04-10T05:07:28Z2009-04-10T05:07:28ZI don't know why but I used the <a href="<a href="http://msdn.microsoft.com/en-us/vbasic/bb466226.aspx>Data" rel="nofollow">msdn.microsoft.com/en-us/vbasic/…</a> Video Series from Microsoft</a> tags in my post. It is showing fine in preview, but not in final post?!http://stackoverflow.com/questions/730347/best-net3-5-based-strategy-for-creating-disconnected-db-application/730361#730361Comment by virtualmic on Best .NET3.5 based strategy for creating disconnected db application.virtualmic2009-04-08T15:26:05Z2009-04-08T15:26:05ZActually, Sacha, the link you are referring to: Doesn't it show a server-CE sync, rather than a peer-to-peer sync. Please excuse me, if I am wrong, I am new at this.http://stackoverflow.com/questions/730347/best-net3-5-based-strategy-for-creating-disconnected-db-application/730361#730361Comment by virtualmic on Best .NET3.5 based strategy for creating disconnected db application.virtualmic2009-04-08T15:02:26Z2009-04-08T15:02:26ZHi Sacha, thanks for answering. One question for you though, without any research on my part: Does Sync Framework support peer to peer sync for SQL SERVER CE db?http://stackoverflow.com/questions/730347/best-net3-5-based-strategy-for-creating-disconnected-db-application/730362#730362Comment by virtualmic on Best .NET3.5 based strategy for creating disconnected db application.virtualmic2009-04-08T14:50:58Z2009-04-08T14:50:58ZNo Adam, there is absolutely no infra, so as to speak, in place already. We are using Foxpro as of now, and manually copy files around.. Very bad solution indeed... :) please do not judge me.