Breaking News

Tuesday 8 January 2019

How to download Filmora full version free|Tutorialstec

Read more ...

Wednesday 27 December 2017

Simple Desktop - Make Windows Look Better

In this video we will design our Desktop and make it cool and also light weight
All software's and requirements link given bellow.


Simple Desktop - Make Windows Look Better-Tutorialstec

Download Software's for Desktop from Here


Requirements

1:Rainmeter
2:RocketDock
and themes files
The link for cool desktop software given, you can download freely


Read more ...

Tuesday 26 December 2017

Trafic management application through signal in C#

In this video i will show you how to manage traffic through signals
Basically it will show you the use of timer

Download the Source Code from here
http://www.mediafire.com/file/9hp4s8t9c3y594a/Traffic+management+by+tutorialstec.rar


Read more ...

How to make usb bootable(Rufus)|TutorialsTec

In this video i will show you how to make a usb bootable  using a software called Rufus
The software link is given bellow






Download Rufus software from here




 

Download any operating system iso image downloader tool

https://www.digitalcitizen.life/easiest-way-legally-download-iso-images-windows-and-office





Discription:

In this video i will show you how to make a usb bootable.For this i am using a software called Rufus
You can download this software from the above link

Requirements:

1: Rufus
2: Iso image of window which you want to make bootable

How to make bootable

When you have both software and iso now follow these steps
1: open rufus software from the exe file 
2:Now insert your Usb 
3:After this you have to select iso image  from your system
4: After this just click on Start button  and your booting process start.
Note:You must need to format your usb





 

 

Read more ...

Monday 25 December 2017

C# Tutorials-Custom windows form Panel |Side pannel

In this video i will show you how to design a custom panel in windows form Design a panel and make your form more user friendly.it will be helpful to access all functionality of any application
C# Tutorials-Custom windows form Panel |Side pannel

Watch the video and must Subscribe our youtube channel





Download the source code from Here

Related Searches:

custom controls in c# winforms
c# custom form border
customcontrolsincs
custom windows form c#
how to make windows forms look better in c#
how to create dashboard in c# windows application
fancy windows forms c#
windows form design templates c#

Discrition:

You want to create custom Windows Forms in C #. Before I worked with this code, I started looking for a code that would help me create custom Windows Forms in C # on the web. But unfortunately, I could not find a simple and useful code that looks good too. I found the code but they are all complicated. I also found some icons that are simple but not useful. When I started working to solve this problem, I was thinking of using a custom panel / panel as a frame limit to change the shape size, such as width, height, etc. And use custom buttons like the frame control window.
Use the custom panel as the storage layer and use the poster to display the text in the frame.
To display the icon in a frame, the background image will be set in the added panel.
Apply mouse events to the panels and change the shape properties.
And it works perfectly.
You need Visual Studio Professional 2013 or higher. Nate Freemark 4.5 or higher.


Perform all steps correctly to create your own Windows Forms.

We can also create advanced forms with only expanded plates. (See pictures above, Figures 1 and 2)

Download the source code to see the code for these forms.

See the image above for a better understanding of resizing our custom model and BlackForm.cs in the file.

In this article we will create a custom Windows form of variable size in blue, change the colors of the panels and buttons as you wish.
You can use custom controls to design a form.
Do not have your own checks?

http://customcontrolsincs.blogspot.in/
beginning

Read more ...

How to design Datagridview material in C#|TutorialsTec

In this video i will explain you how to design Data gridview in C# After watchin this tutorial you will be amazed.. You will learn how to change a boring gridview to a stylish Datagridview form

Here the Deo which we will create in our video

How to design Datagridview material in C#|TutorialsTec

Watch the video and Must Subscribe our youtube Channel


Download the Source code from here
http://www.mediafire.com/file/0kbrr5a281b8ip6/Datagrid_view_design.rar



 This article shows you how to get data from GridView and how to store it in the DataTable.Follow these simple steps:Step 1:Drag GridView into the form and define the property of AutoGenerateColumns False.Use the template fields to view GridView data. Design GridView in accordance with your requirements.<asp: GridView runat = "server" ID = "gvShoppingCart" AutoGenerateColumns = "False"
                 
EmptyDataText = "There is nothing in your shopping cart". GridLines = "None"
                 
