FlyerTalk Forums

FlyerTalk Forums (https://www.flyertalk.com/forum/index.php)
-   Continental OnePass (Pre-Merger) (https://www.flyertalk.com/forum/continental-onepass-pre-merger-488/)
-   -   The Penalty Box (https://www.flyertalk.com/forum/continental-onepass-pre-merger/710031-penalty-box.html)

msv May 21, 2010 7:58 pm


Originally Posted by mnmag (Post 14001482)
We've been to the doc twice this past week (that's why I wasn't posting much, recently!) He's been sick exactly a week now. His abdomen area was tender, so the doc ordered a liver & spleen panel. We're still waiting for the rest of the results from the blood work. He just finished the z-pack. He's definitely feeling much better & finally eating normally!^

I've seen mono missed frequently by Dr's and I'm sure the z-pak will do wonders for the bronchitis! Mom's job is really hard now not to let him overdo!:(

Olton Hall May 21, 2010 7:58 pm


Originally Posted by fozz (Post 14001436)
Shouldn't you be in bed already. :)

Shouldn't you? (oh, your in LA) I just hope we make it to the airport. A certain someone seems to have chosen a departure time that seems like it will miss the 60 minute window by about 15-20 minutes.

msv May 21, 2010 8:00 pm

Quote:
Originally Posted by fozz
Shouldn't you be in bed already.

Shouldn't you? (oh, your in LA) I just hope we make it to the airport. A certain someone seems to have chosen a departure time that seems like it will miss the 60 minute window by about 15-20 minutes.

Real b:eek:xing in the box!

mnmag May 21, 2010 8:03 pm


Originally Posted by msv (Post 14001511)
I've seen mono missed frequently by Dr's and I'm sure the z-pak will do wonders for the bronchitis! Mom's job is really hard now not to let him overdo!:(

I will definitely keep on top of the situation with the doc! At least V-Ball season is over -- so he can't overdo it there! His band is supposed to record a video next weekend, though!

fozz May 21, 2010 8:04 pm


Originally Posted by mnmag (Post 14001491)
YAY -- on the pointy end!^ So, you'll be rendezvous-ing in PTY?!:cool: Have a fun run!

Indeed...

mnmag May 21, 2010 8:04 pm


Originally Posted by Olton Hall (Post 14001514)
Shouldn't you? (oh, your in LA) I just hope we make it to the airport. A certain someone seems to have chosen a departure time that seems like it will miss the 60 minute window by about 15-20 minutes.

uh-oh!:o

fozz May 21, 2010 8:05 pm


Originally Posted by Olton Hall (Post 14001514)
Shouldn't you? (oh, your in LA) I just hope we make it to the airport. A certain someone seems to have chosen a departure time that seems like it will miss the 60 minute window by about 15-20 minutes.

I'm enroute to LA. I get to LAX and have four hours before my PTY flight. I'm pretty sure i'm going to pass out on my CM flight.

Uhhh, missing your flight? That can't be good.

Olton Hall May 21, 2010 8:08 pm


Originally Posted by fozz (Post 14001542)
I'm enroute to LA. I get to LAX and have four hours before my PTY flight. I'm pretty sure i'm going to pass out on my CM flight.

Uhhh, missing your flight? That can't be good.

We are leaving his house at 3:30. I know from my house it's 1.5 hours to JFK but that's to a garage at the terminal. We're going to Long term and then the wait for the airtrain begins. That's putting us at the ticket counter about 5:20 for 6:07 departure.

AMF in NJ May 21, 2010 8:10 pm


Originally Posted by sbm12 (Post 14000544)
Dear Java:

I hate you.

If I have an array of strings then why do I need to explicitly convert each entry to a string when I want to process it? It was a string when I put it in. Why isn't it when I take it out. :mad:

Yeah....programming is kicking my arse right now.

Example? @:-)

mnmag May 21, 2010 8:14 pm


Originally Posted by Olton Hall (Post 14001557)
We are leaving his house at 3:30. I know from my house it's 1.5 hours to JFK but that's to a garage at the terminal. We're going to Long term and then the wait for the airtrain begins. That's putting us at the ticket counter about 5:20 for 6:07 departure.

Hope everything goes smoothly!^

Trustguy May 21, 2010 8:23 pm

Roasted chicken (from store), brown rice and broccoli is dinner.

sbm12 May 21, 2010 8:27 pm


Originally Posted by AMF in NJ (Post 14001573)
Example? @:-)

Right now I'm faced with this conundrum...
This works:
Code:

String[] arrDetail= new String[] {"0", "1", "2", "3", "4", "5", "6"};
int k =2;
String Carrier =  arrDetail[k];

This doesn't:
Code:

String[] arrDetail;
arrDetail = tmpTxt.split("/");
int k =2;
String Carrier =  arrDetail[k];

I've confirmed that the array is generated correctly but I cannot specify the element I want to read into a String variable.

Even more vexing is that this does work:
Code:

                    for (int k = 0; k < arrDetail.length; k++){
                          if (k == 3){
                        Carrier=arrDetail[k];
                      }

If I manually assign the row I want to read it fails. If I select it in a For loop it works. I'm completely stumped. I'm about to just give up and do the loop with a Switch statement but it is driving me bonkers.

msv May 21, 2010 8:40 pm


Originally Posted by sbm12 (Post 14001653)
Right now I'm faced with this conundrum...
This works:
Code:

String[] arrDetail= new String[] {"0", "1", "2", "3", "4", "5", "6"};
int k =2;
String Carrier =  arrDetail[k];

This doesn't:
Code:

String[] arrDetail;
arrDetail = tmpTxt.split("/");
int k =2;
String Carrier =  arrDetail[k];

I've confirmed that the array is generated correctly but I cannot specify the element I want to read into a String variable.

Even more vexing is that this does work:
Code:

                    for (int k = 0; k < arrDetail.length; k++){
                          if (k == 3){
                        Carrier=arrDetail[k];
                      }

If I manually assign the row I want to read it fails. If I select it in a For loop it works. I'm completely stumped. I'm about to just give up and do the loop with a Switch statement but it is driving me bonkers.

Hmmm work assigments should not be posted in the box on Fri eve:D

AMF in NJ May 21, 2010 8:41 pm


Originally Posted by sbm12 (Post 14001653)
Right now I'm faced with this conundrum...
This works:
Code:

String[] arrDetail= new String[] {"0", "1", "2", "3", "4", "5", "6"};
int k =2;
String Carrier =  arrDetail[k];

This doesn't:
Code:

String[] arrDetail;
arrDetail = tmpTxt.split("/");
int k =2;
String Carrier =  arrDetail[k];

I've confirmed that the array is generated correctly but I cannot specify the element I want to read into a String variable.

Even more vexing is that this does work:
Code:

                    for (int k = 0; k < arrDetail.length; k++){
                          if (k == 3){
                        Carrier=arrDetail[k];
                      }

If I manually assign the row I want to read it fails. If I select it in a For loop it works. I'm completely stumped. I'm about to just give up and do the loop with a Switch statement but it is driving me bonkers.

Hrm, offhand I don't see anything on why it wouldn't work. Is this a compile time error, or a run time one?

jrzyshawn May 21, 2010 8:47 pm

Good night box. I'm working with the b:rolleyes:ss tomorrow, so I need to be well rested :-:


All times are GMT -6. The time now is 11:20 pm.


This site is owned, operated, and maintained by MH Sub I, LLC dba Internet Brands. Copyright © 2026 MH Sub I, LLC dba Internet Brands. All rights reserved. Designated trademarks are the property of their respective owners.