Sunday, September 6, 2009

Media Cafe



Media Cafe Of Pakistan




The Media Cafe is In Progress.
it is complete in few days.

This is the official site for Media Cafe of Pakistan. Ver 1.00, Here you can find Pakistan's most reliable CATV Software. Now it is no more deficult to plan your cable channel. You can now decide your daily MOVIES, SONGS, COMMERCIALS and MORNNING SCHEDULES with ease. Now it is very simple to add logo and advertising strips on both In-House and Live Channels. You can customize your copy of this software with your own choice. Here is all command on your channel in Real Time






Hellow welcome to my blog.This blog makes for the Media Cafe Player of Pakistan.My Name is Sajid Hussain.


Email Adress:v_10_tech@yahoo.com
well geys bad is that i have no contact number.



First thing is the software activeX control if you want that!

I use this activex controls to make a my Media Cafe of pakistan.





Download Acive X controls:



Then Its Very good to download Missing Ocx Files.



So to download fast download internet download manager!
Its from Rapidshare.





And That How to make A Cd player ! i will give you the source Code!

Make A CD Player
'Add Class Module to your project (In the menu choose Project -> Add Class Module, 'Then click Open). Change the Class Module name to CDAudio (In the Project 'Explorer press on Class1 and press F4).'Add 14 Command Buttons and 2 Text Boxes to your form.'Insert into Text1 the track number to play. Insert into Text2 the Rewind\FastForward'speed.'Insert the following code to your Class Module :Private Declare Function mciGetErrorString Lib "winmm.dll" Alias _"mciGetErrorStringA" (ByVal dwError As Long, ByVal lpstrBuffer As String, _ByVal uLength As Long) As LongPrivate Declare Function mciSendString Lib "winmm.dll" Alias "mciSendStringA" _(ByVal lpstrCommand As String, ByVal lpstrReturnString As String, ByVal _uReturnLength As Long, ByVal hwndCallback As Long) As LongFunction StartPlay()mciSendString "play cd", 0, 0, 0End FunctionFunction SetTrack(Track%)mciSendString "seek cd to " & Str(Track), 0, 0, 0End FunctionFunction StopPlay()mciSendString "stop cd wait", 0, 0, 0End FunctionFunction PausePlay()mciSendString "pause cd", 0, 0, 0End FunctionFunction EjectCD()mciSendString "set cd door open", 0, 0, 0End FunctionFunction CloseCD()mciSendString "set cd door closed", 0, 0, 0End FunctionFunction UnloadAll()mciSendString "close all", 0, 0, 0End FunctionFunction SetCDPlayerReady()mciSendString "open cdaudio alias cd wait shareable", 0, 0, 0End FunctionFunction SetFormat_tmsf()mciSendString "set cd time format tmsf wait", 0, 0, 0End FunctionFunction SetFormat_milliseconds()mciSendString "set cd time format milliseconds", 0, 0, 0End FunctionFunction CheckCD$()Dim s As String * 30mciSendString "status cd media present", s, Len(s), 0CheckCD = sEnd FunctionFunction GetNumTracks%()Dim s As String * 30mciSendString "status cd number of tracks wait", s, Len(s), 0GetNumTracks = CInt(Mid$(s, 1, 2))End FunctionFunction GetCDLength$()Dim s As String * 30mciSendString "status cd length wait", s, Len(s), 0GetCDLength = sEnd FunctionFunction GetTrackLength$(TrackNum%)Dim s As String * 30mciSendString "status cd length track " & TrackNum, s, Len(s), 0GetTrackLength = sEnd FunctionFunction GetCDPosition$()Dim s As String * 30mciSendString "status cd position", s, Len(s), 0GetCDPosition = sEnd FunctionFunction CheckIfPlaying%()CheckIfPlaying = 0Dim s As String * 30mciSendString "status cd mode", s, Len(s), 0If Mid$(s, 1, 7) = "playing" Then CheckIfPlaying = 1End FunctionFunction SeekCDtoX(Track%)StopPlaySetTrack TrackStartPlayEnd FunctionFunction ReadyDevice()UnloadAllSetCDPlayerReadySetFormat_tmsfEnd FunctionFunction FastForward(Spd%)Dim s As String * 40SetFormat_millisecondsmciSendString "status cd position wait", s, Len(s), 0CheckIfPlaying%If CheckIfPlaying = 1 ThenmciSendString "play cd from " & CStr(CLng(s) + Spd), 0, 0, 0ElsemciSendString "seek cd to " & CStr(CLng(s) + Spd), 0, 0, 0End IfSetFormat_tmsfEnd FunctionFunction ReWind(Spd%)Dim s As String * 40SetFormat_millisecondsmciSendString "status cd position wait", s, Len(s), 0CheckIfPlaying%If CheckIfPlaying = 1 ThenmciSendString "play cd from " & CStr(CLng(s) - Spd), 0, 0, 0ElsemciSendString "seek cd to " & CStr(CLng(s) - Spd), 0, 0, 0End IfSetFormat_tmsfEnd Function'Insert the following code to your form:
Dim Snd As CDAudioPrivate Sub Command1_Click()Snd.SeekCDtoX Val(Text1)End SubPrivate Sub Command10_Click()MsgBox Snd.CheckIfPlayingEnd SubPrivate Sub Command11_Click()s = Snd.GetCDPositionMsgBox "Track: " & CInt(Mid$(s, 1, 2)) & " Min: " & _CInt(Mid$(s, 4, 2)) & " Sec: " & CInt(Mid$(s, 7, 2))Track = CInt(Mid$(s, 1, 2))Min = CInt(Mid$(s, 4, 2))Sec = CInt(Mid$(s, 7, 2))End SubPrivate Sub Command12_Click()s = Snd.GetCDPositionMsgBox Snd.GetTrackLength(CInt(Mid$(s, 1, 2)))End SubPrivate Sub Command13_Click()Snd.PausePlayEnd SubPrivate Sub Command14_Click()Snd.StartPlayEnd SubPrivate Sub Command2_Click()s$ = Snd.GetCDLengthMsgBox "Total length of CD: " & s, , "CD len"End SubPrivate Sub Command3_Click()Snd.CloseCDEnd SubPrivate Sub Command4_Click()Snd.EjectCDEnd SubPrivate Sub Command5_Click()Snd.StopPlayEnd SubPrivate Sub Command6_Click()Snd.ReWind Val(Text2) * 1000End SubPrivate Sub Command7_Click()Snd.FastForward Val(Text2) * 1000End SubPrivate Sub Command8_Click()MsgBox Snd.CheckCDEnd SubPrivate Sub Command9_Click()MsgBox Snd.GetNumTracksEnd SubPrivate Sub Form_Load()Set Snd = New CDAudioSnd.ReadyDeviceCommand1.Caption = "Play track"Command2.Caption = "Get CD Length"Command3.Caption = "Close CD"Command4.Caption = "Eject CD"Command5.Caption = "Stop"Command6.Caption = "Rewind"Command7.Caption = "Fast Forward"Command8.Caption = "Check if CD in drive"Command9.Caption = "Get numbre of tracks"Command10.Caption = "Check If Playing"Command11.Caption = "Get CD Position"Command12.Caption = "Get current track Length"Command13.Caption = "Pause"Command14.Caption = "Resume"Text1.Text = "1"Text2.Text = "5"End SubPrivate Sub Form_Unload(Cancel As Integer)Snd.StopPlaySnd.UnloadAllEnd Sub.
-------------------------------------------------------------------------------------------------

There is To Much coding For Learn Visual Basic.

For Other Cable Softwares !
Here is The Visual Creation Softwares Of Mediacom Cable Network.
The Broad Logics International.
By: Faisal Qayyum
He is work in Mediacom Cable Network!
Here is A Amzing Software For PC!





PerfectSpeed is the first product to combine multiple enterprise-class performance-enhancing tools in one easy-to-use suite for the casual PC user — a Microsoft-certified disk defragmentation and optimization tool, safe registry cleaner, duplicate file remover, military-strength file shredder and powerful privacy protection all in one. And it’s automated, which makes it easy for the novice user, but also others who desire these capabilities from a vendor they can trust.If you know PerfectDisk, you know how the optimization and defragmentation is addressed - in a top-quality manner that is certified by Microsoft. Sticking to the “keep it simple” approach, the boot time defrag is not part of PerfectSpeed, as well as some of the detailed reporting. But all the rest of the powerful engine is there, including the Space Explorer visual file and folder map.It provides a complete space reclamation facility to remove duplicate files, temporary internet files, temporary user and system files, and even user-defined files. You not only get valuable space back, but also improved performance from the removal of all those unecessary files.PerfectSpeed provides a safe registry cleaner, with safe being the operative word. Sure, there a bunch of freeware registry cleaners and others that do everything but create errors in an attempt to “find” as many problems and “erros” as possible - the higher the numbers, the better they “look” - until you often find yourself in trouble because they’ve overextended themselves. As with PerfectDisk, it’s all about quality, safety and assurance with PerfectSpeed’s registry cleaner.Another key area of PerfectSpeed is privacy protection. While not directly linked to speed, it IS directly linked to a safe and secure PC environment. Every keystroke you make is tracked by the computer and continually storing your history on your hard drive. Like it or not, you’re accumulating a detailed record of all your internet activity - every image, video and program viewed, sent, downloaded or received. Just what a lot of bad guys want to know. Online banking, PayPal transactions, cookies you don’t want — all ripe for the taking. And for files you want gone — really gone — PerfectSpeed includes a military-strength file shredder.And finally, there’s a neat little Tweak tool for setting various Windows performance, security and appearance settings.It’s all wrapped up in one simple, automated, easy-to-use package. From the ones many love, some like, and others don’t know of….but millions trust.What's new in Rx Suite 2.0- Real-time monitoring of drive fragmentation, registry errors, temp. files, information traces- Total scheduling of : defragger, reg. cleaner, recycler and traces eraser- New improved user interface- New file shredder tool- Improved performance - works faster
Download:
http://rapidshare.com/files/275809240/Raxco.PerfectSpeed.PC.Optimizer.v2.0.0.106.WinAll.Incl.Keygen-CRD.rar









Are you stuck with a Slow Vista PC ?




While Vista may very well be the latest and greatest operating system from Microsoft, there are some very unusual things going on that the average user doesn’t realize. If your computer is behaving oddly, and performance seems to be at an all-time low, you’re probably a victim of the dreaded Vista “experience.”
Do you have Vista-related problems ?
Is your Vista system slow booting up or shutting down?
Does it take longer to load programs than it used to?
Do games or video-intensive programs seem to hang or slow way down?
Do you find your system running low on memory more frequently?
Are you tired of poor performance and having to reboot more often?
Here's How Advanced Vista Optimizer will help-
Single Click System Care will diagnose and fix all the incorrect settings and clean all the junk.
Powerful functions with deep analysis and quick cleaning.
Provides Best optimization tweaks.
Includes awesome Powertools such as Email Backup and intuitive Photo Editor.
Optimizes the RAM utilization.
Enhances system Boot-up Time.
Advanced Vista Optimizer supports Windows XP and VISTA (both 32 bit and 64 bit).
Why do I need Advanced Vista Optimizer 2009?
According to recent surveys more than 90% of VISTA PCs become slower within one month of regular use!One month! And after that, performance continues to degrade, month after month, until you’re left with a barely-usable system that’s so frustrating to use that you can hardly bear to turn it on.That’s why we developed Advanced Vista Optimizer 2009, the fastest and easiest way we know of to restore your Vista-based PC to like-new performance!
You don’t have to be a techno-geek to use Advanced Vista Optimizer 2009. All you have to do is download it and you have immediate access to over 40 tools designed to fine-tune and optimize Vista’s settings to match your PC and the software you depend on for work and play. It’s nearly automatic!
Don’t Settle For Poor Performance And The Vista Experience Download:http://rapidshare.com/files/194954792/Advanced_Vista_Optimizer_2009.rar
Bandwidth Manager!





Bandwidth Manager helps you control download and upload rate for every computer in your network. Computers can be limited with specified time and quota per session, day time when access is allowed and set to logout after inactivity.Bandwidth software for download limiting is very suitable for Internet and game cafes as it tightly integrates with Antamedia Internet cafe software enabling automatic blocking of traffic when user logout. Every user and computer can have different download and upload rates.Download:http://rapidshare.com/files/252065042/Antamedia.Bandwidth.Manager.rar



Internet Download Manager (IDM) is a tool to increase download speeds by up to 5 times, resume and schedule downloads. Comprehensive error recovery and resume capability will restart broken or interrupted downloads due to lost connections, network problems, computer shutdowns, or unexpected power outages. Simple graphic user interface makes IDM user friendly and easy to use.Internet Download Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download managers and accelerators Internet Download Manager segments downloaded files dynamically during download process and reuses available connections without additional connect and login stages to achieve best acceleration performance.
Internet Download Manager supports proxy servers, ftp and http protocols, firewalls, redirects, cookies, authorization, MP3 audio and MPEG video content processing. IDM integrates seamlessly into Microsoft Internet Explorer, Netscape, MSN Explorer, AOL, Opera, Mozilla, Mozilla Firefox, Mozilla Firebird, Avant Browser, MyIE2, and all other popular browsers to automatically handle your downloads. You can also drag and drop files, or use Internet Download Manager from command line. Internet Download Manager can dial your modem at the set time, download the files you want, then hang up or even shut down your computer when it's done.
Other features include multilingual support, zip preview, download categories, scheduler pro, sounds on different events, HTTPS support, queue processor, html help and tutorial, enhanced virus protection on download completion, progressive downloading with quotas (useful for connections that use some kind of fair access policy or FAP like Direcway, Direct PC, Hughes, etc.), built-in download accelerator, and many others.
Version 5.17 adds IDM download panel for web-players that can be used to download flash videos from sites like YouTube, MySpaceTV, and Google Videos. It also features complete Vista support, YouTube grabber, redeveloped scheduler, and MMS protocol support. The new version also adds improved integration for IE and IE based browsers, redesigned and enhanced download engine, the unique advanced integration into all latest browsers, improved toolbar, and a wealth of other improvements and new features.
Download:
http://rapidshare.com/files/228987036/Internet.Download.Manager.v5.17.rar