Blogs

  • Browse Blogs
  • My Blog
  • My Updates

Tags Help

  • View as cloud  | list

Similar Blogs

photo

Lotus Nut

111 Entries |  Chris Whisonant
Updated 
RatingsRatings 23     CommentsComments 157
photo

TexasSwede

109 Entries |  Karl-Henry Martinsso...
Updated 
No RatingsRatings 0     CommentsComments 94
photo

CrashTestChix

100 Entries |  Marie L Scott
Updated 
RatingsRatings 13     CommentsComments 226
photo

Henning Schmi...

54 Entries |  Henning Schmidt
Updated 
RatingsRatings 1     No CommentsComments 0
photo

Patrick Picar...

62 Entries |  Patrick Picard
Updated 
RatingsRatings 2     CommentsComments 112

Bookmarks

off the Hook - 911s Chief Lotu...

Blog Authors:  Scott Hooks   Scott M Hooks  

Previous |  Main  | Next

One Month of BleedYellow.com Stats

Scott Hooks  |    |  Tags:  bleedyellow  |  Comments (0)

 Sorry for the delay on this - I decided to take one of those vacation things.

 

To be fair though, these stats (thank you Chris) were pulled on 2/20 after just 32 days of existence (and BEFORE the recent Taking Notes podcast about BleedYellow.com and bevy of other recent activity):

 

1,440,419 hits  (around 46,000 hits per day)
263,384 page views (around 8,200 views per day)
13,119 direct hits to the /blogs url

73 blogs with a total of 215 posts and 157 comments - with new blogs being started pretty frequently

1,067 registrations

 

I haven't counted the dogears, communities, or activities, but there has been some significant activity there too.

 

Also interesting to me is that a google.com search of bleedyellow.com returns 5,320 hits (not too shabby).

 

Thank you to all of you who have participated in making this fantastic and still growing community a success. I can't wait to see the next month's stats!

Quick Useful Blackberry Tip

Scott Hooks  |    |  Tags:  tips blackberry  |  Comments (1)

 There are times when I want to include my detailed contact info at the bottom of an email and other times when I don't. In Notes, I can just turn the auto-signature off and use Tools / Insert Signature, but I probably send more than half my email from my Blackberry. So here is the tip:

If you type in sig and then hit the space bar on your blackberry, it will insert the text that you have stored into the Information field of the "Owner" page on your Blackberry (under Options from the main menu).

Got any other useful Blackberry tips? Please share in the comments.

Forum Friday: Collecting User Input with Custom "P...

Scott Hooks  |    |  Tags:  notes development lotus  |  Comments (0)

Declan pitched the idea of Forum Friday's on his blog about picking a question on Notes.net and responding to it with a blog entry. I think this is a great way to get forum readers into the Domino blogging community, so I gave it a shot. I went to notes.net and picked the first entry I saw without a comment: Create Dialog Box Like Mail Address. I'm not sure if this is what Mr. Dressler is looking for, but it occurred to me that newer developers may not realize the power of @DialogBox or notesuiworkspace.DialogBox in LotusScript (and maybe even some guru's don't think of it). Basically, you can design any form you want and use it as a pop up box to collect or modify information on the underlying form (even if the fields on the underlying form are hidden). This is an effective way to move lesser used and/or non-printed data off of the main form to keep it clean, or to implement an interview-style "wizard" to collect user input in steps. The Lotusscript version can be further used to collect information into documents that are not open or even into a temporary document that is used just to get answers to questions, but never saved. Check it out in the Help file and start improving your user interfaces today.

 

Making a dialog box that does what this user requested should be relatively simple:

  1. Create the form with two fields and a hotspot button between them. Tip: Put your form design elements in a table and use the [SIZETOTABLE] to make the best use of screen space
  2. The first field is an editable single-value listbox field with an @DBLookup of the possible choices. Tip: make this a list of key values with the Doc UNID as an alias (e.g., key value | @DocumentUniqueID)
  3. The second field is a single-value computed text field that equals itself (@ThisValue)
  4. The hotspot button sets the second field to the selected value of the first field (since they only want ONE value).
  5. Add a button to the calling form that runs script that calls notesuiworkspace.DialogBox and then copies the document that was selected using whatever method you want, such as.

Dim workspace As New NotesUIWorkspace

Dim session As New NotesSession

Dim db As NotesDatabase, otherDb As Notesdatabase

Set db = session.CurrentDatabase

'Set otherDb

Dim doc As New NotesDocument(db)

Call workspace.DialogBox( "Form", True, True, False, False, False, False, "Title", doc)

If doc.fieldname(0) <> "" Then

'Set your document, for example

Set doc = db.GetDocumentByUNID(doc.fieldname(0))

Call doc.CopyToDatabase( otherDb )

End If

By running it from the main form in this way, the dialog box becomes just a way to temporarily complete the action then throws away the temporary data AND bails out if the user clicks Cancel or no value is selected (because doc.fieldname(0) will equal "").

 

There are of course other variations that would work with things like embedded views, etc. If I understand the stated problem correctly though, I'd probably simplify the approach and just use a view picklist to capture the selected document's UNID then do the copy without adding the complexity of a dialog box with a hotspot button.

 

Regardless, the point is that dialog boxes are a powerful and flexible way to collect user input without junking up a main form.


Previous |  Main  | Next
Skip to main content link. Accesskey S
IBM Lotus Connections Help Tools About

Tags

A tag is a keyword that is used to categorize an entry. To view the entries with a particular tag, click a tag name or enter a tag in the box.
The tag cloud indicates the frequency of tag use. Popular tags appear darkest. The slider control adjusts how many tags are displayed in the tag cloud.