Asp.net provided functionality to connect to databases and access the data using SQL. In order to create database connectivity in asp.net, SQL server 2005... Read more
SQL Servers allow the import or export of database diagrams to another database. All the information related to a database is stored in the dtproperties... Read more
FindBugs is a static analysis tool that examines the classes in search of potential problems during development, providing a powerful code auditing feature.... Read more
As usual VB.Net has strange reactions when the font of a control is changed, the styles are reset and they should be redefined. To handle this issue: Public... Read more
MySQL provides easy access to database records and makes it possible to carry out manipulations on the data. To select time-related data from the database,... Read more
Sub ConvertHoursIntoDecimal() Dim D As Date, TB, Result As Single 'For example, it can be at a string D = "12:15" TB = Split(D, ":") Result = TB(0) +... Read more
GIT, the powerful 'Source Code Management ' tool is of great help in computer programming and the prime emphasis of this tool is its speed. This... Read more
[Oracle] Components of the Oracle architecture The Oracle server is the system that manages databases and provides comprehensive and integrated information... Read more
In programming languages like C ,settings play a very important role in compiling and executing the code. In the absence of proper settings, one may run... Read more
Visual Basic Application or VBA provides a flexible environment to create custom tools to meet day to day needs. Not only does VBA provide a way to do a... Read more
To compile a source code written in a language like C with Dev C++ under Windows Vista Operating System, can be a difficult process. Like many problems,... Read more
This feature allows you to know exact the position of the mouse from the screen and irrelevant from the sheet or control it contains. Public Type POINTAPI x... Read more
Ingres is an open source database management system that is growing day by day and is supported by a huge online community as well. There are custom... Read more
A small programming tip from ramachandra1990 , please enjoy it. How to draw a human face? #include<stdio.h> #include<conio.h> #include<graphics.h> void... Read more
In VBA the Evaluate function takes as argument a formula set out in a alphanumeric variable and return the result in an alphanumeric variable. In VB, this... Read more
You can make a multiplication using multimedia instructions like imul and mul in the assembly language code, as Mul name_register. The processor internally... Read more
I can not download java ... I still have the same error that appears the following: (download failed: from=http://javadl-alt.sun.com/u/ESD6/JSCDL/jdk/6u16... Read more
I have a blogs and I can not a remove the space between the images of my articles. This may be related to the CSS of the image tag. Look at your style sheet... Read more
As part of a Web application in Java, I need, via a form, users can send files (any type: Excel workbook, image ...) to the server and the latter are... Read more
It may be useful, when you start publishing programs, to make a small "setup" that can easily install your application. It may also reduce the size of the... Read more