Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > If (!Alias), then {good;} else {bad}

Reply
Thread Tools Display Modes

If (!Alias), then {good;} else {bad}

 
 
STAN STARINSKI
Guest
Posts: n/a

 
      10-07-2009
#define SCR_FUNCTIONS_C
#include <stdlib.h>
#include <stdio.h>
#include <p18f4420.h>
#include <string.h>

void READ_AD(void)
/*
; READ A/D CHANNEL 0 AND STORE RESULTS IN PHA_DATA
; PHA_RD */
{
ADCON0 = 1; //Select Channel 0 (AN0) and turn on A/D converter
ADCON0bits.GO = 1; //Start the A/D conversion

do
{
}while( !ADCON0bits.DONE); //Test to see if the conversion is complete
PHA_DATA = ADRESH; //SAVE DATA FROM A/D AN0
}

/*
; THIS ROUTINE CHECKS THE TIME SELECT SWITCH AND PUTS A VALUE INTO THE
SECOND
; TIME COUNTER (SECOND_CTR)
*/
void CK_SENS_SW(void)
{
union
{
unsigned char Value;
{blah blah}

 
Reply With Quote
 
 
 
 
Gordon's Doctor
Guest
Posts: n/a

 
      10-08-2009
Amazing. You copied some code and pasted code Did your psychiatrist tell
you to do that or did the voices in your head tell you?


"STAN STARINSKI" <Chyna@stealsUSJobsPatentsSoftwareMusicVideo> wrote in
message news:...
> #define SCR_FUNCTIONS_C
> #include <stdlib.h>
> #include <stdio.h>
> #include <p18f4420.h>
> #include <string.h>
>
> void READ_AD(void)
> /*
> ; READ A/D CHANNEL 0 AND STORE RESULTS IN PHA_DATA
> ; PHA_RD */
> {
> ADCON0 = 1; //Select Channel 0 (AN0) and turn on A/D converter
> ADCON0bits.GO = 1; //Start the A/D conversion
>
> do
> {
> }while( !ADCON0bits.DONE); //Test to see if the conversion is complete
> PHA_DATA = ADRESH; //SAVE DATA FROM A/D AN0
> }
>
> /*
> ; THIS ROUTINE CHECKS THE TIME SELECT SWITCH AND PUTS A VALUE INTO THE
> SECOND
> ; TIME COUNTER (SECOND_CTR)
> */
> void CK_SENS_SW(void)
> {
> union
> {
> unsigned char Value;
> {blah blah}


 
Reply With Quote
 
Spanketh Thy Monkey
Guest
Posts: n/a

 
      10-08-2009


"STAN STARINSKI" <Chyna@stealsUSJobsPatentsSoftwareMusicVideo> wrote in
message news:...
> It's my code snippet, not copied.


So you didn't copy and paste the code here? I wonder how it got to the
Vista forum? Maybe it drove itself. Just FYI.


 
Reply With Quote
 
Spanketh Thy Monkey
Guest
Posts: n/a

 
      10-08-2009


"STAN STARINSKI" <Chyna@stealsUSJobsPatentsSoftwareMusicVideo> wrote in
message news:...
> I COPIED FROM MY OWN PROJECT, NOT FROM SOMEBODY'S.


So what does posting the code have to do with anything?

 
Reply With Quote
 
STAN STARINSKI
Guest
Posts: n/a

 
      10-08-2009
It's my code snippet, not copied.
 
Reply With Quote
 
STAN STARINSKI
Guest
Posts: n/a

 
      10-08-2009
I COPIED FROM MY OWN PROJECT, NOT FROM SOMEBODY'S.
 
Reply With Quote
 
Karen Jayne Putzke
Guest
Posts: n/a

 
      10-09-2009


"STAN STARINSKI" <Chyna@stealsUSJobsPatentsSoftwareMusicVideo> wrote in
message news:...
> what do your postings have anything todo w/software?
> weather? missing brains?


Never said they had anything to do with software? Were you missing from
class that day?

You posted software code. Need I say more? Just FYI.


 
Reply With Quote
 
STAN STARINSKI
Guest
Posts: n/a

 
      10-09-2009
what do your postings have anything todo w/software?
weather? missing brains?
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
SHAME on ALIAS & UBUNTU TWO-FACES STAN STARINSKI Windows Vista General Discussion 14 10-04-2009 09:56 PM
Removing an existing e-mail alias Styler780 Windows Small Business Server 3 09-13-2007 09:26 AM
Email Alias - Can users send "from" an alias? GNSM100 Windows Small Business Server 7 02-28-2007 02:31 PM
Event viewer security issue John Windows Server 11 08-17-2004 01:14 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59