Posts

Image to video using python

Image
 complete video recorder using python #without mouse pionter Code from here: # -*- coding: utf-8 -*- ########################################################################### ## Python code generated with wxFormBuilder (version Jun 17 2015) ## http://www.wxformbuilder.org/ ## ## PLEASE DO "NOT" EDIT THIS FILE! ########################################################################### import wx import wx.xrc import pyscreenshot import os from PIL import ImageGrab import subprocess ########################################################################### ## Class MyFrame1 ########################################################################### TEMPDIR = 'C:\Users\Md. Khafi Hossain\Desktop\Python Tutorial' class MyFrame1 ( wx.Frame ):         def __init__( self, parent ):         wx.Frame.__init__ ( self, parent, id = wx.ID_ANY, title = u"Screen Capture", pos = wx.DefaultPosition, size = wx.Size( 208,70 ), style ...

Word to PDF converter in python

Image
MS Word 2007 to pdf converter in python import wx import wx.xrc import sys import os import comtypes.client ########################################################################### ## Class MyFrame1 ########################################################################### wdFormatPDF = 17 class MyFrame1 ( wx.Frame ):         def __init__( self, parent ):         wx.Frame.__init__ ( self, parent, id = wx.ID_ANY, title = wx.EmptyString, pos = wx.DefaultPosition, size = wx.Size( 500,300 ), style = wx.DEFAULT_FRAME_STYLE|wx.TAB_TRAVERSAL )                                 bSizer1 = wx.BoxSizer( wx.VERTICAL )                 self.m_panel1 = wx.Panel( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.TA...

System sound recorder using NAudio dll with complete code

Image
System sound recorder including microphone with vb.net complete code   Please Like & Share code from here  ************************ Imports System Imports System.Collections.Generic Imports System.ComponentModel Imports System.Data Imports System.Drawing Imports System.Linq Imports System.Text Imports System.Windows.Forms Imports NAudio.Wave Imports NAudio.CoreAudioApi Imports System.IO Imports System.Diagnostics Imports System.ComponentModel.Composition Public Class Form1     Dim Time As New DateTime     Private waveIn As IWaveIn     Private writer As WaveFileWriter     Private outputFilename As String     Private outputFolder As String     Public Sub New()         InitializeComponent()         If Environment.OSVersion.Version.Major >= 6 Then          ...

Happy New Year 2020 gif image

Image
Happy New Year 2020 gif image Keep watching . . . . . . . .

Happy New Year 2020

Image
Image of new year 2020 Try your best. . . . . . .

Advanced Image Viewer in VB.Net

Image
Advanced Image Viewer with source code:                                (Screen Shot) ***************************************** 'Code from here Public Class Form1     Dim filepath As String     Dim filename As String     Private Sub btnExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click         stopSlideShow = True         Application.Exit()     End Sub     Private Sub btnOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click         Dim path As String         OpenFileDialog1.Filter = "Image Files (*.jpg, *.jpeg, *.png, *bmp, *.gif|*...

Complete StopWatch in Java with source code

Image
Complete StopWatch in Java with source code :     (Screen Shot) **************************************** Code Start from Here: package stopwatch; /**  *  * @author Md. Khafi Hossain  */ public class Main extends javax.swing.JFrame {    static int milliseconds = 0; static int seconds = 0; static int minutes = 0; static int hours = 0; static boolean state = true;     /**      * Creates new form Main      */     public Main() {         initComponents();     }     /**      * This method is called from within the constructor to initialize the form.      * WARNING: Do NOT modify this code. The content of this method is always      * regenerated by the Form Editor.      */    ...