User Irfan Mulic - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T23:41:01Zhttp://stackoverflow.com/feeds/user/27016http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/907265/highlighting-effect-to-text-and-or-image-similar-to-be-synchronized-with-audio0Highlighting effect to text and/or image similar to be synchronized with audioIrfan Mulic2009-05-25T16:08:17Z2009-10-21T20:00:02Z
<p>I am looking how to approach following problem:</p>
<p>We have application that displays text with audio recorded material. We use Browser Control (Internet Explorer) in Delphi App to do this. We respond to events in Delphi code setting innerHTML for elements if we have to update the style ...</p>
<p>Now, request is to add option to dynamically move the cursor or dynamically highlight the words spoken from the paragraph. It doesn't need to match absolutely the exact word spoken so we will have to dynamically update the content of position of highlighted word based on some timer or something (because it is not text to speach).</p>
<p>What should be the most practical and easy approach to this kind of problem, all answers are greatly appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/730143/delphi-2009-search-skipping-diacritics-in-unicode-utf-82Delphi 2009: Search skipping diacritics in unicode utf-8Irfan Mulic2009-04-08T13:57:20Z2009-05-28T15:52:37Z
<p>I am having utf-8 encoded file containing arabic text and I have to search it.</p>
<p>My problem are diacritics, how to search skipping them?</p>
<p>Like if you load that text in Internet Explorer (converting text in HTML ofcourse ), IE is skipping those diacritics?</p>
<p>Any help?</p>
<p><strong>Edit1</strong>: Search is simply performed by following code:</p>
<pre><code> var m1 : TMemo; //contains utf-8 data)
m2 : TMemo; // contains results
...
m2.lines.BeginUpdate;
for s in m1.Lines do
begin
if pos(eSearch.Text,s)>0 then
begin
m2.Lines.Add(s);
end;
end;
m2.Lines.EndUpdate;
</code></pre>
<p><strong>Edit2</strong>: Example of unicode data:</p>
<p>قُلْ هُوَ اللَّهُ أَحَدٌ
If you search only letters without diacritics قل the word قُلْ wont be found.</p>
http://stackoverflow.com/questions/877716/data-integration-between-oracle-and-external-application/879107#879107-1Answer by Irfan Mulic for Data Integration between Oracle and External Application ? Irfan Mulic2009-05-18T18:24:59Z2009-05-18T18:24:59Z<p>If the data model is simply enough (HR stuff should be) then I would go with option to connect to Oracle Schema and consume the data.</p>
http://stackoverflow.com/questions/874768/reference-sheets7Reference sheetsIrfan Mulic2009-05-17T14:50:45Z2009-05-17T15:52:10Z
<p>I needed sheets for quick references particular language syntax.</p>
<p>I have found <a href="http://www.digilife.be/quickreferences/quickrefs.htm" rel="nofollow">this</a> that might help</p>
<p>Any other suggestions?</p>
http://stackoverflow.com/questions/860378/using-semicolons-in-oracle-sql-statements/861970#8619701Answer by Irfan Mulic for Using Semicolons in Oracle SQL StatementsIrfan Mulic2009-05-14T07:15:29Z2009-05-14T07:15:29Z<p>I am comming from 5+ years MS SQL Experience and 4+ years of Oracle Development.
I know you will hate lot ORACLE features specially in SQL ;) but take it easy ORACLE is really powerfull DBMS. Eventough from lot of perspectives I prefer MSSQL over ORACLE but that's different topic. </p>
<p>As for your issue : </p>
<p>Semicolon is just a statement separator. </p>
<p>SQL developer is using java and OCI so you might have different issues ( I am just gessing something can be wrong).</p>
<p>If you feal something is not running right I advice you to get that query and run it in SQLPLUS instead of Visual Query Tools because it will give you the right feeling.</p>
<p>Good luck with Oracle Development.</p>
<p>Visit <a href="http://www.orafaq.com/wiki/SQL%2APlus%5FFAQ" rel="nofollow">this</a>: </p>
http://stackoverflow.com/questions/860516/oracle-dynamic-column-name-in-select-statement/861927#8619270Answer by Irfan Mulic for Oracle - dynamic column name in select statementIrfan Mulic2009-05-14T07:03:10Z2009-05-14T07:03:10Z<p>You will need something similar to this: </p>
<pre><code>select 'select ' || CASE WHEN YEAR<1950 THEN 'OLDYEAR' ELSE 'NEWYEAR' END || ' FROM TABLE 1' from TABLE_WITH_DATA
</code></pre>
http://stackoverflow.com/questions/847157/qt-having-problems-responding-on-qwebviewlinkclickedqurl-slot-signal-issue1QT: having problems responding on QWebView::linkClicked(QUrl) - slot signal issueIrfan Mulic2009-05-11T08:09:54Z2009-05-11T10:43:39Z
<p>I am preaty new with QT.</p>
<p>I want to respond to linkClicked in QWebView...</p>
<p>I tried connect like this: </p>
<pre><code>QObject::connect(ui->webView,SIGNAL(linkClicked(QUrl)),MainWindow,SLOT(linkClicked(QUrl)));
</code></pre>
<p>But I was getting error: C:/Documents and Settings/irfan/My Documents/browser1/mainwindow.cpp:9: error: expected primary-expression before ',' token</p>
<p>When I do this using UI Editing Signals Slots: </p>
<p>I have in header file declaration of slot: </p>
<pre><code>void linkClicked(QUrl &url);
</code></pre>
<p>in source cpp file :</p>
<pre><code>void MainWindow::linkClicked(QUrl &url)
{
QMessageBox b;
b.setText(url->toString());
b.exec();
}
</code></pre>
<p>When I run this it compiles and runs but got a warning : </p>
<pre><code>Object::connect: No such slot MainWindow::linkClicked(QUrl) in ui_mainwindow.h:100
</code></pre>
<p>What is propper way of doing this event handling?</p>
http://stackoverflow.com/questions/847157/qt-having-problems-responding-on-qwebviewlinkclickedqurl-slot-signal-issue/847182#8471821Answer by Irfan Mulic for QT: having problems responding on QWebView::linkClicked(QUrl) - slot signal issueIrfan Mulic2009-05-11T08:22:24Z2009-05-11T08:22:24Z<p>I changed <code>QObject::connect</code> to only <code>connect</code> and it works.</p>
<p>So this code works: </p>
<p><code>connect(ui->webView,SIGNAL(linkClicked(const QUrl)),this,SLOT(linkClicked(const QUrl)),Qt::DirectConnection);</code></p>
<p>But I don't know why?</p>
http://stackoverflow.com/questions/840833/tracing-the-time-when-a-value-was-updated-in-a-table/842042#8420420Answer by Irfan Mulic for Tracing the time when a value was updated in a tableIrfan Mulic2009-05-08T22:12:49Z2009-05-08T22:12:49Z<p>Best practice is Update Trigger on that table that will call a generic procedure where you can pass parameters like description field name and primary key of updated record as well the timestamp. </p>
http://stackoverflow.com/questions/830858/migrating-delphi-app-to-java-or-to-web-app5Migrating Delphi App to Java or to Web App Irfan Mulic2009-05-06T17:53:22Z2009-05-08T21:15:24Z
<p>We want to migrate UI rich application from delphi to java or Web Application.</p>
<p>Reason is that we want application to be portable on all Operating Systems.</p>
<p>Current Components and Modules of Application in Delphi : </p>
<ul>
<li>In Delphi we are utilizing TWebBrowser component to display HTML content</li>
<li>We are playing mp3 that is extracted from FileStream on clicks in HTML. </li>
<li>All resources for HTML are retrieved from Embeded Database Firebird/Ms Access.</li>
<li>To sync some content we are doing HTTP post to PHP scripts to centralize the data on webserver.</li>
</ul>
<p>Deployment:
- Application has to be deployed on CD and installed on Desktop computer on Mac OS, Linux, Windows.</p>
<p>I need your help how to approach this migration. Is better to go with Java UI or Web App that will be deployed with WAMP/XAMP and appropriate distributions on Linux and Mac's.</p>
<p>EDIT:
I have some specific requirements for audio functionality. Audio files are separate files distributed on CD or USB. Audio files are one solid file compiled from mp3's inside. Application will have to have ability to extract the mp3 based on offset and size of mp3 stored in index file and to play in real time... How this affects idea of Web App using this approach.</p>
http://stackoverflow.com/questions/542960/delphi-how-to-create-mp3-file-with-certain-number-of-seconds-of-silence0Delphi : How to create MP3 file with certain number of seconds of silence ?Irfan Mulic2009-02-12T19:55:04Z2009-02-12T22:35:48Z
<p>I need to create a mp3 file with certain number of seconds of silence? </p>
<p>What would be way to do it programatically?</p>
<p>Edit:
It doesn't need to be re inserted in mp3, just a single mp3 file that contain silence x seconds long.</p>
http://stackoverflow.com/questions/447586/inno-setup-how-to-implement-file-update-based-on-different-versions-of-the-appli1INNO Setup: How to implement file update based on different versions of the applicationIrfan Mulic2009-01-15T16:57:15Z2009-01-23T16:38:24Z
<p>I have an application written in Delphi that has several versions that contain binaries and database (MDB) with catalog data.</p>
<p>During the product life cycle fixes/enhancements are either in database file or in some binary files.</p>
<p>Version are preserved in Registry. </p>
<p>Users might have different versions of the program when new patch is available.</p>
<p>Now users have different versions how to implement following scenario in Inno Setup:</p>
<ol>
<li>If user have version A prevent installation. </li>
<li>If user have version B copy db over and file1, file2, file3. </li>
<li>If user have version C just update file1.</li>
</ol>
<p>What is the correct way to implement this in Inno setup?</p>
http://stackoverflow.com/questions/216766/how-do-i-play-a-sound-file-in-j2me-on-samsung-mobile-phones/223691#2236912Answer by Irfan Mulic for How do I play a sound file in j2me on Samsung mobile phones?Irfan Mulic2008-10-21T22:05:59Z2008-12-29T05:35:32Z<p>If this device supports audio/mpeg you should be able to play mp3 use this code inside your midlet...</p>
<p>This works on my nokia symbian phones</p>
<pre><code>// Code starts here put this into midlet run() method
public void run()
{
try
{
InputStream is = getClass().getResourceAsStream("your_audio_file.mp3");
player = Manager.createPlayer(is,"audio/mpeg");
// if "audio/mpeg" doesn't work try "audio/mp3"
player.realize();
player.prefetch();
player.start();
}
catch(Exception e)
{}
}
</code></pre>
<p>As for emulators my nokia experience is that I couldn't make it emulate mp3 player but when I put application on phone it works...</p>
http://stackoverflow.com/questions/380217/correct-way-to-maximize-form-in-delphi-without-caption1Correct way to maximize form in delphi (without caption)Irfan Mulic2008-12-19T06:07:59Z2008-12-19T11:13:29Z
<p>I have a form without caption, using on double click to maximize : Code looks like this:</p>
<pre><code>procedure xxxxxx;
begin
if Form1.WindowState=wsNormal then
begin
Form1.WindowState:=wsMaximized;
Form1.SetBounds(0,0,screen.Width,screen.Height-getHeightOfTaskBar);
end
else
begin
Form1.WindowState:=wsNormal;
end;
ShowTrayWindow;
end;
function getHeightOfTaskBar : integer;
var hTaskBar:HWND;
rect : TRect;
begin
hTaskbar := FindWindow('Shell_TrayWnd', Nil );
if hTaskBar<>0 then
GetWindowRect(hTaskBar, rect);
Result:=rect.bottom - rect.top;
end;
</code></pre>
<p>This works good, except that I have to figure out where is task bar to reset SetBounds ...</p>
<p>What is the correct way to do this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/334302/playing-mp3-with-delphi4Playing mp3 with delphiIrfan Mulic2008-12-02T15:24:56Z2008-12-03T19:56:33Z
<p>Which component to use to play mp3 files from streams/files and also to know the lenght in seconds of that mp3 stream?</p>
http://stackoverflow.com/questions/305265/how-to-do-http-post-in-utf-8-php-script-mysql1How to do HTTP POST in Utf-8 -> php script -> mysqlIrfan Mulic2008-11-20T13:19:27Z2008-11-23T16:29:49Z
<p>I am using Delphi 7 and ICS components to communicate with php script and insert some data in mysql database...</p>
<p>How to post unicode data using http post ?</p>
<p>After using utf8encode from tnt controls I am doing it to post to PHP script </p>
<pre><code><?php
echo "Note = ". $_POST['note'];
if($_POST['action'] == 'i')
{
/*
* This code will add new notes to the database
*/
$sql = "INSERT INTO app_notes VALUES ('', '" . mysql_real_escape_string($_POST['username']) . "', '" . mysql_real_escape_string($_POST['note']) . "', NOW(), '')";
$result = mysql_query($sql, $link) or die('0 - Ins');
echo '1 - ' . mysql_insert_id($link);
?>
</code></pre>
<p>Delphi code : </p>
<pre><code> data := Format('date=%s&username=%s&password=%s&hash=%s&note=%s&action=%s',
[UrlEncode(FormatDateTime('yyyymmddhh:nn',now)),
UrlEncode(edtUserName.Text),
UrlEncode(getMd51(edtPassword.Text)),
UrlEncode(getMd51(dataHash)),UrlEncode(Utf8Encode(memoNote.Text)),'i'
]);
// try function StrHtmlEncode (const AStr: String): String; from IdStrings
HttpCli1.SendStream := TMemoryStream.Create;
HttpCli1.SendStream.Write(Data[1], Length(Data));
HttpCli1.SendStream.Seek(0, 0);
HttpCli1.RcvdStream := TMemoryStream.Create;
HttpCli1.URL := Trim(ActionURLEdit.Text);
HttpCli1.PostAsync;
</code></pre>
<p>But when I post that unicode value is totally different then original one that I see in Tnt Memo</p>
<p>Is there something I am missing ?!</p>
<p>Also anybody knows how to do this with Indy?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/730851/xcode-breakpoints-only-hit-when-set-during-debugging/730925#730925Comment by Irfan Mulic on Xcode breakpoints only hit when set during debuggingIrfan Mulic2009-10-26T20:17:10Z2009-10-26T20:17:10ZI am still having issues, my break points don't work at all?
Have you resolved it ?http://stackoverflow.com/questions/853409/how-to-find-a-first-column-and-first-row-in-a-table-using-sqlComment by Irfan Mulic on How to find a first column and first row in a table using SQLIrfan Mulic2009-05-12T17:52:09Z2009-05-12T17:52:09ZDo you need dynamic sql statement for an input tablename?http://stackoverflow.com/questions/847157/qt-having-problems-responding-on-qwebviewlinkclickedqurl-slot-signal-issue/847182#847182Comment by Irfan Mulic on QT: having problems responding on QWebView::linkClicked(QUrl) - slot signal issueIrfan Mulic2009-05-11T08:30:25Z2009-05-11T08:30:25ZAnd also declaration of slots: changed to be with const...
linkClicked(const QUrl &url)http://stackoverflow.com/questions/840138/sql-query-to-extract-text-from-a-column-and-store-it-to-a-different-column-in-the/840146#840146Comment by Irfan Mulic on SQL query to extract text from a column and store it to a different column in the same record.Irfan Mulic2009-05-08T22:34:25Z2009-05-08T22:34:25ZThere is no "where" statement - meaning this will update the all records in this table.http://stackoverflow.com/questions/841855/some-useful-site-with-examples-c-and-javaComment by Irfan Mulic on Some useful site with examples C++ and Java?Irfan Mulic2009-05-08T21:31:21Z2009-05-08T21:31:21ZYes I agree, this is very good place to start asking questions where people can give you correct route instead of getting bunch of sites with adds who knows if they will take you or give you right answers. Stackoverflow is the best online community for programmers and this way we can guide others to use best resources available.http://stackoverflow.com/questions/830858/migrating-delphi-app-to-java-or-to-web-app/831808#831808Comment by Irfan Mulic on Migrating Delphi App to Java or to Web App Irfan Mulic2009-05-07T00:54:10Z2009-05-07T00:54:10ZThis is good idea but we don't wanna be dependent on Delphi platform anymore.http://stackoverflow.com/questions/830858/migrating-delphi-app-to-java-or-to-web-app/830906#830906Comment by Irfan Mulic on Migrating Delphi App to Java or to Web App Irfan Mulic2009-05-07T00:52:25Z2009-05-07T00:52:25ZThe reason for deploying locally is huge amount of audio data about 500 MB?
If you wanna do that load from HTTP server locally still make sense but I am still not sure about the future architecture in this case... http://stackoverflow.com/questions/830858/migrating-delphi-app-to-java-or-to-web-app/830906#830906Comment by Irfan Mulic on Migrating Delphi App to Java or to Web App Irfan Mulic2009-05-07T00:50:10Z2009-05-07T00:50:10ZWhat do you mean it is not perfect? Look my latest EDIT regarding playing audio files from stream? How to do that in Air? http://stackoverflow.com/questions/830858/migrating-delphi-app-to-java-or-to-web-app/831125#831125Comment by Irfan Mulic on Migrating Delphi App to Java or to Web App Irfan Mulic2009-05-06T22:26:40Z2009-05-06T22:26:40ZI like this approach. I have some specific requirements for audio part. Audio files are separate files distributed on CD or USB or whatever.
Audio files are one solid file compiled from mp3's inside.
Application will have to have ability to extract the mp3 based on offset and size of mp3 stored in index file and to play in real time...
How this affects idea of Web app using this approach. Thanks.http://stackoverflow.com/questions/830858/migrating-delphi-app-to-java-or-to-web-app/831010#831010Comment by Irfan Mulic on Migrating Delphi App to Java or to Web App Irfan Mulic2009-05-06T18:43:38Z2009-05-06T18:43:38ZI don't understand the question, I wanna solve the plaform constraints by moving application from Delphi to Java. Delphi only runs on Windows.http://stackoverflow.com/questions/830858/migrating-delphi-app-to-java-or-to-web-app/830954#830954Comment by Irfan Mulic on Migrating Delphi App to Java or to Web App Irfan Mulic2009-05-06T18:26:00Z2009-05-06T18:26:00ZWhat about Linux and Mac Compatibility?http://stackoverflow.com/questions/830858/migrating-delphi-app-to-java-or-to-web-app/830908#830908Comment by Irfan Mulic on Migrating Delphi App to Java or to Web App Irfan Mulic2009-05-06T18:25:27Z2009-05-06T18:25:27Z.NET is probably the most easy way to do it but is not an option because of Linux and MAC OS.http://stackoverflow.com/questions/730143/delphi-2009-search-skipping-diacritics-in-unicode-utf-8Comment by Irfan Mulic on Delphi 2009: Search skipping diacritics in unicode utf-8Irfan Mulic2009-04-08T17:42:39Z2009-04-08T17:42:39ZCode is added to the question.http://stackoverflow.com/questions/542960/delphi-how-to-create-mp3-file-with-certain-number-of-seconds-of-silence/543185#543185Comment by Irfan Mulic on Delphi : How to create MP3 file with certain number of seconds of silence ?Irfan Mulic2009-02-14T00:39:34Z2009-02-14T00:39:34ZI couldn't find anything on that site links are broken?!http://stackoverflow.com/questions/542960/delphi-how-to-create-mp3-file-with-certain-number-of-seconds-of-silence/543185#543185Comment by Irfan Mulic on Delphi : How to create MP3 file with certain number of seconds of silence ?Irfan Mulic2009-02-12T23:46:26Z2009-02-12T23:46:26ZI just need to get single file with x seconds of silence, I am not re inserting it / or re encoding it.
Thanks.