10000001
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 15 articles for 0.000 sec
Re: Trying to use a logical as an array index     

Group: comp.lang.fortran · Group Profile · Search for 10000001 in comp.lang.fortran
Author: James Van Buskirk
Date: Jul 11, 2008 14:40

.... 124 .FALSE. failed 01111101 .TRUE. 125 .FALSE. failed 01111110 .TRUE. 126 .FALSE. failed 01111111 .TRUE. 127 .FALSE. failed 10000000 .TRUE. -128 .FALSE. failed 10000001 .TRUE. -127 .FALSE. failed 10000010 .TRUE. -126 .FALSE. failed 10000011 .TRUE. -125 .FALSE. failed 10000100 .TRUE. -124 .FALSE. failed 10000101 .TRUE. -...
Show full article (13.67Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for 10000001 in microsoft.public.sqlserver.xml
Author: jojo123
Date: Jul 8, 2008 04:51

...> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07:59</DATE> <FTYPE>1</FTYPE> </HDR> <REC> <LICENCE_NO> <IIN>10000001</IIN> <CRN>100000001</CRN> <LUHN>1</LUHN> </LICENCE_NO> <LICENSEE_FORENAME>John</LICENSEE_FORENAME> <LICENSEE_SURNAME>Smith</LICENSEE_SURNAME> ...
Show full article (11.33Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for 10000001 in microsoft.public.sqlserver.xml
Author: jojo123
Date: Jul 8, 2008 03:46

...<VER>1.1</VER> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07:59</DATE> <FTYPE>1</FTYPE> </HDR> <REC> <LICENCE_NO> <IIN>10000001</IIN> <CRN>100000001</CRN> <LUHN>1</LUHN> </LICENCE_NO> <LICENSEE_FORENAME>John</LICENSEE_FORENAME> <LICENSEE_SURNAME>Smith</LICENSEE_SURNAME> <...
Show full article (11.07Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for 10000001 in microsoft.public.sqlserver.xml
Author: Bob
Date: Jul 7, 2008 19:21

...<VER>1.1</VER> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07:59</DATE> <FTYPE>1</FTYPE> </HDR> <REC> <LICENCE_NO> <IIN>10000001</IIN> <CRN>100000001</CRN> <LUHN>1</LUHN> </LICENCE_NO> <LICENSEE_FORENAME>John</LICENSEE_FORENAME> <LICENSEE_SURNAME>Smith</LICENSEE_SURNAME> <LICENSEE_ADDRESS> <...
Show full article (11.17Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for 10000001 in microsoft.public.sqlserver.xml
Author: jojo123
Date: Jul 7, 2008 09:18

...> <VER>1.1</VER> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07:59</DATE> <FTYPE>1</FTYPE> </HDR> <REC> <LICENCE_NO> <IIN>10000001</IIN> <CRN>100000001</CRN> <LUHN>1</LUHN> </LICENCE_NO> <LICENSEE_FORENAME>John</LICENSEE_FORENAME> <LICENSEE_SURNAME>Smith</LICENSEE_SURNAME> <LICENSEE_ADDRESS> <Result>1</Result> ...
Show full article (13.15Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for 10000001 in microsoft.public.sqlserver.xml
Author: Bob
Date: Jul 7, 2008 09:08

...> <VER>1.1</VER> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07:59</DATE> <FTYPE>1</FTYPE> </HDR> <REC> <LICENCE_NO> <IIN>10000001</IIN> <CRN>100000001</CRN> <LUHN>1</LUHN> </LICENCE_NO> <LICENSEE_FORENAME>John</LICENSEE_FORENAME> <LICENSEE_SURNAME>Smith</LICENSEE_SURNAME> <LICENSEE_ADDRESS> <Result>1</Result> ...
Show full article (12.14Kb) · Show article thread
RE: Problems with xml bulkload     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for 10000001 in microsoft.public.sqlserver.xml
Author: jojo123
Date: Jul 7, 2008 08:55

... <HDR> <VER>1.1</VER> <FN>EAF1NL20080708.xml</FN> <DATE>20080708 14:07:59</DATE> <FTYPE>1</FTYPE> </HDR> <REC> <LICENCE_NO> <IIN>10000001</IIN> <CRN>100000001</CRN> <LUHN>1</LUHN> </LICENCE_NO> <LICENSEE_FORENAME>John</LICENSEE_FORENAME> <LICENSEE_SURNAME>Smith</LICENSEE_SURNAME> <LICENSEE_ADDRESS> <Result>1</Result> <QueryType>1</QueryType>...
Show full article (14.33Kb) · Show article thread
Re: String manipulation for newbie     

Group: comp.lang.fortran · Group Profile · Search for 10000001 in comp.lang.fortran
Author: Beliavsky
Date: Mar 12, 2008 06:29

... is a unnecessary complication. ! --------------- program bit_string integer(1) :: abyte = 127 В  В  ! bits = 01111111 write (*,'(b8.8)') -abyte В  В  ! bits = 10000001 end program I absolutely disagree that the shortest solution is the way to impress a professor - or necessarily the best solution. Of course, David Frank is trying to impress us and amuse ...
Show full article (1.32Kb) · Show article thread
Re: String manipulation for newbie     

Group: comp.lang.fortran · Group Profile · Search for 10000001 in comp.lang.fortran
Author: Catherine Rees Lay
Date: Mar 12, 2008 02:52

...with characters is a unnecessary complication. ! --------------- program bit_string integer(1) :: abyte = 127 ! bits = 01111111 write (*,'(b8.8)') -abyte ! bits = 10000001 end program I absolutely disagree that the shortest solution is the way to impress a professor - or necessarily the best solution. Indeed, when I was learning Fortran, the shortest...
Show full article (1.31Kb) · Show article thread
Re: String manipulation for newbie     

Group: comp.lang.fortran · Group Profile · Search for 10000001 in comp.lang.fortran
Author: Dave Seaman
Date: Mar 10, 2008 10:51

On Fri, 7 Mar 2008 19:05:33 -0800 (PST), Bamm wrote: ! --------------- program bit_string integer(1) :: abyte = 127 ! bits = 01111111 write (*,'(b8.8)') -abyte ! bits = 10000001 end program Very elegant! I had to move each line to the 7th column to get it to compile in g77. Furthermore, I'd like the user to input a value which the program will compute ...
Show full article (1.54Kb) · Show article thread
1 · 2 · next