smart

Reference to a FOSS project building desktop Google Docs client

Hi, I'm excited about desktop Google Docs client. I found a project using Adobe AIR which imitates Mozilla Prism. That didn't impress me at all. Do you have any pointer to a FOSS project building desktop Google Docs client? If there are none, if you were to build, how would you do? ...

Smart Phone ! Iphone | Reading the device phone number HTTP etc

Does anyone know if one of these devices connect to the web whether their phone number can be read from a header or some other means? ...

How do I check in bash if a process (or one of its children) is actually doing something (CPU/IO)?

Actually, I would like to have some kind of progress bar. I would like for the user to be able to recognize when the process "hangs". Usually I will use it to show the progress of ./configure and make calls. ADDENDUM: I need progress that makes no use of external tools. (no bar) /proc/pid/stat is ok, but doesn't solve the problem abou...

PHP - smart, error tolerating string comparison

Hello, I'm looking either for routine or way to look for error tolerating string comparison. Let's say, we have test string Čakánka - yes, it contains CE characters. Now, I want to accept any of following strings as OK: cakanka cákanká ČaKaNKA CAKANKA CAAKNKA CKAANKA cakakNa The problem is, that I often switch letters in word, and...

C# Smart Device Input Panel hiding Controls

Hi, I have a SmartDevice application (C# .net 3.5) that using a scrolling panel (AutoScroll property is set to true) that shows a vertical scroll bar. When a user taps into a textbox the on focus event calls the Input Panel and resizes the scrolling panel. The problem is that the textbox may be hidden by the Input Panel. Is there a w...

Acces the SIM Card with an Android Application?

I wonder if it's possible to access to the SIM card with an Android Application ...

How to remove smart pointers from a cache when there are no more references?

Hi, I've been trying to use smart pointers to upgrade an existing app, and I'm trying to overcome a puzzle. In my app I have a cache of objects, for example lets call them books. Now this cache of books are requested by ID and if they're in the cache they are returned, if not the object is requested from an external system (slow operati...

Smart pointers and polymorphism

hello. I implemented reference counting pointers (called SP in the example) and im having problems with polymorphism which i think i shouldn't have. In the following code: SP<BaseClass> foo() { // Some logic... SP<DerivedClass> retPtr = new DerivedClass(); return retPtr; } DerivedClass inherits f...

Does smart card in the reader corresponds to certificate, c#

I have certificate imported from smart card into my certificate store I would like to check (c# code) whether certificate is active i.e. does the smart card in the reader corresponds to my certificate ...

Testing smart card minidriver

when testing smart card minidriver in windows 7, got the following errors: "cmck exec Reconnect" always show that Testing through CAPI calls Submitting CSP PIN for reader \.\DMWZ ESAFE 0\ CryptAcquireContext - CRYPT_NEWKEYSET CryptGenKey Reconnecting CryptAcquireContext - CRYPT_DELETEKEYSET CryptAcquireContext failed unexpectedly d:\5...

pkcs#11 capable Smart Card and Reader

Does anyone have a suggestion about which smart cards and USB readers are affordable, suitable for a VPN and for which there is PKCS#11 supoprt? ...

Is MVP pattern best way for every winforms app?

HI, i would like develop application about storing some information about books, i would like use MVP pattern - but i have some doubts if this pattern is always best practise for developing small/mid winform apps or maybe is not necessary? ps. I would like use Smart Client Factory from Microsoft, is there any framework for MVP in winfo...

is there any kind of unique object that can differentiate smart cards from each other

I need to know if there any kind of unique object that i can use to differentiate between smart cards for example if i have 1000 smart cards and i need to differentiate between them without pre-write any values on them is there any default unique value which is a factory default built-in value like the mac address for the network cards ...

Smart XLS examples?

I want to use the Smart XLS library for dealing with excel files in C# (particularly because it can generate charts, and it's price is significantly lower than Aspose Cells), but I can't find any good examples for it. I just want to know how to create and modify charts, any guidance? ...

Smart Pointer Implementation in C

Possible Duplicate: Smart pointers/safe memory management for C? I have an embedded application where I am allocating an object in dynamic memory and passing it around to other modules. I would like to create a smart pointer to this object. There are many examples in C++ for using and implementing smart pointers. I am l...

Smart client Winform vs MVVM + Prism

Hi, I am new to desktop applications, so please bare with me if this sounds very basic question. The question is, is Windows forms Simart Client is a legacy thing now? and to be replaced by Prism (and/or MVVM)? Should I bother to learn about Smart Client? Another question which might be related to is that what are the performance diffe...

Windows C/C++ Drive Init/Partition/Format

Hi, I am trying to build an application for Windows XP 64bit which is able to detect drives of a particular model in the system, and if they are not initialized & formatted perform these processes. I would also like to be able to query and set the partition information(including the volume label). I have started putting together code ...

Library function returns raw pointer and I want to use smart pointer

I have this situation where the library I use has many functions that return raw pointers to objects, how could I now use boost smart pointers in my program using this library and using smart pointers? The library is xerces-C++ and an example is getting the document iterator: boost::shared_ptr<DOMNodeIterator> itera = document->createN...