Welcome to MSDN Blogs Sign in | Join | Help

June 2006 - Posts

Newsreaders and code samples

Sorry to anyone trying to make sense of these code samples with a newsreader; you'll miss all the formatting. I should take a look at how these folks do it -- seems to work well for them. Meanwhile, to see slightly-better-formatted code, you'll need to
Posted by hpyle | 0 Comments

Forms Attachments

In Groove Forms, you can add an Attachments field to your forms, and store any number of attachments in the field. (You can define more than one attachments field in the tool, but each form can only include one attachments field). Let's look at accessing
Posted by hpyle | 0 Comments

EnforceConstraints

It's really nice to see people try using the techniques I'm posting here. But, as usual, there are glitches when this stuff comes in contact with the real world. Here's a really relevant comment from a user: "When I try to insert a new DataRow to the
Posted by hpyle | 0 Comments

Update Forms data

Updating Forms data is just about as easy as creating new records: Read the schema and the set of data which you want to update; Update records in your DataSet with appropriate field values; Call the Forms UpdateRecords() method to update the specified
Posted by hpyle | 0 Comments

Insert Forms data

It's quite straightforward to create new Forms records: Read the Forms tool's schema into a DataSet; Add new records to the DataSet with appropriate field values; Call the Forms CreateRecords() method to insert the new records. A single call to CreateRecords()
Posted by hpyle | 3 Comments

Query Forms data

Now I think we have enough to be useful. Here are three simple methods which call the GetDataSet() I defined earlier: public System.Data. DataSet GetSchema() { return GetDataSet( true , false , "" ); } public System.Data. DataSet Query( string queryString)
Posted by hpyle | 0 Comments

Forms Data

When you read data from a Forms tool's web service, it's delivered in an XML format which is designed to map easily to a System.Data.DataSet. Of course you could work with the raw XML, but dealing with a DataSet gives you lots of flexibility. There are
Posted by hpyle | 1 Comments

Forms web service

For the next few posts, I plan to write up a few small examples of code using the Groove Forms web service. There's a sample, GrooveFormsExplorer, in the development kit , which shows how to read Groove accounts, identities, workspaces and tools; and
Posted by hpyle | 0 Comments
 
Page view tracker