User Riho - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T06:40:15Zhttp://stackoverflow.com/feeds/user/44715http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1742198/send-call-logs-but-display-nothing/1755215#17552150Answer by Riho for send call logs but display nothingRiho2009-11-18T10:56:35Z2009-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-terminals0Microsoft Agent in Windows terminalsRiho2009-09-28T05:37:15Z2009-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-symbian3Binary SMS in SymbianRiho2009-01-07T09:10:50Z2009-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->SwitchCurrentEntryL( KMsvDraftEntryId );
// Create a new SMS message entry as a child of the current context.
iSmsMtm->CreateMessageL( KUidMsgTypeSMS.iUid );
CMsvEntry& serverEntry = iSmsMtm->Entry();
TMsvEntry entry( serverEntry.Entry() );
/* Send Binary SMS */
CSmsHeader &hdr = iSmsMtm->SmsHeader();
CSmsMessage &msg = hdr.Message();
CSmsPDU &pdu = msg.SmsPDU();
CSmsUserData &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->Des().Copy(TempUDHBufDesc);
_LOGFENTRY1(_L("mess length %d"),iMessage->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& header = iSmsMtm->SmsHeader();
CSmsSettings* settings = CSmsSettings::NewL();
CleanupStack::PushL( settings );
settings->CopyL( iSmsMtm->ServiceSettings() ); // restore settings
settings->SetDelivery( ESmsDeliveryImmediately ); // to be delivered immediately
settings->SetDeliveryReport(EFalse);
settings->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 = &( iSmsMtm->ServiceSettings() );
// Check if number of service center addresses in the list is null.
if ( !serviceSettings->ServiceCenterCount() )
{ _LOGENTRY("No SC");
return ; // quit creating the message
}
else
{
CSmsNumber* smsCenter= CSmsNumber::NewL();
CleanupStack::PushL(smsCenter);
smsCenter->SetAddressL((serviceSettings->GetServiceCenter( serviceSettings->DefaultServiceCenter())).Address());
header.Message().SetServiceCenterAddressL( smsCenter->Address() );
CleanupStack::PopAndDestroy(smsCenter);
}
}
CleanupStack::PopAndDestroy( settings );
// Recipient number is displayed also as the recipient alias.
entry.iDetails.Set( _L("+3725038xxx") );
iSmsMtm->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->SaveMessageL(); // save message
TMsvSelectionOrdering selection;
CMsvEntry* parentEntry = CMsvEntry::NewL( iSmsMtm->Session(), KMsvDraftEntryId, selection );
CleanupStack::PushL( parentEntry );
// Move message to Outbox.
iOperation =parentEntry->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#13332350Answer by Riho for Binary SMS in SymbianRiho2009-08-26T08:40:29Z2009-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#12653161Answer by Riho for invoking trigger on column updateRiho2009-08-12T10:07:43Z2009-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-50Converting UTF-8 to WIN1252 using C++Bulder 5Riho2009-01-24T10:47:42Z2009-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#9544350Answer by Riho for insert query on same page from which data is transferedRiho2009-06-05T05:57:08Z2009-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#7553341Answer by Riho for Bluetooth obex reception on 3rd edition device failsRiho2009-04-16T09:15:19Z2009-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#6485280Answer by Riho for Merging tables in accessRiho2009-03-15T20:54:07Z2009-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#6375893Answer by Riho for SQL: How to SELECT tablename.*Riho2009-03-12T06:36:43Z2009-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#6375850Answer by Riho for Don't you think writing installer programs could/should have been simpler?Riho2009-03-12T06:35:14Z2009-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#6342515Answer by Riho for Elegant database design help... (MySQL/PHP)Riho2009-03-11T12:10:53Z2009-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#6253630Answer by Riho for Firebird determine if a string is all numbersRiho2009-03-09T08:19:54Z2009-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#62534927Answer by Riho for How many bugs is too many ?Riho2009-03-09T08:14:17Z2009-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#6183410Answer by Riho for C++ Extended Ascii charactersRiho2009-03-06T10:18:18Z2009-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#6057750Answer by Riho for mysql queries crawl when switching serversRiho2009-03-03T09:47:30Z2009-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#4459620Answer by Riho for multiple formsRiho2009-01-15T07:49:07Z2009-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:
<input type="submit" value="Submit1" onclick="ava_aken_hp();">
</code></pre>
http://stackoverflow.com/questions/586070/is-it-possible-to-program-for-sony-ericsson-mobile-phonessymbian-using-visual-s/586157#5861571Answer by Riho for Is it possible to program for Sony Ericsson mobile phones(symbian) using Visual Studio?Riho2009-02-25T14:20:08Z2009-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#5653981Answer by Riho for Do you get Freelance projects while you have a job ?Riho2009-02-19T13:52:40Z2009-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#5646240Answer by Riho for Xml vs. Database for application configurationRiho2009-02-19T10:09:15Z2009-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#5604230Answer by Riho for What is the best MSI generating install tool available?Riho2009-02-18T09:50:50Z2009-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#5604200Answer by Riho for How to replace nested installations on Windows Installer?Riho2009-02-18T09:49:24Z2009-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#5524070Answer by Riho for How do i create an S60 app that writes to idle/Active screen?Riho2009-02-16T06:28:29Z2009-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-symbian2WAP Push SMS in SymbianRiho2009-02-09T13:03:18Z2009-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->Des().Append(0x06);
iMessage->Des().Append(0x05);
iMessage->Des().Append(0x04);
iMessage->Des().Append(0x0B);
iMessage->Des().Append(0x84);
iMessage->Des().Append(0x23);
iMessage->Des().Append(0xF0);
iMessage->Des().Append(0xFD);
iMessage->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#5403601Answer by Riho for WAP Push SMS in SymbianRiho2009-02-12T07:36:03Z2009-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#5133820Answer by Riho for Delphi control that could mimic "Add-ons|Extension list" of Firefox?Riho2009-02-04T21:14:50Z2009-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#5110750Answer by Riho for Maintain valid records in a tableRiho2009-02-04T12:06:37Z2009-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#5110540Answer by Riho for How to convert OWL/BP7 application to Delphi?Riho2009-02-04T12:00:05Z2009-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#5090860Answer by Riho for Delphi form creation without freezing main threadRiho2009-02-03T21:59:23Z2009-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-mysql0How to avoid duplicate registrations in MySQLRiho2009-02-02T14:02:34Z2009-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-terminalsComment by Riho on Microsoft Agent in Windows terminalsRiho2009-10-05T11:17:06Z2009-10-05T11:17:06ZActually 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 stuffhttp://stackoverflow.com/questions/1415888/symbian-os-s60-platform/1417562#1417562Comment by Riho on Symbian OS S60 PlatformRiho2009-09-28T05:51:28Z2009-09-28T05:51:28ZTHere 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#755334Comment by Riho on Bluetooth obex reception on 3rd edition device failsRiho2009-04-17T06:14:05Z2009-04-17T06:14:05ZCan'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#637585Comment by Riho on Don't you think writing installer programs could/should have been simpler?Riho2009-03-13T06:43:05Z2009-03-13T06:43:05ZI 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#637589Comment by Riho on SQL: How to SELECT tablename.*Riho2009-03-12T09:00:22Z2009-03-12T09:00:22ZIt was not said how it failedhttp://stackoverflow.com/questions/629260/access-to-folders-in-vista/629291#629291Comment by Riho on Access to folders in VistaRiho2009-03-10T10:19:14Z2009-03-10T10:19:14ZUAC 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#629292Comment by Riho on Access to folders in VistaRiho2009-03-10T08:58:29Z2009-03-10T08:58:29ZMy application data sits allready in Application Datqa folder. The problem is in users inability to select images wherever he stores them in his computerhttp://stackoverflow.com/questions/629260/access-to-folders-in-vistaComment by Riho on Access to folders in VistaRiho2009-03-10T08:56:29Z2009-03-10T08:56:29ZThey cant select fileshttp://stackoverflow.com/questions/615766/how-many-people-have-abused-your-with-source-purchase-option/615784#615784Comment by Riho on How many people have abused your 'with source' purchase option?Riho2009-03-06T10:17:30Z2009-03-06T10:17:30ZFor 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#545696Comment by Riho on WAP Push SMS in SymbianRiho2009-02-16T06:20:51Z2009-02-16T06:20:51ZThe prots are declared in the header - udh=0605040B8423F0http://stackoverflow.com/questions/528057/wap-push-sms-in-symbian/540845#540845Comment by Riho on WAP Push SMS in SymbianRiho2009-02-13T11:28:54Z2009-02-13T11:28:54ZThat'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-symbianComment by Riho on WAP Push SMS in SymbianRiho2009-02-12T07:35:31Z2009-02-12T07:35:31ZPorts 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#420149Comment by Riho on Binary SMS in SymbianRiho2009-02-09T12:08:34Z2009-02-09T12:08:34ZWell, 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#506196Comment by Riho on Which format of primary key would you use in this situation.Riho2009-02-03T11:30:14Z2009-02-03T11:30:14ZThanks to everybody who helped me to earn my badge :)
Drinks are on mehttp://stackoverflow.com/questions/503292/how-to-avoid-duplicate-registrations-in-mysql/503301#503301Comment by Riho on How to avoid duplicate registrations in MySQLRiho2009-02-02T14:07:06Z2009-02-02T14:07:06ZThough so... Hoped to get away with easier solution :)