Saturday, April 24, 2004

The Secret of Spuggy Holes

"It's just not fair!" said George. "I passed that Java Exam in 1997 and it's just beastly there is no upgrade, it means I have to do the horrid thing again". "Oh shush George, you sour puss" scolded Jack. "Come on everyone, let's make our beds in the heather and wash the supper things tomorrow."

So they spread the rugs out in the soft heather and lay down just as they were in their clothes - and in two seconds they were all fast asleep on the secret island, lost in happy dreams of all they were going to do the next day!

Thursday, April 22, 2004

Importing Design Elements, it's the new black

Today I have been importing design elements via dxl. I exported some design elements from designer to separate dxl files and imported them with the function below. It appears quite good. Not really good tho, y'know like sexual intercourse or free beer.

Function importDesignFile(dbCopy As NotesDatabase, designFileName As String)

Dim session As New notesSession
Dim stream As NotesStream
Set stream = session.CreateStream
If Not stream.Open(designFileName) Then
Messagebox "Cannot open " & designFileName,, "Error"
Exit Function
End If
If stream.Bytes = 0 Then
Messagebox "File did not exist or was empty",, designFileName
Exit Function
End If


REM Import DXL into new database
Dim importer As NotesDXLImporter
Set importer = session.CreateDXLImporter(stream, dbCopy)
importer.ReplicaRequiredForReplaceOrUpdate = False
importer.DesignImportOption = DXLIMPORTOPTION_REPLACE_ELSE_CREATE
Call importer.Process

End Function


GMAIL

As a blogger user I got a Gmail account. Wow. Wonder what to do now?

Tuesday, April 20, 2004

I am not a number I am a free man!

Oh yeah? Who are you kiddin' monkey-boy? Back on Lotusscript Island with no means of a escape!

This page is powered by Blogger. Isn't yours?