Sign In
hughpyle
Hugh Pyle's technology weblog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Forms Demo
Forms Tips
Internals
Web Services demo
Web Services Tips
Archive
Archives
November 2008
(1)
January 2008
(1)
June 2007
(1)
December 2006
(1)
September 2006
(2)
August 2006
(2)
July 2006
(2)
June 2006
(8)
May 2006
(4)
April 2006
(3)
March 2006
(9)
January 2006
(1)
November 2005
(1)
September 2005
(7)
August 2005
(2)
July 2005
(12)
June, 2006
MSDN Blogs
>
hughpyle
>
June, 2006
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
hughpyle
Newsreaders and code samples
Posted
over 6 years ago
by
MSDNArchive
0
Comments
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...
hughpyle
Forms Attachments
Posted
over 6 years ago
by
MSDNArchive
0
Comments
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...
hughpyle
EnforceConstraints
Posted
over 6 years ago
by
MSDNArchive
0
Comments
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...
hughpyle
Update Forms data
Posted
over 6 years ago
by
MSDNArchive
0
Comments
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...
hughpyle
Insert Forms data
Posted
over 6 years ago
by
MSDNArchive
3
Comments
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...
hughpyle
Query Forms data
Posted
over 6 years ago
by
MSDNArchive
0
Comments
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...
hughpyle
Forms Data
Posted
over 6 years ago
by
MSDNArchive
1
Comments
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...
hughpyle
Forms web service
Posted
over 6 years ago
by
MSDNArchive
0
Comments
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...
Page 1 of 1 (8 items)