Search : in
By :

How to design row and column in visual basic

Last answer on Jul 16, 2009 8:38:35 am BST Arock, on Jul 16, 2009 8:19:47 am BST 
 Report this message to moderators

Hello,
how to create row and columns in visual basic.

Configuration: Windows XP Internet Explorer 6.0

Best answers for « how to design row and column in visual basic » in :
Starting with visual basic Show Starting with visual basic Visual Basic is a programming tool designed by Microsoft for its Component Object Model (COM). This tool can be used to create applications for windows, web, mobile devices etc.The latest version of Visual basic...
[Myth] Visual Basic is an object-oriented language Show[Myth]Visual Basic is an object-oriented language Myth Reality Explanations Myth Visual Basic is an object-oriented language. Reality FALSE. Explanations This myth is popular, but unfortunately its false: VB6 is not an object...
Printing Basics ShowPrinting Basics The method Resolution Saving your work Conclusion Whwn you make a print preview on your PC, all seems to be Ok, but that's only what is displayed on your screen , in reality its a totally different matter. Ther ...
Lists of ports based on the applications using them ShowLists of ports based on the applications using them Here is a list of applications with their respective ports, available on the site portforward.com http://portforward.com/cports.htm Under Linux, if you want to know the ports...
Programming languages ShowProgramming language A "programming language" is a language designed to describe a set of consecutive actions to be executed by a computer. A programming language is therefore a practical way for us (humans) to give instructions to a...
Spreadsheets - Cell Selection ShowCell Selection Spreadsheets are powerful tools for working with data. However, to work with data, it is necessary to have tools to rapidly choose the required cells. Line Selection An entire line can be chosen by clicking directly on the line...

1

 Da helpzor, on Jul 16, 2009 8:38:35 am BST
  • +1

This is one way ;)


'insert row

Rows("41:41").Select
Selection.Insert Shift:=xlDown

'insert column

Columns("P:P").Select
Selection.Insert Shift:=xlToRight

Reply to Da helpzor