User Riho - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T06:40:15Z http://stackoverflow.com/feeds/user/44715 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1742198/send-call-logs-but-display-nothing/1755215#1755215 0 Answer by Riho for send call logs but display nothing Riho 2009-11-18T10:56:35Z 2009-11-18T10:56:35Z <p>Sad to hear it. Unfortunately nothing more can be said for answer as no details are given</p> http://stackoverflow.com/questions/1485566/microsoft-agent-in-windows-terminals 0 Microsoft Agent in Windows terminals Riho 2009-09-28T05:37:15Z 2009-09-28T05:37:15Z <p>Hi! My (potential) customer is using Windows Server 2003 and students computers are just terminals. My application relies heavily in Microsoft Agent technology and now customer is complaining that the application gives errors about "not supported".</p> <p>I wonder if it would help if MS Agent would be installed into local computers - does it get used when running as terminal? OR is it just not possible at all?</p> <p>My knowledge of servers/terminals is nonexisting, so maybe someone can help me out.</p> http://stackoverflow.com/questions/419670/binary-sms-in-symbian 3 Binary SMS in Symbian Riho 2009-01-07T09:10:50Z 2009-08-26T08:40:29Z <p>I wonder if anyone has managed to create a working code for sending out binary messages (to configure Symbian phones) and have also some binary data sample. So far all the samples I have found fail to leave the Outbox or never return.</p> <pre><code>// Current entry is the Draft folder. iSmsMtm-&gt;SwitchCurrentEntryL( KMsvDraftEntryId ); // Create a new SMS message entry as a child of the current context. iSmsMtm-&gt;CreateMessageL( KUidMsgTypeSMS.iUid ); CMsvEntry&amp; serverEntry = iSmsMtm-&gt;Entry(); TMsvEntry entry( serverEntry.Entry() ); /* Send Binary SMS */ CSmsHeader &amp;hdr = iSmsMtm-&gt;SmsHeader(); CSmsMessage &amp;msg = hdr.Message(); CSmsPDU &amp;pdu = msg.SmsPDU(); CSmsUserData &amp;userdata = pdu.UserData(); // Set the DCS byte pdu.SetBits7To4(TSmsDataCodingScheme::ESmsDCSTextUncompressedWithNoClassInfo); pdu.SetAlphabet(TSmsDataCodingScheme::ESmsAlphabet8Bit); pdu.SetClass(ETrue, TSmsDataCodingScheme::ESmsClass2); char buf[]= {...}; //my binary data, 247 bytes long // Construct a dummy message HBufC8 * iMessage = HBufC8::NewL(300); TPtr8 TempUDHBufDesc((TUint8*)buf,247,247); iMessage-&gt;Des().Copy(TempUDHBufDesc); _LOGFENTRY1(_L("mess length %d"),iMessage-&gt;Des().Length()); userdata.SetBodyL(*iMessage); delete iMessage; // Message will be sent immediately. entry.SetSendingState( KMsvSendStateWaiting ); entry.iDate.UniversalTime(); // insert current time //Solution for HomeTime() // Set the SMS message settings for the message. CSmsHeader&amp; header = iSmsMtm-&gt;SmsHeader(); CSmsSettings* settings = CSmsSettings::NewL(); CleanupStack::PushL( settings ); settings-&gt;CopyL( iSmsMtm-&gt;ServiceSettings() ); // restore settings settings-&gt;SetDelivery( ESmsDeliveryImmediately ); // to be delivered immediately settings-&gt;SetDeliveryReport(EFalse); settings-&gt;SetCharacterSet(TSmsDataCodingScheme::ESmsAlphabet8Bit); // IMPORTANT! For sending binary SMS header.SetSmsSettingsL( *settings ); // new settings // Let's check if there is a service center address. if ( header.Message().ServiceCenterAddress().Length() == 0 ) { // No, there isn't. We assume there is at least one service center // number set and use the default service center number. CSmsSettings* serviceSettings = &amp;( iSmsMtm-&gt;ServiceSettings() ); // Check if number of service center addresses in the list is null. if ( !serviceSettings-&gt;ServiceCenterCount() ) { _LOGENTRY("No SC"); return ; // quit creating the message } else { CSmsNumber* smsCenter= CSmsNumber::NewL(); CleanupStack::PushL(smsCenter); smsCenter-&gt;SetAddressL((serviceSettings-&gt;GetServiceCenter( serviceSettings-&gt;DefaultServiceCenter())).Address()); header.Message().SetServiceCenterAddressL( smsCenter-&gt;Address() ); CleanupStack::PopAndDestroy(smsCenter); } } CleanupStack::PopAndDestroy( settings ); // Recipient number is displayed also as the recipient alias. entry.iDetails.Set( _L("+3725038xxx") ); iSmsMtm-&gt;AddAddresseeL( _L("+3725038xxx") , entry.iDetails ); // Validate message. if ( !ValidateL() ) { _LOGENTRY("Not valid"); return ; } entry.SetVisible( ETrue ); // set message as visible entry.SetInPreparation( EFalse ); // set together with the visibility flag serverEntry.ChangeL( entry ); // commit changes iSmsMtm-&gt;SaveMessageL(); // save message TMsvSelectionOrdering selection; CMsvEntry* parentEntry = CMsvEntry::NewL( iSmsMtm-&gt;Session(), KMsvDraftEntryId, selection ); CleanupStack::PushL( parentEntry ); // Move message to Outbox. iOperation =parentEntry-&gt;MoveL( entry.Id(), KMsvGlobalOutBoxIndexEntryId, iStatus ); CleanupStack::PopAndDestroy( parentEntry ); iState = EWaitingForMoving; SetActive(); </code></pre> <p>Mostly I'm not sure about the correct values for port and class . Also some correct binary string would be nice to have for testing. Now I'm not sure if thecode is bad or the data.</p> http://stackoverflow.com/questions/419670/binary-sms-in-symbian/1333235#1333235 0 Answer by Riho for Binary SMS in Symbian Riho 2009-08-26T08:40:29Z 2009-08-26T08:40:29Z <p>The solution that worked is to use RComm and "DATAPORT::1" to send out the binary SMS using AT commands (like using a modem).</p> http://stackoverflow.com/questions/1265297/invoking-trigger-on-column-update/1265316#1265316 1 Answer by Riho for invoking trigger on column update Riho 2009-08-12T10:07:43Z 2009-08-12T10:07:43Z <p>Your trigger gets invoked on any update, but you can add some checking to process data only when your column has new value.</p> http://stackoverflow.com/questions/475850/converting-utf-8-to-win1252-using-cbulder-5 0 Converting UTF-8 to WIN1252 using C++Bulder 5 Riho 2009-01-24T10:47:42Z 2009-07-14T00:54:42Z <p>I have to import some UTF-8 encoded text-file into my C++Builder 5 program. Are there any components or code samples to accomplish that?</p> http://stackoverflow.com/questions/954376/insert-query-on-same-page-from-which-data-is-transfered/954435#954435 0 Answer by Riho for insert query on same page from which data is transfered Riho 2009-06-05T05:57:08Z 2009-06-05T05:57:08Z <p>Add some variable to your form and then during saving reset it's value.</p> <pre><code>if(isset($_POST['save'])) { //do your saving $save=""; } </code></pre> http://stackoverflow.com/questions/747010/bluetooth-obex-reception-on-3rd-edition-device-fails/755334#755334 1 Answer by Riho for Bluetooth obex reception on 3rd edition device fails Riho 2009-04-16T09:15:19Z 2009-04-16T09:15:19Z <p>At least in Symbian C++ SDK the API of Bluetooth was changed between 2nd to 3rd edition phones. It probably affects also Python.</p> http://stackoverflow.com/questions/648377/merging-tables-in-access/648528#648528 0 Answer by Riho for Merging tables in access Riho 2009-03-15T20:54:07Z 2009-03-15T20:54:07Z <p>does access support unions?</p> <pre><code>select a,b,c from t1 union select d as a, e as b and f as c from t2 </code></pre> http://stackoverflow.com/questions/637580/sql-how-to-select-tablename/637589#637589 3 Answer by Riho for SQL: How to SELECT tablename.* Riho 2009-03-12T06:36:43Z 2009-03-12T06:36:43Z <p>You had field names conflict as both tables have ID field. You must to </p> <pre><code> SELECT table2.ID as t2_id, table1.* FROM table2 LEFT JOIN table1 ON table1.ID = table2.table1ID </code></pre> http://stackoverflow.com/questions/637571/dont-you-think-writing-installer-programs-could-should-have-been-simpler/637585#637585 0 Answer by Riho for Don't you think writing installer programs could/should have been simpler? Riho 2009-03-12T06:35:14Z 2009-03-12T06:35:14Z <p>I use Installshield and if you are not trying to do anything too fancy (I why would you) then it's pretty straighforward - set initial setting, select files, set up shortcuts and create setup.exe.</p> <p>All future updates I handle inside my code - much more convinient to the user</p> http://stackoverflow.com/questions/634241/elegant-database-design-help-mysql-php/634251#634251 5 Answer by Riho for Elegant database design help... (MySQL/PHP) Riho 2009-03-11T12:10:53Z 2009-03-11T12:10:53Z <p>You are in the right track. That's the way to do many-to-many relationships. Database size won't grow much because you use integers and for speed you must set up correct indexes for those IDs. When making SELECt queries check out the EXPLAIN - it helps to find the bottlenecks of speed.</p> http://stackoverflow.com/questions/625286/firebird-determine-if-a-string-is-all-numbers/625363#625363 0 Answer by Riho for Firebird determine if a string is all numbers Riho 2009-03-09T08:19:54Z 2009-03-09T08:19:54Z <p>Create extra column where you store sortable values using your application. Then do sorting based on that column. If you want your numbers to be at the end then insert "ZZZ" (or "ÜÜÜ" or whatever is last character in your language) in front of numbers. Like Format("ZZZ%012d", my_num);</p> http://stackoverflow.com/questions/625344/how-many-bugs-is-too-many/625349#625349 27 Answer by Riho for How many bugs is too many ? Riho 2009-03-09T08:14:17Z 2009-03-09T08:14:17Z <p>One hair in soup is too many and in head too few. It all depends</p> http://stackoverflow.com/questions/618332/c-extended-ascii-characters/618341#618341 0 Answer by Riho for C++ Extended Ascii characters Riho 2009-03-06T10:18:18Z 2009-03-06T10:18:18Z <p>Check the values that they are not negative</p> http://stackoverflow.com/questions/604157/mysql-queries-crawl-when-switching-servers/605775#605775 0 Answer by Riho for mysql queries crawl when switching servers Riho 2009-03-03T09:47:30Z 2009-03-03T09:47:30Z <p>Does test server have only 10 records and production server 1000000000 records? This might also cause different execution times</p> http://stackoverflow.com/questions/445178/multiple-forms/445962#445962 0 Answer by Riho for multiple forms Riho 2009-01-15T07:49:07Z 2009-02-26T03:54:06Z <p>Maybe something like that (this way you can control it):</p> <pre><code>function ava_aken_hp() { // I use blank form with hidden fields to populate it with values from POST. document.blank.action="https://www.mypage.com"; document.blank.elements["CHECK"].value=....; ... document.blank.submit(); } // In your form: &lt;input type="submit" value="Submit1" onclick="ava_aken_hp();"&gt; </code></pre> http://stackoverflow.com/questions/586070/is-it-possible-to-program-for-sony-ericsson-mobile-phonessymbian-using-visual-s/586157#586157 1 Answer by Riho for Is it possible to program for Sony Ericsson mobile phones(symbian) using Visual Studio? Riho 2009-02-25T14:20:08Z 2009-02-25T14:20:08Z <p>Yes you can - using older versions (VC++.NET 2003) and Carbide.vs</p> http://stackoverflow.com/questions/537058/do-you-get-freelance-projects-while-you-have-a-job/565398#565398 1 Answer by Riho for Do you get Freelance projects while you have a job ? Riho 2009-02-19T13:52:40Z 2009-02-19T13:52:40Z <p>I have been doing this for 10 years now. I do my freelancing development at home in the evening and at weekends. 4 hours per day is not a problem - of course I don't have orders throughout the year. </p> <p>Phone and email support I do also during working day, but these are just couple of calls per day or less.</p> <p>I quit from my previous job, because comapny started to make a policy to not allow their workers to freelance. (Maybe I was little bit too obvious, as I have my own software company with e-shop and all, and I even drived to work with car that had my company logos on :)</p> <p>To my current employer I told in advance that I have my own business and that it does not influence my daytime productivity. Luckily he didn't object.</p> http://stackoverflow.com/questions/564540/xml-vs-database-for-application-configuration/564624#564624 0 Answer by Riho for Xml vs. Database for application configuration Riho 2009-02-19T10:09:15Z 2009-02-19T10:09:15Z <p>Config files should be the most easiest things to handle - so put them into files. This way someone can make changes there even with notepad (if necessary). Database is really an overkill, unless you want your configuration reside in some global server and all instances to share it.</p> http://stackoverflow.com/questions/560386/what-is-the-best-msi-generating-install-tool-available/560423#560423 0 Answer by Riho for What is the best MSI generating install tool available? Riho 2009-02-18T09:50:50Z 2009-02-18T09:50:50Z <p>I have been using <a href="http://www.acresso.com/products/is/installshield-overview.htm" rel="nofollow">Installshield</a> almost a decade by now.</p> http://stackoverflow.com/questions/560396/how-to-replace-nested-installations-on-windows-installer/560420#560420 0 Answer by Riho for How to replace nested installations on Windows Installer? Riho 2009-02-18T09:49:24Z 2009-02-18T09:49:24Z <p>What happens if you use Custom Actions (Installshield has those) to execute your installations? And/or instead of .msi create .exe files?</p> http://stackoverflow.com/questions/551507/how-do-i-create-an-s60-app-that-writes-to-idle-active-screen/552407#552407 0 Answer by Riho for How do i create an S60 app that writes to idle/Active screen? Riho 2009-02-16T06:28:29Z 2009-02-16T06:28:29Z <p>Do you mean <a href="http://wiki.forum.nokia.com/index.php/How_to_create_screensaver" rel="nofollow">screensaver</a>? </p> http://stackoverflow.com/questions/528057/wap-push-sms-in-symbian 2 WAP Push SMS in Symbian Riho 2009-02-09T13:03:18Z 2009-02-13T12:11:06Z <p>I have managed to send out (and receive) binary SMSs, but what I want to accomplish is to send Access Point settings or bookmarks or Email settings etc. Currently I'm sending out messages like:</p> <pre><code>//udh=0605040B8423F0 //message=FD0601AE02056A0045C60C037777772E676F6F676C65...000101 //udh iMessage-&gt;Des().Append(0x06); iMessage-&gt;Des().Append(0x05); iMessage-&gt;Des().Append(0x04); iMessage-&gt;Des().Append(0x0B); iMessage-&gt;Des().Append(0x84); iMessage-&gt;Des().Append(0x23); iMessage-&gt;Des().Append(0xF0); iMessage-&gt;Des().Append(0xFD); iMessage-&gt;Des().Append(0x06); </code></pre> <p>But they arrive in the same format and also arrive to the same port as normal SMSs. When I receive AP settings from operator, then it arrives to some different port and is shown correctly.</p> http://stackoverflow.com/questions/528057/wap-push-sms-in-symbian/540360#540360 1 Answer by Riho for WAP Push SMS in Symbian Riho 2009-02-12T07:36:03Z 2009-02-13T11:30:18Z <p>Asked it also from Nokia and verdict was that I can't be done. :(</p> <p>It can be done when phone is used as a modem and commands are sent from the PC. If I could figure out the way how to emulate all that in phone, then it would be cool.</p> http://stackoverflow.com/questions/513229/delphi-control-that-could-mimic-add-onsextension-list-of-firefox/513382#513382 0 Answer by Riho for Delphi control that could mimic "Add-ons|Extension list" of Firefox? Riho 2009-02-04T21:14:50Z 2009-02-04T21:14:50Z <p>Check out <a href="http://www.tmssoftware.com/site/" rel="nofollow">TMS Software</a>. They have plenty of components, some might fit your need.</p> http://stackoverflow.com/questions/510774/maintain-valid-records-in-a-table/511075#511075 0 Answer by Riho for Maintain valid records in a table Riho 2009-02-04T12:06:37Z 2009-02-04T12:06:37Z <p>I assume that each flight has some unique ID, otherwise how can make the difference between them. Then you can add to the schedule thable extra field "Active". When loading in new schedule - query first existing records with the same flight id and set them to Active=false. New record enter with Active=true.</p> <p>Query is then simple: select * from schedule where active=1</p> http://stackoverflow.com/questions/510968/how-to-convert-owl-bp7-application-to-delphi/511054#511054 0 Answer by Riho for How to convert OWL/BP7 application to Delphi? Riho 2009-02-04T12:00:05Z 2009-02-04T12:00:05Z <p>Long-long time ago when I swapped OWL to VCL (in C++) it was just easier to write everything from scratch. There might be some code parts that don't deal with user interface and string manipulations, but otherwise it's totaly different.</p> <p>In fact one of my biggest app is still in OWL, because I just don't bother to rewrite it. As long as it works, let it be.</p> http://stackoverflow.com/questions/507878/delphi-form-creation-without-freezing-main-thread/509086#509086 0 Answer by Riho for Delphi form creation without freezing main thread Riho 2009-02-03T21:59:23Z 2009-02-03T21:59:23Z <p>I can't imagine what would take so long in form creation that would need threads to resolve. If it is huge amount of data then try to limit the amount shown initially. </p> http://stackoverflow.com/questions/503292/how-to-avoid-duplicate-registrations-in-mysql 0 How to avoid duplicate registrations in MySQL Riho 2009-02-02T14:02:34Z 2009-02-03T09:20:32Z <p>I wonder if it is possible to restrain users to insert duplicate registration records. For example some team is registered from 5.1.2009 - 31.12.2009. Then someone registers the same team for 5.2.2009 - 31.12.2009. Usually the end_date is not an issue, but start_date should not be between existing records start and end date</p> <pre><code>CREATE TABLE IF NOT EXISTS `ejl_team_registration` ( `id` int(11) NOT NULL auto_increment, `team_id` int(11) NOT NULL, `league_id` smallint(6) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, PRIMARY KEY (`team_id`,`league_id`,`start_date`), UNIQUE KEY `id` (`id`) ); </code></pre> http://stackoverflow.com/questions/1485566/microsoft-agent-in-windows-terminals Comment by Riho on Microsoft Agent in Windows terminals Riho 2009-10-05T11:17:06Z 2009-10-05T11:17:06Z Actually that's exactly what I'm talking about. I made a educational software that uses Peedy, Robby etc. to interact with kids. About terminal type I'm not too sure. I think it's more like web-browser type. VT100 sounds too much like text-only stuff http://stackoverflow.com/questions/1415888/symbian-os-s60-platform/1417562#1417562 Comment by Riho on Symbian OS S60 Platform Riho 2009-09-28T05:51:28Z 2009-09-28T05:51:28Z THere still exist cases when compatibility is broken between 3rd and FP1 or FP2 devices. SyncML and Bluetooth settings are some things that comes to my mind. http://stackoverflow.com/questions/747010/bluetooth-obex-reception-on-3rd-edition-device-fails/755334#755334 Comment by Riho on Bluetooth obex reception on 3rd edition device fails Riho 2009-04-17T06:14:05Z 2009-04-17T06:14:05Z Can't say anything about Python, I work in C++ http://stackoverflow.com/questions/637571/dont-you-think-writing-installer-programs-could-should-have-been-simpler/637585#637585 Comment by Riho on Don't you think writing installer programs could/should have been simpler? Riho 2009-03-13T06:43:05Z 2009-03-13T06:43:05Z I use Delphi 3rd party update components - it downloads the new files from internet then executes updating process (replaces old files with new) and then restarts program. http://stackoverflow.com/questions/637580/sql-how-to-select-tablename/637589#637589 Comment by Riho on SQL: How to SELECT tablename.* Riho 2009-03-12T09:00:22Z 2009-03-12T09:00:22Z It was not said how it failed http://stackoverflow.com/questions/629260/access-to-folders-in-vista/629291#629291 Comment by Riho on Access to folders in Vista Riho 2009-03-10T10:19:14Z 2009-03-10T10:19:14Z UAC is mainly about writing into protected places. That I have taken care of. But why can't users access their image files (for reading)? Unless they have misreporting to me http://stackoverflow.com/questions/629260/access-to-folders-in-vista/629292#629292 Comment by Riho on Access to folders in Vista Riho 2009-03-10T08:58:29Z 2009-03-10T08:58:29Z My application data sits allready in Application Datqa folder. The problem is in users inability to select images wherever he stores them in his computer http://stackoverflow.com/questions/629260/access-to-folders-in-vista Comment by Riho on Access to folders in Vista Riho 2009-03-10T08:56:29Z 2009-03-10T08:56:29Z They cant select files http://stackoverflow.com/questions/615766/how-many-people-have-abused-your-with-source-purchase-option/615784#615784 Comment by Riho on How many people have abused your 'with source' purchase option? Riho 2009-03-06T10:17:30Z 2009-03-06T10:17:30Z For bigger and more complex suites the open-source is either not available or too buggy and may drop out of use in next Delphi version (for whatever reasons) http://stackoverflow.com/questions/528057/wap-push-sms-in-symbian/545696#545696 Comment by Riho on WAP Push SMS in Symbian Riho 2009-02-16T06:20:51Z 2009-02-16T06:20:51Z The prots are declared in the header - udh=0605040B8423F0 http://stackoverflow.com/questions/528057/wap-push-sms-in-symbian/540845#540845 Comment by Riho on WAP Push SMS in Symbian Riho 2009-02-13T11:28:54Z 2009-02-13T11:28:54Z That's the point - there is no application on phone. I want to create new access point, so he can download my application (in case the phone doesn't have any AP yet.) http://stackoverflow.com/questions/528057/wap-push-sms-in-symbian Comment by Riho on WAP Push SMS in Symbian Riho 2009-02-12T07:35:31Z 2009-02-12T07:35:31Z Ports are defined in UDH header. But as I got response from Nokia - it' can't be done this way. http://stackoverflow.com/questions/419670/binary-sms-in-symbian/420149#420149 Comment by Riho on Binary SMS in Symbian Riho 2009-02-09T12:08:34Z 2009-02-09T12:08:34Z Well, the binary messages go out, but they also arrive in the same way. What I expect is to see some message that is used to set Bookmark or something. http://stackoverflow.com/questions/506164/which-format-of-primary-key-would-you-use-in-this-situation/506196#506196 Comment by Riho on Which format of primary key would you use in this situation. Riho 2009-02-03T11:30:14Z 2009-02-03T11:30:14Z Thanks to everybody who helped me to earn my badge :) Drinks are on me http://stackoverflow.com/questions/503292/how-to-avoid-duplicate-registrations-in-mysql/503301#503301 Comment by Riho on How to avoid duplicate registrations in MySQL Riho 2009-02-02T14:07:06Z 2009-02-02T14:07:06Z Though so... Hoped to get away with easier solution :)