Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~10K People Reached
About Me

30+ years of programming (Basic, Forth, Pascal, Modula-II, C, C++, C#, Delphi. I prefer Delphi over all others. I am retired from the Colorado Division of Wildlife where I managed hatcheries and wrote software. Now, I just play and do part-time consulting…

Interests
Mountain biking, dirt biking, downhill skiing, aquariums.
PC Specs
Various Mac and PC.
Favorite Tags

33 Posted Topics

Member Avatar for Toulinwoek

I've used Delphi since version 1 and I've used C# for several years now. The ONLY reason I use C# is because it is a requirement of a big project I am working on. And, those requirements were specified for all of the wrong reasons, so far as I'm concerned. …

Member Avatar for conhulio
0
2K
Member Avatar for Michael_Knight

If your children ever find out how lame you really are they'll murder you in your sleep. Frank Zappa

Member Avatar for happygeek
0
1K
Member Avatar for fishsqzr

I am trying to use form inheritance in C#/NET 2.0 and find that some things (which were possible in other systems) do not seem to work here. Actually, even inheriting a form seems do be a bit of a chore (and the C# Help does not mention it at all). …

Member Avatar for dhar_sudipta
0
175
Member Avatar for fishsqzr

I have had it with Vista HP, as it cannot support SQL Server at the level needed. Too bad Microsoft doesn't tell you about the problem (I found out by surfing their forums) I've purchased an XP Pro disk, but now I discover that XP cannot see my hard drive! …

Member Avatar for Smalls
0
113
Member Avatar for fishsqzr

C# (and, I assume, all NET languages) has a very obnoxious 'feature' where data is not sent from a control (TextBox, CheckBox, DataGridViewCell...) to the underlying dataset until that control looses focus. This causes problems because there are cases where critical code can get invoked before a value is saved. …

0
80
Member Avatar for khaled_nagaty

Are you just dragging a connection component into your form and setting it up, or are you allowing Visual Studio to build a typed dataset? Or, maybe you are trying to drag objects from Database Explorer, which doesn't work. First, you need a project open. Then on the C# menu, …

Member Avatar for fishsqzr
0
128
Member Avatar for MoZo1

I haven't tried to run your code, but I can tell you this: When your uncomment the line which moves to the next record, what is happening is that Delphi is calling OnCalc again automatically as soon as the record changes, and you are probably trashing the stack when the …

Member Avatar for MoZo1
0
475
Member Avatar for fishsqzr

The Microsoft write-ups for Visual Studio 2008 said that it can target various version of .NET. However, it seems to set up all projects to target NET 3.5. Does anyone know how to make it target earlier NET versions?

Member Avatar for scru
0
104
Member Avatar for fishsqzr

I need to use a BindingSource Filter property to search for names in a string field. That is easy enough, unless the name contains a single quote (apostrophe) such as "O'BRIEN" or similar names. VS Help says special characters should be escaped by enclosing them in square brackets. This works …

Member Avatar for fishsqzr
0
102
Member Avatar for fishsqzr

I recently purchased Visual Studio Pro '08 and installed in on Vista HP. It comes with SQL Server Developer, but I disovered I could not get that to install correctly. From what I have discovered on other forums, Vista HP does not expose IIS properly to SQL Server so Reporting …

0
41
Member Avatar for fishsqzr

I'm trying to install SQL Server on a Vista HP machine, but it will not detect IIS, which in turn prevents Reporting Services from being installed. I have seen blogs which indicate that the UAC system in HP does not properly detect IIS and that as a result NOTHING can …

Member Avatar for fishsqzr
0
81
Member Avatar for bhavna_816

You can extract the name of each element in the enumeration (with ToString) to use that for your name, but you couldn't use an illegal name (like something containing a space) when creating the enum structure. You would be better off to use a collection of objects of a custom …

Member Avatar for fishsqzr
0
181
Member Avatar for fishsqzr

I have a simple DragAndDrop sample which should move a string from one ListBox to another. The string gets dropped, but it is not removed from the source even though Move is specified. Where have I gone wrong? Here is the code: [CODE] public partial class Form1 : Form { …

Member Avatar for Despa22
0
106
Member Avatar for fishsqzr

I have a highly specialized update operation which I must occasionally run against a table. I would like to just send the SQL directly to the database as an UPDATE command. I have a data adapter for the table which handles normal read/write operations but this is a special case. …

Member Avatar for Jugortha
0
311
Member Avatar for fishsqzr

Does anyone know of a way to force input to the cells in a DataGridView column to be uppercase?

0
76
Member Avatar for fishsqzr

I have a table with a column containing a single character representing what type of animal described by the record. I have a comboBox which has the Items property filled with the descriptions corresponding to each code. Example "A" = Amphibian, "C" = Coldwater fish... and so on). What I …

Member Avatar for JerryShaw
0
158
Member Avatar for engg_mohit420e

I've had Vista for about 6 months and I HATE IT. I bougth a new Dell laptop with good specs (and I maxed out memory and got a generous drive to boot) and had Vista factory installed. It has been nothing but trouble. It is slow, unreliable and prone to …

Member Avatar for fishsqzr
0
180
Member Avatar for fishsqzr
Member Avatar for fishsqzr
0
74
Member Avatar for fishsqzr

I have been using Vista Live File System to keep backups of programming code. Each day, I use Windows Explorer to add a new folder named according to the date (example: "080114") and then I copy files as needed to that folder. Then I close the session. I am finding …

Member Avatar for chris5126
0
101
Member Avatar for fishsqzr

I need to use C# methods to set the values of some DataColumns in a table. DataColumn provides an Expression property, but that only allows a subset of SQL style calculations on the dataset. What I need to do is call a C# method to perform calculations too complex for …

Member Avatar for fishsqzr
0
238
Member Avatar for majestic0110

The C# language itself is not going to be the problem. It is a pretty useful language overall. Your big problems will come from the .NET libraries which make everything work. I've been using C# for a over year now and still have major problems finding out how to do …

Member Avatar for majestic0110
0
141
Member Avatar for fishsqzr

Does anyone know how to determine which control on a form currently has focus?

Member Avatar for fishsqzr
0
70
Member Avatar for fishsqzr

When the user clicks the Delete button on a BindingNavigator, the delete occurs immediately. I can arrange for the user to cancel the delete later, but that assumes the user realizes that a record was deleted in the first place, so I prefer to warn them when the button is …

Member Avatar for fishsqzr
0
2K
Member Avatar for fishsqzr

I can't seem to get OleDb controls to show up in C# Express. Are they excluded for some reason? I have made sure they are selected in the "Choose Toolbox items..." dialog, where they are listed, but they don't appear anywhere on the toolbar. I tried to add them to …

Member Avatar for fishsqzr
0
82
Member Avatar for fishsqzr

This may be a NET bug, but maybe I'm missing something. I've been trying to trap a certain kind of error when using a DataGridView. The following describes the steps to generate the error. I used a typed dataset to make the example quick, but the same thing happens if …

Member Avatar for fishsqzr
0
556
Member Avatar for fishsqzr

Does C# allow short-circuit evaluation of Boolean expressions? That is, if you have an expression such as if (test1) & (test2) {....} when test1 is false, there is no reason to evaluate test2 and a language which supports short-circuit evaluation never looks at the second test because the result will …

Member Avatar for iamthwee
0
484
Member Avatar for fishsqzr

I'm using C# Express and SQL Server Express. I can connect to sample databses I have downloaded to the default location (..\MMSQL.1\MSSQL\DATA) but I cannot connect to a new database I create using SQL Server. The error is "You don't have permission to open this file. Contact the owner or …

Member Avatar for JerryShaw
0
425
Member Avatar for Terry Robinson

I finally got back to looking at this problem. From what I see in the replies, I can build a class to be used in various parts of a program. While that is useful, I see no way to create a single instance of that class to be used throughout …

Member Avatar for JerryShaw
0
398
Member Avatar for fishsqzr

I'm using a typed dataset with several master:detail levels. I've already discovered I must set EnforceConstraints to false to load the data or I will get constraint conflicts. Now I am trying to discover how to delete related child records when a master record is deleted. The master gets deleted …

0
57
Member Avatar for fishsqzr

I am using a typed DataSet in C# Express 2005 to build a master:detail relationship. I can do so by dragging the master table from a Data Sources window to the form, and then the detail table from the end of the list of objects in the master table. Two …

Member Avatar for fishsqzr
0
124
Member Avatar for fishsqzr

I need to discover the names C# is using for component instances, both during design and run. The Designer assigns names, and the programmer can alter them during design, but the effect is to add names in the code. Since Component classes do not have a 'Name' property as such, …

0
57
Member Avatar for fishsqzr

I am trying to add new lines to a TextBox control. I have MultiLine set to true and AcceptsReturn set to true. If I use the AppendText() method, I just get more text immediately behind what is already there. If I insert or add a newline escape \n it just …

Member Avatar for Ramy Mahrous
0
105
Member Avatar for fishsqzr

I'm looking at buying a new computer and it appears that Vista is about my only OS option (whether I like it or not, and I don't). I already know I'm going to have some problems installing my programming software. My question is - does anyone know if I can …

Member Avatar for Agita
0
65

The End.