Width = "31%" CellPadding = "5" ShowFooter = "True" DataKeyNames = "BookId" onrowdeleting = "gvShoppingCart_RowDeleting"
                  
>
                 
<HeaderStyle HorizontalAlign = "Left" BackColor = "# 3D7169" ForeColor = "#FFFFFF" />
                 
<FooterStyle HorizontalAlign = "right" BackColor = "# 6C6B66" ForeColor = "#FFFFFF" />
                 
<AlternatingRowStyle BackColor = "# F8F8F8" />
                 
<Column>
                      
<asp: TemplateField HeaderText = "Iamge Book">
                      
<ItemTemplate>
                          
<asp: Image ID = "BookImg" ImageUrl = '<% # Eval ("BookImage")%>' runat = "server" hight = "15px" width = "20px" />

                      
</ ItemTemplate>
                      
</ asp: TemplateField>

                      
<asp: TemplateField HeaderText = "Book Name">
                         
<ItemTemplate>
                             
<asp: tag ID = "lblBookName" runat = "server" Text = '<% # Eval ("BookName")%>'> </ asp: label> <br />

                         
</ ItemTemplate>
                         
</ asp: TemplateField>

                      
<asp: TemplateField HeaderText = "Price">
                         
<ItemTemplate>
                             
<asp: tag ID = "lblPrice" runat = "server" Text = '<% # Eval ("Bookprice")%>'> </ asp: label> <br />
                         
</ ItemTemplate>

                     
</ asp: TemplateField>

                   
<asp: TemplateField HeaderText = "Quantity">
                  
<ItemTemplate>
                      
<asp: TextBox ID = "TXTQty" run = "server" Text = "1" width = "40px" onkeyup = "Calculate Totals ();"> </ asp: TextBox>
                  
</ ItemTemplate>
                  
<FooterTemplate>
                      
<b> Total Calculation. </ b>
                  
</ FooterTemplate>
              
</ asp: TemplateField>
              
<asp: TemplateField HeaderText = "Total">
                  
<ItemTemplate>
                      
<asp: tag ID = "LBLSubTotal" runat = "server"> </ asp: label></ ItemTemplate>
                  
<FooterTemplate>
                      
<asp: ID tag = "LBLTotal" runat = "server" ForeColor = "White"> </ asp: label>
                  
</ FooterTemplate>
              
</ asp: TemplateField>

                     
<asp: CommandField DeleteText = "Delete" ShowDeleteButton = "True" />
                
                 
</ Column>
             
</ asp: GridView>Open the columns column name on the table.Step 2:Use the following code to retrieve data from GridView and store it in the DataTable.personal getGridInfo empty ()
    
{

        
DataTable dt = new DataTable ();
        
DataRow dr;
        
dt.Columns.Add (New System.Data.DataColumn ("BookName", typeof (String)));
        
dt.Columns.Add (New System.Data.DataColumn ("BookQty", typeof (String)));
        
dt.Columns.Add (New System.Data.DataColumn ("BookImg", typeof (String)));

        
foreach (GridViewRow line gvShoppingCart.Rows)
        
{
            
Image Bookimg = (Image) row.FindControl ("BookImg");
            
Label Booknames = (labels) row.FindControl ("lblBookName");
            
TextBox Bookqty = (TextBox) row.FindControl ("TXTQty");
            
Tag TotalPrice = (labels) row.FindControl ("LBLTotal");
            
dr = dt.NewRow ();
            
dr [0] = Booknames.Text;
            
dr [1] = Bookqty.Text;
            
dr [2] = Bookimg.ImageUrl.ToString ();
            
dt.Rows.Add (dr);
        
}

        
Speech ["QtyTable"] = dt;
        
Response.Redirect ("Admin / Default.aspx");
    
}Step 3:Here, dt.Columns.Add (New System.Data.DataColumn ("BookName", typeof (String))) You can type header text in that column.Call this function where you want to save GridView data in the DataTable.
Read more ...

Sunday 24 December 2017

Create a Text to speech application in C#|TutorialsTec



In this video i will show you how to create aplication of text to speech in C#
Watch the video given bellow and must subscribe our youtube channel
Create a Text to speech application in C#|TutorialsTec




                                          Download the source code from here

Read more ...
Designed and Published by.. TANZEEL PRINCE