![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: Feb 2002
Posts: 82
|
Hello,
Ive got a line of code that is very long, and would like to be able to break it into segments so that I can seeit without constantly scrolling. Does anyone know how to do this? Heres my line of code. Private Declare Sub check_primer Lib "ASPrimer.dll" _ (ByVal primer As String, ByVal revcomp As String, ByVal primer_common As String, ByVal revcomp_common As String, ByVal ok_primer As String, Tm As Double, gc_frac As Double, min_Tm As Long, max_Tm As Long, min_gc As Long, max_gc As Long, num_Ns_accepted As Long) Thanks for any advice you can give Casey |
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Apr 2002
Location: Greenwood, SC
Posts: 677
|
Use the continuation underscore:
Private Declare Sub check_primer Lib "ASPrimer.dll" _ (ByVal primer As String, ByVal revcomp As String, _ ByVal primer_common As String, ByVal revcomp_common As String, _ ByVal ok_primer As String, Tm As Double, gc_frac As Double, _ min_Tm As Long, max_Tm As Long, min_gc As Long, max_gc As Long, _ num_Ns_accepted As Long) Notice that you already have one after the "ASPrimer.dll" _ K P.S. Also note that the format is [Space]_ If you don't put a space before the underscore, you'll get an error. [ This Message was edited by: kkknie on 2002-05-16 06:40 ] |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Feb 2002
Posts: 82
|
|
|
|
|
|
|
#4 |
|
Board Regular
Join Date: Feb 2002
Posts: 82
|
thank you
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|