matreen
04-26 12:18 AM
Team,
Friend of mine had a interview today about 20 min, seems like everything looks good.
The current case for my friend falls under EB3 (2001). But the tricky thing is he filed another case in 2005 in Lulac but he revoked the case.
After interview officer said she needs calrify the Lulac case and background check.
I am wondering if anybody is in similar situation if so your advice will be very valuable.
Thanks,
M
Friend of mine had a interview today about 20 min, seems like everything looks good.
The current case for my friend falls under EB3 (2001). But the tricky thing is he filed another case in 2005 in Lulac but he revoked the case.
After interview officer said she needs calrify the Lulac case and background check.
I am wondering if anybody is in similar situation if so your advice will be very valuable.
Thanks,
M
wallpaper Justin Bieber and Selena Gomez
m2kkk
07-31 12:29 PM
I don't see the gain. Although a fresh L petition has better chance of approval, you still have to get a visa approved, which may get rejected.
Given your wife's situation of EAD, you are better off applying for an extension here. They will not reject an application as long it meets all the requirements.
Thanks ! I dont know if the reasons for rejection are entirely based on merits of the petition but from experience of my coworkers around here, the employer advises a fresh petition. If I wish to go for a fresh petition how soon can I travel before my VISA expiry date ? Is there any deadline stipulated ? My VISA expires on 11/18/2008. Can I travel in Sept and submit a fresh petition for approval ?
Thanks
Given your wife's situation of EAD, you are better off applying for an extension here. They will not reject an application as long it meets all the requirements.
Thanks ! I dont know if the reasons for rejection are entirely based on merits of the petition but from experience of my coworkers around here, the employer advises a fresh petition. If I wish to go for a fresh petition how soon can I travel before my VISA expiry date ? Is there any deadline stipulated ? My VISA expires on 11/18/2008. Can I travel in Sept and submit a fresh petition for approval ?
Thanks
validIV
02-04 12:57 PM
Yea now I see your problem. When I applied for my F-1, my parents had not yet filed their I-140. Yours, on the other hand, has already been approved.
The worst thing that I can think of is changing status to F-1 is denied.
The worst thing that I can think of is changing status to F-1 is denied.
2011 And Selena Gomez Kiss at
raju6855
01-19 12:35 PM
Sure, i will
Thanks for your response.
Thanks for your response.
more...
ujjvalkoul
07-12 03:54 PM
For Nov 2005 PD...how long before we can get GC
vivek_ut
09-12 09:51 PM
Rajiv Khanna from immigration.com held two conference calls on going back to school with a pending green card application. Not sure if your particular situation is covered but you can listen to the conference call recordings on his website. I believe these were in the April/Mat time frame.
more...
sundarpn
10-04 10:23 PM
same here.
Hoz the traffic in that area in the morning between 8 and 10? my app is at 10.
Should we be there a bit early?
Hoz the traffic in that area in the morning between 8 and 10? my app is at 10.
Should we be there a bit early?
2010 Justin Bieber and Selena Gomez
sanjay02
05-22 03:09 AM
Your case has moved to another office, usually it happens when they schedule an interview at local office.
more...
reddymjm
05-12 09:33 AM
AAA also offers..
hair justin bieber selena gomez
maddipati1
01-08 09:08 PM
i was trying to take an InfoPass appointment for AP Expedite Proc.
it doesn't give an option for this. anyone did this already? what option did you select?
appreciate your help.
the only options given are below.
Services on a case that has already been filed
--------------------------------------------
We offer 4 kinds of appointments for a case that you have already filed. Please choose from the following -
1. Order from Immigration Court - If you were directed to us for processing based on an order from the Immigration Judge. You must bring all documents required in the post order instructions given to you by the court.
2. Case Processing Appointment - If you received a notice to go to your local office for further case processing.
3. EAD inquiry appointment - If your I-765 employment authorization application has been pending for more than 90 days.
4. Case Services follow-up appointment - If it has been over 45 days since you contacted NCSC and have not received a response to your inquiry. You must bring the Service Request ID Number related to your inquiry to the appointment.
it doesn't give an option for this. anyone did this already? what option did you select?
appreciate your help.
the only options given are below.
Services on a case that has already been filed
--------------------------------------------
We offer 4 kinds of appointments for a case that you have already filed. Please choose from the following -
1. Order from Immigration Court - If you were directed to us for processing based on an order from the Immigration Judge. You must bring all documents required in the post order instructions given to you by the court.
2. Case Processing Appointment - If you received a notice to go to your local office for further case processing.
3. EAD inquiry appointment - If your I-765 employment authorization application has been pending for more than 90 days.
4. Case Services follow-up appointment - If it has been over 45 days since you contacted NCSC and have not received a response to your inquiry. You must bring the Service Request ID Number related to your inquiry to the appointment.
more...
aguy
07-26 08:40 PM
so, would you say just waiting for the RFE instead of sending in the exam result with a cover letter. i am afraid that it may get lost. on the other hand, if they delay the RFE by over 6 months, we will have to do the medical exam again. what would you suggest?
hot Selena Gomez and Justin Bieber
jhaalaa
05-21 01:35 PM
Please call the senators, congressman and representatives from your area.
You may be surprised to find that their office staff is very cooperative. Support IV coordinate this effort.
Best Wishes for all.
You may be surprised to find that their office staff is very cooperative. Support IV coordinate this effort.
Best Wishes for all.
more...
house Justin Bieber e Selena Gomez
senk1s
10-14 09:41 AM
is it an actual check or just a stub with direct deposit?
Ours is also done thru a payroll company and in the direct deposit and stub our company name is there.
Ours is also done thru a payroll company and in the direct deposit and stub our company name is there.
tattoo Justin Bieber and Selena Gomez
sr1973
07-23 12:22 AM
I just created this thread but unable to see in the main page. If anyone seeing this thread, please post.
more...
pictures Justin Bieber and Selena Gomez
alexgeek
03-11 06:44 PM
Okay Im having some trouble with this code:
private int? X, Y;
private void Draw(object sender, MouseEventArgs e)
{
this.X = e.X;
this.Y = e.Y;
this.PaintPanel.Invalidate();
// MessageBox.Show("Mouse Move called, points (x, y) " + this.X.ToString() + this.Y.ToString());
}
private void DrawPixel(int x, int y, ref Graphics G)
{
G.FillRectangle(new SolidBrush(Color.Black), x, y, 1, 1);
}
private void PaintPanel_Paint(object sender, PaintEventArgs e)
{
MessageBox.Show("Paint called, hurrah");
Graphics G = e.Graphics;
if(this.X != null && this.Y != null)
this.DrawPixel((int)this.X, (int)this.Y, ref G);
G.DrawEllipse(new Pen(Color.Orange), 2, 2, 10, 10);
}
The events get called correctly but nothing is drawn.. help? thnx
private int? X, Y;
private void Draw(object sender, MouseEventArgs e)
{
this.X = e.X;
this.Y = e.Y;
this.PaintPanel.Invalidate();
// MessageBox.Show("Mouse Move called, points (x, y) " + this.X.ToString() + this.Y.ToString());
}
private void DrawPixel(int x, int y, ref Graphics G)
{
G.FillRectangle(new SolidBrush(Color.Black), x, y, 1, 1);
}
private void PaintPanel_Paint(object sender, PaintEventArgs e)
{
MessageBox.Show("Paint called, hurrah");
Graphics G = e.Graphics;
if(this.X != null && this.Y != null)
this.DrawPixel((int)this.X, (int)this.Y, ref G);
G.DrawEllipse(new Pen(Color.Orange), 2, 2, 10, 10);
}
The events get called correctly but nothing is drawn.. help? thnx
dresses Selena Gomez and Justin Bieber
martinvisalaw
06-07 02:37 PM
I'm confused. I thought you said there was an RFE in your first post?
more...
makeup justin bieber selena gomez
chanduv23
11-02 09:40 AM
I am in IT and my wife is doing her first year residency and both are on h1b. We are looking for a good legal counsel regarding our future like avenues forr fellowship, etc...
Any suggestions??
Any suggestions??
girlfriend Hot photo, Justin Bieber seen
eb3_nepa
05-08 01:47 PM
Thanks. I like your idea;A better place for that would be any country where expatriates work in the Middle East ( Saudi Arabia, Dubai, Kuwait, Qatar, Oman etc)
Learning01, I am confused. What does that mean?
Learning01, I am confused. What does that mean?
hairstyles Justin Bieber and Selena Gomez
milind70
08-11 12:56 PM
hello all,
i filed my application on july 2nd to nebraska service center. Now i am filing my wife' application using the new updated 485 form. i sent my application to nebraska service center. i live in florida and in the new form i have noticed that they are asking people from florida to send 485 application to texas service center.
i am confused as to where i should send my application. i am attaching a sheet which asks mailroom to attach my wife's new application to already filed my application ( sent on 2nd july with no recepit ).. i am just confused that if i send my application to texas will it get attached to my primary already filed application... any one in same situation or any insite please help.
thanks
-M:confused:
mail to NSC where you have mailed your application,you might have mailed your 485 to NSC since your 140 was approved from there.
i filed my application on july 2nd to nebraska service center. Now i am filing my wife' application using the new updated 485 form. i sent my application to nebraska service center. i live in florida and in the new form i have noticed that they are asking people from florida to send 485 application to texas service center.
i am confused as to where i should send my application. i am attaching a sheet which asks mailroom to attach my wife's new application to already filed my application ( sent on 2nd july with no recepit ).. i am just confused that if i send my application to texas will it get attached to my primary already filed application... any one in same situation or any insite please help.
thanks
-M:confused:
mail to NSC where you have mailed your application,you might have mailed your 485 to NSC since your 140 was approved from there.
rajenk
11-19 06:58 PM
Courtesy copy will clearly say that it is a Courtesy copy. From what you are stating that copy seems to be from the original approval. So no worries.
Good luck at the Visa interview:)
Good luck at the Visa interview:)
harsh
12-30 10:39 PM
I read somewhere that the new memo is effective immediately. So you should consult with your immigration attorney soon. You might be able to take advantage of the new memo and get 6 years of H1b.
No comments:
Post a Comment