Tablet PC Buzz http://www.tabletpcbuzz.com/Your premier source for Tablet PC news and informationen-usSpencer Goad (spg@tabletpcbuzz.com)Tue, 05 Aug 2024 13:00:00 GMTTue, 05 Aug 2024 13:00:00 GMThttp://www.tabletpcbuzz.com/images/buttons/tabletpcbuzz_88x31_still.gifTablet PC Buzzhttp://www.tabletpcbuzz.com/8831Your preimer source for Tablet PC news and informationJournal and Adobe Command Line OptionsI have written a little piece of software that allows my to index the information in the files on my computer. To put it briefly, you associate a file with a given piece of information and place it in a heierarchical tree of your own layout. Once the tree is created, you can select a piece of information and tell the program to open the file, at which point it "executes" the file, letting the Shell find the associated program.<BR/><BR/>The problem is that my class notes can be over 100 pages long, so it would be nice to be able to associate a page with a given piece of information's file, at least for file types that interest me like PDF and journal files.<BR/><BR/>In order to do this, I need to know the command-line switches for Journal and Adobe, in the very least, and if they have an "open to page" option. I have scoured Google's view of the net and found nothing except one bit for Adobe that required a subscription, so any help would be much appreciated.http://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=21956SoftWire for Tablet PC is now FREE!Details in my blog: <a href="http://www.dochogan.com/index.php?itemid=19" target="_blank">http://www.dochogan.com/index.php?itemid=19</a><BR/><BR/>Apologies for the method of posting...I'm still learning my wway around blogging :-S If anyone wants to give me pointers...<BR/><BR/>Anyway, SoftWIRE is a *visual* development system, integrated into the VS.NET IDE. It really is a *great* colement to the TabletPC, and should make development *on* the TPC magnitudes easier by reducing the amount of text-input to a bare minimum. The SoftWIRE will, after you design the entire framework and logic of your app <b>graphically</b>, create the majority of your code by building the *entire* framework from your visual layout. Think of an application-specific Visio, combined with, say, ElectronicWorkbench's simulation, PropellerHead Reason's logical cable patches, or DarkTreeTextures' procedural graphics (or Alias Maya's HyperShade).<BR/><BR/>this should ROCK in TPC dev!<BR/><BR/>http://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=21883slow input panel response timeHey, folks. <BR/>This is actually a dev-ish question, not a user-ish question. ;-)<BR/><BR/>I'm curious, does anyone know or have some theories why the docked-mode input panel is so slow to open? (I assume other people have experienced this? My M275 convertible was like this from day one.) It strikes me as an incredibly bad place to have a long lag, as it makes the docked version of input panel (and its "convenient" open gesture) all but useless, especially for a convertible, unless you want to keep it open all the time.<BR/><BR/>I have two theories, myself. Excessive use of managed code is one possibility, although I sort of doubt it since as some of the input panel stuff is always running in the background, it shouldn't take that long to initialize. More likely, I suspect that synchronously resizing all open windows and the desktop is the culprit. Every application needs to be resized, even ones that have been quiescent for quite some time and been swapped out to disk -- hence all the disk activity. It seems like MS oughta be able to fix that by deferring resize requests except for the active window, or something like that. (Although, as independent devs, we probably like the inadequacy because it makes room for our accessory tools! ;) Although, it hurts the platform in general, which is not good for us either.)<BR/><BR/>I suspect much of the demand for alternative input tools like Inkable Keys and floating panels like my little MiniScroller experiment is due to this slowness. If you could just pop up an input panel, do what you wanted, and get rid of it quickly, you wouldn't need supplementary input panels that didn't share its sluggishness. <BR/><BR/>What are your thoughts?<BR/>--Micah<BR/>http://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=21870ActiveX control doesn't work...Hi,<BR/><BR/>I got a java web application which has a embedded activex control - when calling the page from localhost the activex control works perfectly. On the other side, when calling the page from another host within our network the activex control doesn't work (there is just the small square that indicates an activex control).<BR/><BR/>Any help would be greatly appreciated<BR/><BR/>- Stephanhttp://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=21854Any tablet-geared dev software?I just recently got my great TC1000 (from here! :)) and I'm enjoying it immensely. However, I was wondering if anyone knows of any good tablet-centric IDEs, able for use without a keyboard? I'm picturing some kind of merge between Visio-like software and actually filling in the code through whatever means (keyboard, hand-written).http://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=21585Problems running first example...Hi,<BR/><BR/>I'm using Microsoft Tablet PC Platform SDK 1.7 and Win XP. I'd like to use an activex control within my webapp (Java Webapp, JSP, Tomcat).<BR/><BR/>Here is the code I put in my JavaServer Page:<BR/><BR/><hr noshade size="1"><BR/><i><BR/><%@page contentType="text/html"%><BR/><%@page pageEncoding="UTF-8"%><BR/><BR/><script language="JavaScript" type="text/javascript"><BR/> <!--<BR/> // helper function that extracts the blog data from the<BR/> // form and posts the result to the server<BR/> function addInk(form) {<BR/> // extract the blog's body data as ink and text<BR/> form.bodyText.value = inkTest.TextData;<BR/> form.bodyInkData.value = inkTest.InkData;<BR/> <BR/> form.submit();<BR/> }<BR/> <BR/> // helper function that releases resources held by the<BR/> // ink control<BR/> function onUnload() {<BR/> inkTest.DisposeResources();<BR/> }<BR/> //--><BR/></script><BR/><BR/><html><BR/> <head><BR/> <title>Signatur-Demo</title><BR/> </head><BR/> <body onunload="javascript:onUnload();"><BR/> <h1>Signatur-Demo</h1><BR/> <object id="inkTest" classid="InkBlogControls.dll#InkBlog.InkArea"<BR/> width="400" height="296"><BR/> Sorry, your browser doesn't seem to support controls.<BR/> </object><BR/> <br/><BR/> <p><BR/> <button id="addButton" type=button onclick="javascript:addInk(document.signForm);"><BR/> Add Ink<BR/> </button><BR/> </p><BR/> <form name="signForm" action="<%= request.getContextPath() %>/Controller" method=post><BR/> <input type="hidden" name="bodyText" id="bodyText"><BR/> <input type="hidden" name="bodyInkData" id="bodyInkData"><BR/> </form><BR/> </body><BR/></html><BR/></i><BR/><hr noshade size="1"><BR/><BR/>When running the example in IE 6.0 the page is displayed - but the activex control doesn't seem to work.<BR/><BR/>Can anyone give me a hint or solution on how to use an activex control (ink) within my java web application (JSP)?<BR/><BR/>Best regards,<BR/><BR/>- Stephanhttp://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=21813dev ideas & adviceHey, people, I've got an idea for a very cool & useful drawing tool or plugin. I have some development experience, & may try to start coding for tablets, but would like to discuss:<BR/><BR/>May I assume that an incidence of ink writing can be interpreted as a series of XY points? And that standard algorithms exist for converting these points into a vector-based element? If these methods are readily available, I could probably wire this together with just a few lines of code, yet would still have some ramping up to do.<BR/><BR/>Might anyone here be interested in co-developing a potentially marketable tool plugin? With some additional features, it might even work as a standalone application.<BR/><BR/>BF[pirate]http://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=21688How did you get started devleping for tablet pc?Imagine you're going back in time to when you first decided to learn how to program for the tablet pc platform (or were told to learn how <g>).<BR/><BR/>If you had to give yourself advice on how to get started, what would you say? What books/tutorials/methods/forums/etc would you reccomend to your ignorant, naive, innocent self?<BR/><BR/>Better yet, pretend I am that younger version of yourself. Heck, you don't even have to pretend.<BR/><BR/>So, share your beginner advice, tips, and tricks. Thanks :Dhttp://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=21596Anyone tried InfiNotes yet?Have you guys tried the new InfiNotes ink controls? <a href="http://www.infinotes.com" target="_blank">http://www.infinotes.com</a> <BR/>They should cut out a substantial part of your development if you want notes in your application.<BR/><BR/>Check it out and let us know what you think.<BR/>http://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=17428Opinions on HID tablets?I'm thinking about experimenting with the Tablet PC SDK. I have a few ideas, but don't have a Tablet PC. I was wondering whether it would make sense to start with a HID tablet attached to my laptop? Any opinions would be appreciated.<BR/><BR/>doug<BR/>http://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=21306