Smart PDF Creator 5.8

Smart PDF Creator will easily convert files such as DOC, XLS, HTML, RTF ,TXT to PDF format. You will experience user friendly interface which is very easy to work with. Smart PDF Creator also features batch conversion; you will be able to convert as many files as you want. All you have to do is to add your file into the program and click Convert. We have also included advanced options like PDF security which allows you to set a

» Read more

TeamViewer 5.0.8703

TeamViewer is a simple and fast solution for remote control, desktop sharing and file transfer that works behind any firewall and NAT proxy. The software can also be used for presentations, where you can show your own desktop to a partner. With the VoIP audio and video capability you can talk to your partners for free or chat with them and give your sessions a more personal touch by using a webcam. It’s that easy: To connect to another computer

» Read more

Microsoft Visual Studio 2010

A powerful IDE that ensures quality code Visual Studio 2010 is packed with new and enhanced features that simplify the entire development process from design to deployment. Customize your workspace with multiple monitor support. Create rich applications for SharePoint and the Web. Target multiple versions of the .NET Framework with the same tool. Eliminate the dreaded “no repro” problem with IntelliTrace. And much more.  For More Details Log on to http://www.microsoft.com/visualstudio/en-us/

» Read more

Everything Search Engine

Everything Search Engine Locate files and folders by name instantly. Small installation file Clean and simple user interface Quick file indexing Quick searching Minimal resource usage Share files with others easily Real-time updating More… For more information please visit the Everything FAQ Download Everything for Windows 2000, XP, 2003, Vista, 2008 and Windows 7 Everything-1.2.1.371.exe (334 KB) Everything-1.2.1.371.zip (portable, 272 KB) (See list of changes) ▪ Older versions ▪ MD5 Reference URL

» Read more

Check The Temperature Of Your CPU

if your PC keeps crashing for no apparent reason, and if those crashes tend to occur when the machine is busy doing lots of things, there’s a pretty good chance that the problem is down to an overheating CPU.  Maybe one of the fans in your system has stopped working, or an air vent is blocked with dust. To help diagnose such problems, here’s a wonderful little Windows utility that tells you the current internal temperature of your CPU.  If

» Read more

Read Data from Excel (VB Code)

Private Sub cmd_browse_Click() On Error Resume Next Dim FNum As Integer Dim txt As Recordset On Error GoTo FileError CommonDialog1.CancelError = True CommonDialog1.Flags = cdlOFNFileMustExist CommonDialog1.DefaultExt = “xls” CommonDialog1.Filter = “Excel file|*.xls|*.*” CommonDialog1.ShowOpen FNum = FreeFile pathtxt.Text = CommonDialog1.FileName Close #FNum Dim cnExcel As New ADODB.Connection Dim rs As New ADODB.Recordset With cnExcel .Provider = “Microsoft.Jet.OLEDB.4.0” ‘.ConnectionString = “Data Source=” & App.Path & “Contact.xls;” & “Extended Properties=Excel 8.0;” .ConnectionString = “Data Source='” & pathtxt.Text & “‘;Extended Properties=Excel 8.0;” .Open End

» Read more

Access SQL Server Instance from the network

Whenever we create any SQL instance and after that if we want to access from our network. We need to setup some setting on Client Machine also! This is  only point that people missed Now we need to install the Client Network Utility on Client Machine and following setting needs to be done. Open Client Network Utility Go to “Alias” Tab Click on “Add…” Button Just type the Server alias (see eg. ABC-1111) “ABC-1” is server name and “111” instance

» Read more

VB Code for Log or Tracking

Dim LFNum As Integer Dim PLFName As String ‘blnfileopen As Boolean Public Sub OpenFile() LFNum = FreeFile PLFName = App.Path & “proglog” & Format(Day(Date), “00”) & Format(Hour(Time), “00”) & Format(Minute(Time), “00”) & Format(Second(Time), “00”) & “.txt” Open PLFName For Output As LFNum Print #LFNum, “Logging Started at…..” & Date; ” “; Time Print #LFNum, “” ‘blnfileopen = True End Sub Public Sub LogData(msg As String) ‘If Not blnfileopen Then OpenFile Print #LFNum, msg End Sub Public Sub closefile() Print #LFNum,

» Read more

Linked Server

——————————————————— Create  Linked Server through Scripts ——————————————————— USE [master] GO EXEC sp_addlinkedserver @server=’dsql2k’, @srvproduct=”, @provider=’SQLNCLI’, @datasrc=’source_name’ GO USE [master] GO EXEC master.dbo.sp_serveroption @server=N’dsql2k’, @optname=N’rpc’, @optvalue=N’true’ GO EXEC master.dbo.sp_serveroption @server=N’dsql2k’, @optname=N’rpc out’, @optvalue=N’true’ GO select * from master.dbo.sysservers ————————————————————————— Alternative Script to Create Linked Server and Mapping of Users ————————————————————————— Use Master go EXEC master.dbo.sp_addlinkedserver @server = N’dsql2k’, @srvproduct=N”, @provider=N’SQLOLEDB’, @datasrc=N’testserver’ GO EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname = N’dsql2k’, @locallogin = N’sa’, @useself = N’False’, @rmtuser = N’sa’, @rmtpassword = N’sa’ GO

» Read more

SQL Backup Plan with Dynamic file Name

DECLARE @day VARCHAR(5) DECLARE @month VARCHAR(15) DECLARE @year VARCHAR(5) DECLARE @hour VARCHAR(5) DECLARE @filename VARCHAR(500) SET @day = DATENAME(DAY, GETDATE()) SET @month = DATENAME(MONTH, GETDATE()) SET @year = DATENAME(YEAR, GETDATE()) SET @hour = DATENAME(HOUR, GETDATE()) SET @filename = ‘D:DATABASE Backupdb_name_’ + @day + @month + @year + @hour + ‘.bak’ Backup DATABASE db_name TO Disk = @filename WITH format BACKUP log db_name TO disk = @filename WITH format

» Read more
1 20 21 22 23