Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
75% Quality Score
Upvotes Received
7
Posts with Upvotes
7
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
5 Endorsements
Ranked #341
~21.8K People Reached
Favorite Tags

57 Posted Topics

Member Avatar for ultimate_fusion
Member Avatar for pty
0
1K
Member Avatar for Simon180

Hi all, can anyone point me in the right direction to find some documents / demos on how to use opus codec within delphi I not found anything on official webpage. Thanks.

Member Avatar for rproffitt
0
358
Member Avatar for Simon180

am looking for a way to count down from 30 seconds using a timer and updating a Gauge using Progress to reflect the time remaining. I know this is very simple code but my brain is some what dead here my bad code. procedure FreeTimerTimer(Sender: TObject); begin TotalTime := GetTickCount() …

Member Avatar for rubberman
0
649
Member Avatar for Simon180

anyone have a wrapper or know were to get a wrapper so am able to use the opus codec within my application ?. http://www.opus-codec.org Thanks

0
183
Member Avatar for Simon180

Am having a issue with ajax form for some reason it dont always work post the correct data am having to click the image 3 or 4 times before it will load the portrait and gallery numbers. can anyone help me out ? ** Form.php** <script> $(document).ready(function() { $('.ajaxform').click(function() { …

Member Avatar for Simon180
0
247
Member Avatar for Simon180

Hello all, I been trying to add a hotkey to my application using the following code below but I have a issue were once added am no longer able to use any other shift commands as it will always call the the press commands so am wondering is there a …

0
147
Member Avatar for Simon180

Am trying to read a bmp that has 24 images in all and am trying to make it so I can read the single bmp file to show the correct image and having a real problem with it am using delphi xe2 I have googed it but not much on …

0
171
Member Avatar for Simon180

Hello am trying to encrypt my strings in delphi I already encrypted my needed strings in php but am having a little trouble getting the matching string from my delphi test application below is the php code am using to encrypt on website then following code is my delphi app …

Member Avatar for Simon180
0
1K
Member Avatar for abdoalghareeb

run the installing in admin mode that would fix it but better option would be to install a VM of windows xp and run it would fix it with out need of doing settings change to your main OS also handy for restoring. I would also try and use delphi …

Member Avatar for SoftSoul6Co
0
244
Member Avatar for Simon180

Can anyone help me out with abit of code that will detect the location of any exe file on a hard drive / cd? am trying to build a simple exe launcher thanks.

Member Avatar for Simon180
0
230
Member Avatar for Simon180

I have some source code done back when time first started and long before unicoding of a old gaming/chat system used mostly in 90s knowing to millons of young gamers as mplayer.com now questions I have is the server side was coded for Solaris Sparc/Intel server core using Sun workshop …

Member Avatar for Simon180
0
232
Member Avatar for Simon180

Ok here what am trying to do, when its scrolling left, I want to get the full length of the lblmarquee caption and then when it scrolls to the end of the last letter or caption it will then auto change to right scroll and then back to left so …

Member Avatar for SalmiSoft
0
407
Member Avatar for Simon180

Am trying to read a URL address something like http://www.myaddress.com/id=563?name=mark from the Embedded Web Browser then I want to be able to get the url parameters of a link with in my delphi application, so am able to do a messagve box like: ShowMessage(id); // this would show 563 ShowMessage(name); …

Member Avatar for pritaeas
0
255
Member Avatar for Simon180

Following code below should reconnect my audio server if it was found to be disconnected now all is good the timer event is called and the system message shows its reconnecting however it seams the connect procedure fails to be called as it dont reconnect. procedure TGizletView.AudioConTimerTimer(Sender: TObject); begin AudioConTimer.Enabled …

Member Avatar for SalmiSoft
0
118
Member Avatar for Simon180

Am having a awful time trying to get this to work I googled it and even asked few friends about it, but it seams it more difficult than I expected it to be. basicly what am trying to do is capture if or when a user clicks on a button …

Member Avatar for Simon180
0
2K
Member Avatar for Simon180

I have a small issue with following code am inserting a new room into mysql using query and then I want it to auto join the room once its made but the problem is when room is in process of being made it will call the GoTo procedure and it …

Member Avatar for Simon180
0
284
Member Avatar for janicemurby

will this do for you? http://s24.postimg.org/wwfa7yn9x/header.png I removed white background it has trasparent setting now so should fit any color scheme.

Member Avatar for diafol
0
188
Member Avatar for Michaël

can do a boolean for play and stop maybe alot more useful and hander for later on detection if you want to see if the player is playing. private IsPlaying: Boolean; procedure TMPForm.FormCreate(Sender: TObject); begin IsPlaying := False; end; procedure TMPForm.FormClick(Sender: TObject); begin if IsPlaying then StopMedia else PlayMedia; end; …

Member Avatar for SalmiSoft
0
2K
Member Avatar for Simon180

Has anyone used overbyte for streaming in their applications before am looking for a demo or a pre made source/advice so I can add it to my app. Cheers

0
89
Member Avatar for Simon180

Am currenrtly working on a voice chat system using lakeofsoft VCL package for audio processing but am wanting to expand my program to mobile phones soon but am unable to use lakeofsoft VCL package in delphi xe7 due to the age of it and no updates so am wondering what …

0
87
Member Avatar for Simon180

Am trying to work out how to update my database for the image name I have selected with out the need of pressing any buttons just the image it self. there would select the image and it would show a preview and auto update the selected image src address to …

Member Avatar for hericles
0
75
Member Avatar for Simon180

I noticed this afew times and it only seams to do it on my own application and am wondering if anyone knows how to reslove this I have attached a image showing the theme problem for some reason my richedit scroll bar will go blocky and have spaces. any one …

Member Avatar for Duoas
0
194
Member Avatar for Simon180

Am crating abit of code to save and add a menuitem to main menu but am having a small problem when reloading the saved lobby.dat file when its saved it should be save just click the lobby name is below **Support Group Lobby=56** but it keeps thinking the space is …

Member Avatar for SalmiSoft
0
154
Member Avatar for Simon180

Am using GetProgrammDir to get my application folder and it works but I need more control over it were I can select folders inside or outside of my program say there 2 folders Data and Items data will store exe and items will store information txt but the data will …

Member Avatar for SalmiSoft
0
196
Member Avatar for Simon180

Am looking for a little bit of help to convert the following Visual C++ code into a delphi if its possible #define MARGINX 24 // this much for "mon" #define MARGINY 24 // this much for "00" char *dayNames[7] = { "Su", "Mo", "Tu", "We", "Th", "Fr", "Sa" }; #define …

Member Avatar for Simon180
0
223
Member Avatar for Simon180

Am currently using the following code to build my userlist but the down side to this is it will loop names over and over making duplicate names so am having to do extra code to stop same names showing up in list so am wondering if there a more professional …

Member Avatar for Simon180
0
179
Member Avatar for yaragalla_mural

I would use php for this job as iframes are out dated. what you will need to do is add the header and footer code to each page once you have done that if you edit header or footer php will auto update all 20 pages just place this code …

Member Avatar for webhawk
0
171
Member Avatar for Simon180

Am looking for a way to download a image from a URL using twebbrower and to save it to a folder, it would access url and then have section for file name and folder name and then it would save the file as a jpg to the folder on drive. …

Member Avatar for Simon180
0
180
Member Avatar for Simon180

Am trying to look the code below so it will loop the current items already in the list and display them all plus any new onces added but am having a bit of trouble doing this what am I missing or doing wrong? Gallery.Duplicates := dupIgnore; Gallery.Sorted := True; // …

Member Avatar for SalmiSoft
0
131
Member Avatar for Simon180

Am looking for a way to add a custom item image in icon view on a listview the icons I want to use is a single image bmp file with 4 icons on the image so I need a way to select each image on the file and a nice …

Member Avatar for SalmiSoft
0
244
Member Avatar for Simon180

Am trying to make a simple categorys script but am not having much luck . CREATE TABLE `portraits` ( `n` INT(11) NOT NULL AUTO_INCREMENT, `category` VARCHAR(25) NOT NULL DEFAULT 'Main', `collection_id` VARCHAR(5) NOT NULL DEFAULT '00000', `collection_name` VARCHAR(55) NOT NULL DEFAULT 'Free Gallery 1', `permissions` INT(1) NOT NULL DEFAULT '0', …

Member Avatar for broj1
0
2K
Member Avatar for Simon180

Am trying to make my program menu and skin resize when I disable the MainMenu VCL I have attached a image of a program that uses same idea when menu is enabled there is too buttons hidden but once the menu is disabled the pager and options buttons and rest …

Member Avatar for SalmiSoft
0
239
Member Avatar for Simon180

I know everyone on Daniweb are talented but am looking for a person that knows both delphi and c++/c# to help convert some code into delphi for a reconversion of a program we have been trying to revive and get running. so am hoping there some one on here that …

Member Avatar for happygeek
0
139
Member Avatar for Simon180

Am trying to compile the following code in solaris 7 using sun workshop 5 below but I keep getting the following errors and have no idea how to fix it. ./timer.h, line 67: identifier redeclared: timer_create current : function() retruning pointer to void previous: function(int, pointer to struct sigevent {int …

Member Avatar for Banfa
0
203
Member Avatar for Simon180

Am trying to build xinetd on my solaris system am using sun workshop c++/c to compile the code but I keep getting the following errors error: `sys_nerr` underclared (first use in this function) error: (each undeclared identifier is reported only once error: for each function is appears in.) error: `sys_errlist …

Member Avatar for NathanOliver
0
1K
Member Avatar for Simon180

Am trying to access a text file from one apache server to a other but i get following error Warning: file_get_contents(http://popx.mplayer.biz:7999/web-cronjobs/data/updates/updates_today.txt) [function.file-get-contents]: failed to open stream: Connection refused in /home/mplayerb/public_html/index.html on line 227 but yet i can access the file just fine by typing url into my browser <?php $updates_file …

Member Avatar for Simon180
0
229
Member Avatar for Simon180

Hi there I got a little problem with a small bit of code am unfamiliar with orcale database the scripts I have were done by a other person for version 6/7 am currently using version 8i for compatibley reasons with the server software I am currently setting up. the script …

Member Avatar for pritaeas
0
991
Member Avatar for Simon180

I get the following errors with my code when using nmake input.c(375) : error C2065: 'ulong' : undeclared identifier input.c(375) : error C2146: syntax error : missing ';' before identifier 'datelo' input.c(375) : error C2065: 'datelo' : undeclared identifier input.c(376) : error C2146: syntax error : missing ';' before identifier …

Member Avatar for RonalBertogi
0
947
Member Avatar for dualresh
Member Avatar for Simon180
0
350
Member Avatar for Simon180

Am trying to read strings from a html page to get settings the following javascript strings i like to be able to read. <script type="text/javascript"> PP['channel'] = "testchannel"; PP['channel_id'] = 39388311; PP['channel_category'] = "gaming"; PP['channel_meta_game'] = "wow" PP['channel_is_featured'] = false; </script> would be nice that i can pick the data …

Member Avatar for pritaeas
0
1K
Member Avatar for Simon180

Hello all, I have a small problem with javascript and php what am trying to do is re-code the following script so that the items array uses a php script and a loop to gets information from a database but i dont know how to go about it can anyone …

Member Avatar for broj1
0
283
Member Avatar for Simon180

I been searching the net for demos on how to stream live images or video over the net i found a few examples but there were no good not clearly commented so i did not understand how things worked. Basically am after a simple but good way to send a …

Member Avatar for Qazinix
0
168
Member Avatar for Simon180

I got a problem with abit of code and am unable to fix it, i have marked the area that is having the problem with the error message that i get. procedure TMainForm.Show(s: string); var n, n2, n3: integer; arTemp: TMyArray; begin arTemp := TMyArray.Create(); n := InStr(1, s, ':'); …

Member Avatar for darkagn
0
152
Member Avatar for Simon180

Am looking for a way to search a listview for selected captain items and then for it to remove all the items that were found. demo idea to loop full list to find search string that can be changed via edit and then to delete all items that are the …

Member Avatar for pritaeas
0
135
Member Avatar for Simon180

am trying to rebuild my chat content by storing it into a stringlist first and then re-pushing it out but problem am having is with my font settings i can not work out how to add my font styles to the string has anyone got any code to show how …

Member Avatar for AceStryker
0
158
Member Avatar for Simon180

Can sumone please give me a helping hand here am trying to do a simple sql search were it will look all items in SQL database and pull up the names that match but am having a abit of trouble with it it brings all my accounts up regardless of …

Member Avatar for pritaeas
0
203
Member Avatar for Simon180

ok am trying to add a simple word filter for my registration process I have stored all names i do not wish to be used in my db as a text and it can be edited via admin panel nicely but my problem is how can i scan the full …

Member Avatar for cwarn23
0
174
Member Avatar for Simon180

abit like the title am looking for a way to scan my full database and to look at each accounts email address and to find any emails the same and then count them can anyone show me how this is done ? thanks below is my basic db table [CODE] …

Member Avatar for Simon180
0
112
Member Avatar for Simon180

like the tile says am looking for any demos or sites that show how to build a working spades/backgammon game I done my own search but come up with 0 dose anyone have any abandoned projects there be willing to share? thanks hope sumone can help

0
93
Member Avatar for Simon180

like the title says how to calculate 10 days from a date with delphi, am after simple way to get 10 days trial from current date of usage can anyone help thanks :)

Member Avatar for Simon180
0
147

The End.