By Soul Solutions on
Thursday, 31 August 2006
If you've modified your form.xsd file and want to get those nodes into your template and sample data files in Infopath 2003...best way i've found is:
1. Only works on mandatory items (so you can always make sure the item is mandatory (usage min 1) first and change it back afterwards)
2. Open your form
3. Choose any control that's already bound that has a default value e.g. a text box
4. Choose Properties
5. Alter the default value, and change it back.
The files should be regenerated. Stops you getting the unbound control errors and having to manually re-create the nodes.
|
By Soul Solutions on
Tuesday, 29 August 2006
Always forget what number is what version of SQL Server so here's list of the ones I commonly run into
SELECT SERVERPROPERTY('ProductLevel') GO
or SELECT @@VERSION GO
SQL 2005
Release 9.00.1399.06 SP1 9.00.2047 Hotfix918222 9.00.2153 SP2 9.00.3042
SQL 2000
release 8.00.194 sp1 8.00.384 sp2 8.00.534 sp3/3a 8.0.760 sp4 8.00.2039
|
By Soul Solutions on
Saturday, 26 August 2006
I didn't take my 350D to Tech.Ed with me cause I didn't feel like lugging my camera equipment around with me, so we took the old 2 MP Canon IXUS. Unfortunatly i couldn't find the charger before we left, so only got to take 1 photo with it. We got our pici taken with my M/soft buddy Frank.

After a long search we finally found our names on the wall, so then i believed that it was really made up of participant names. Before that, there were a lot of tech.john, tech.david etc that coulda just been made up. The likelyhood of Tech.John, Tech.Bronwen and Tech.Rod appearing in that order randomly is pretty slight. Unfortunatly, we found it so late and by the time we found a camera to take a ...
Read More »
|
By Soul Solutions on
Thursday, 24 August 2006
We got up bright and early and headed off to the exhibition centre. Picked up our Tech.Ed bag, and our ticket for our free shirt. Love the bag, and love the touch of having your name on the shirt.
Opening keynote was really cool. Cultural anthropologist talking about her experience with using beta's on REAL people. She was awesome, and learnt some new words..Digital Immigrant and Digital Native.
Ran into a few people I know, so hello to Phillip, Pagey, Joe, Smiffy, Daniel, Joel, Geoff, Rod, Zac, Frank, Chuck and anyone else i forgot. It's quite a sight to see 2000 of the exact same backpack wandering around.
Mental note for the future...if you're a girl and you forget your in the 4% of the populatation at a conference, it's MUCH harder to double dip on the free stuff...ppl seem to remember ...
Read More »
|
By Soul Solutions on
Thursday, 24 August 2006
We musta picked a good time to fly outta Brisbane (or maybe it was just cause it was a Tuesday) but we made great time to the airport, plane wasn't too crowded and got a cab pretty quick. Got to the hotel, and realised we were in a different class of hotel straight away, when they take your bags outta the cab for you and take them up to your room.
All was fine till we discover that we're in a double instead of a queen so we made the sacrifice and moved to the harbour view room to get a queen, but had to handle the smoking room. So off we went to woolies to get stuff we forgot and some serious room deodoriser. Hotel was very full of people with Tech.Ed bags so we knew we were in the right spot.
|
By Soul Solutions on
Monday, 21 August 2006
We're off to Tech Ed in Sydney tomorrow afternoon, for 3 jam-packed days of information overload. So probably no news from us till next week. Hope to catch up with quite a few people in the next fews days. Looking forward to it. See a few of you there.
|
By Soul Solutions on
Friday, 18 August 2006
Spotted this article in TechNet today. Thought it looked interesting and will have to read it a bit better later. So now I can play with my iPod (code name Darth Pod)
|
By Soul Solutions on
Thursday, 17 August 2006
When i started using the finder in the new generic lists I couldn't find a good e.g of how to write the find function. So here's a cut down version of one that i ended up writing.
First I needed a class that could work out if a supplied item was equal to something in my list e.g.
using System;
using System.Collections.Generic;
using System.Text
namespace SoulSolutions.Test
{
///
/// Provides generic functionality to find an object in collection.
///
public class FindObject
{
private int id;
///
/// Constructor
///
/// The unique identifier for the object.
public FindObject(int id)
{
this.id = id;
}
...
Read More »
|
By Soul Solutions on
Wednesday, 16 August 2006
So I've been using InfoPath as a development tool for a couple of months now. So here's the top 5 things that annoy me about infopath 2003, or that i haven't found an easy answer for.
1. Regeneration of template/sampledata.xml - If you add new nodes into your form xsd file there's no easy way to get them added to your template.xml or your sampledata.xml. The only sure way to ensure they're there is to add them manually which of course if very tedioius.
2. No common rule definiton -if you use the same rule on more than 1 control on the infopath form, you have to create it from scratch (unless you know how to hack the manifest file).
3. No Common Controls - If you use the same combination ...
Read More »
|
By Soul Solutions on
Tuesday, 15 August 2006
There have been many posts recently about how to change the popup styles in Virtual Earth. I'm no designer but these are the pieces that you need.
Read article...
|