
GCwaitforever
06-20 03:02 PM
I have EB2 i-140 approved with PD Dec. 05. I am planning to change the employer.. was just waiting to see if CIR gonna help.. but looks like its not. If I change job now, I will have to do labor, i140 once again!! might be able to maintain PD. .. my question is... I believe that in Octo. 06, new quota for GC will be available. What are the guesses that the PD will become current (at least for Eb2 India) in Octo 06?? Some educated guesses are highly appreciated.
The answer to your first question is yes. You can change employers without any impact, by using AC 21 provisions.
Regarding the second question: EB2 India is going to take a long time to come to 2005 PD. I would say, atleast another three years.
The answer to your first question is yes. You can change employers without any impact, by using AC 21 provisions.
Regarding the second question: EB2 India is going to take a long time to come to 2005 PD. I would say, atleast another three years.
wallpaper amor vincit omnia.

hpandey
10-06 11:51 AM
Not exactly, http://immigrationvoice.org/forum/showthread.php?t=21871
Bingo !! We would never be lucky enough to get rid of the GCTEST headache :D
Bingo !! We would never be lucky enough to get rid of the GCTEST headache :D
corleone
11-09 10:05 AM
First, what is "diwali"? Are you just assuming that all members here understand your language and are same nationality?
Second,
180 days after applying for AOS you can use AC21 and change job.
Second,
180 days after applying for AOS you can use AC21 and change job.
2011 amor vincit omnia tattoo ribs.
rajenk
01-17 01:40 PM
Yes Interfiling is just for that, no matter how the labor cert was used, when that EB3 I140 was approved it was all valid. Now you are only porting the PD from that approved EB3 I140.
If you are to file I485, have your attorney write up a letter explaining how you are eligible for filing I-485 based on interfiling your EB2 I-140. Also the letter need to be in bright colored sheet to differentiate from other B/W docs and application.
Now a days USCIS automatically approves I-485 based on the earlier PD. Since in your case you don't have a I-485 you are not being benefited by it. I have read in IV that people getting GC based on their previous EB3 I-140 PD(with PD being current), if they happen to have another EB2 I-140.
Good luck
Raj:)
If you are to file I485, have your attorney write up a letter explaining how you are eligible for filing I-485 based on interfiling your EB2 I-140. Also the letter need to be in bright colored sheet to differentiate from other B/W docs and application.
Now a days USCIS automatically approves I-485 based on the earlier PD. Since in your case you don't have a I-485 you are not being benefited by it. I have read in IV that people getting GC based on their previous EB3 I-140 PD(with PD being current), if they happen to have another EB2 I-140.
Good luck
Raj:)
more...

kirupa
08-20 06:25 PM
Cake - that is by design. Place the contents of your grid inside a ViewBox control (WPF only I believe). Once you have done that, you will see the contents of your grid scale as its height gets altered.
My earlier XAML snippet could be used when pasted between the <Window> tags. To try out what I just mentioned in this post, create a new WPF project called Animation and overwrite all of the XAML in Window1.xaml with the following:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Animation.Window1"
x:Name="Window"
Title="Window1"
Width="640" Height="480">
<Window.Resources>
<Storyboard x:Key="Storyboard1">
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="grid" Storyboard.TargetProperty="(FrameworkElement.Height)">
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="0"/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="grid1" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Childr en)[0].(ScaleTransform.ScaleY)">
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="2.93"/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="grid1" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Childr en)[3].(TranslateTransform.Y)">
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="96.5"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</Window.Resources>
<Window.Triggers>
<EventTrigger RoutedEvent="FrameworkElement.Loaded">
<BeginStoryboard Storyboard="{StaticResource Storyboard1}"/>
</EventTrigger>
</Window.Triggers>
<Grid x:Name="LayoutRoot">
<StackPanel>
<Grid Height="100" Background="#FFF5FF00" x:Name="grid">
<Viewbox HorizontalAlignment="Left" Width="100">
<Button Content="Button"/>
</Viewbox>
</Grid>
<Grid Height="100" Background="#FF00B3FF" RenderTransformOrigin="0.5,0.5" x:Name="grid1">
<Grid.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="1" ScaleY="1"/>
<SkewTransform AngleX="0" AngleY="0"/>
<RotateTransform Angle="0"/>
<TranslateTransform X="0" Y="0"/>
</TransformGroup>
</Grid.RenderTransform>
</Grid>
</StackPanel>
</Grid>
</Window>
:)
My earlier XAML snippet could be used when pasted between the <Window> tags. To try out what I just mentioned in this post, create a new WPF project called Animation and overwrite all of the XAML in Window1.xaml with the following:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Animation.Window1"
x:Name="Window"
Title="Window1"
Width="640" Height="480">
<Window.Resources>
<Storyboard x:Key="Storyboard1">
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="grid" Storyboard.TargetProperty="(FrameworkElement.Height)">
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="0"/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="grid1" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Childr en)[0].(ScaleTransform.ScaleY)">
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="2.93"/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="grid1" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Childr en)[3].(TranslateTransform.Y)">
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="96.5"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</Window.Resources>
<Window.Triggers>
<EventTrigger RoutedEvent="FrameworkElement.Loaded">
<BeginStoryboard Storyboard="{StaticResource Storyboard1}"/>
</EventTrigger>
</Window.Triggers>
<Grid x:Name="LayoutRoot">
<StackPanel>
<Grid Height="100" Background="#FFF5FF00" x:Name="grid">
<Viewbox HorizontalAlignment="Left" Width="100">
<Button Content="Button"/>
</Viewbox>
</Grid>
<Grid Height="100" Background="#FF00B3FF" RenderTransformOrigin="0.5,0.5" x:Name="grid1">
<Grid.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="1" ScaleY="1"/>
<SkewTransform AngleX="0" AngleY="0"/>
<RotateTransform Angle="0"/>
<TranslateTransform X="0" Y="0"/>
</TransformGroup>
</Grid.RenderTransform>
</Grid>
</StackPanel>
</Grid>
</Window>
:)

chehuan
01-18 10:12 AM
My h1 started in 2009 October which means I have 4 years and 9 months more of h1 left with me
Do you think moving to a new company should be a better idea?
considering the fact that my application would be rejected eventually?
any new company would also take a year to start my application and would mostly take 6 months to get a new job! effectively I would have 3 years of h1 cycle 2 for the new one
should i just wait and see if i get audited and if I do just move to a new place?
What would be my best bet?
-chehuan
Do you think moving to a new company should be a better idea?
considering the fact that my application would be rejected eventually?
any new company would also take a year to start my application and would mostly take 6 months to get a new job! effectively I would have 3 years of h1 cycle 2 for the new one
should i just wait and see if i get audited and if I do just move to a new place?
What would be my best bet?
-chehuan
more...

mambarg
07-20 01:53 PM
The only reason I see the lawyer not applying with enotice, could be he was very busy.
Even my attorney did not file concurrently on 28th as it was last day for PP of 140 and her office was extermely busy applying PP on 28th.
I then walked on 29th and signed all 485 , and she said she will wait for receipt notice and then apply and then July2nd showed up and this fiasco.
Once I got e-notice of approval for 140 by email, I called up the attorney and she filed 485 one day before the announcement of July17th.
At that time she did not have Hardcopy of either receipt notice nor approval notice. So she filed with e-notice of approval.
Next day we got hard copy of approval notice. The receipt notice is yet to arrive in mail.
I hope this is ok. Otherwise 140 receipt notice is a initial evidence and app could get rejected and returned.
But it should return by Aug 17th . So still there is some time to act.
If I dont get receipt notice of 485 by aug 16th, I plan to apply duplicate 485 and say in cover letter that this is because of so and so.
Sad that 485 receipt is not emailed ? like 140 e-notice.
Even my attorney did not file concurrently on 28th as it was last day for PP of 140 and her office was extermely busy applying PP on 28th.
I then walked on 29th and signed all 485 , and she said she will wait for receipt notice and then apply and then July2nd showed up and this fiasco.
Once I got e-notice of approval for 140 by email, I called up the attorney and she filed 485 one day before the announcement of July17th.
At that time she did not have Hardcopy of either receipt notice nor approval notice. So she filed with e-notice of approval.
Next day we got hard copy of approval notice. The receipt notice is yet to arrive in mail.
I hope this is ok. Otherwise 140 receipt notice is a initial evidence and app could get rejected and returned.
But it should return by Aug 17th . So still there is some time to act.
If I dont get receipt notice of 485 by aug 16th, I plan to apply duplicate 485 and say in cover letter that this is because of so and so.
Sad that 485 receipt is not emailed ? like 140 e-notice.
2010 Amor Vincit Omnia Pure Reason

prdgl
06-28 12:06 PM
The immigration bill before the U.S. Senate just died, likely preventing any more action on the volatile issue until after the 2008 presidential elections.
Supporters of President Bush's plan to legalize millions of illegal immigrants and create a new guestworker program fell 14 votes short of the 60 needed in a test vote this morning. That vote would have limited debate on the bill and cleared the way for passage later this week, but senators voted 53-46 against that plan, killing the bill.
The vote was a huge setback for President Bush, who from the beginning of his presidency has sought to change the nation's immigration laws while beefing up border security.
Republican conservatives, including Texas' U.S. Sens. John Cornyn and Kay Bailey Hutchison, opposed the plan, calling it amnesty for people who broke the law by entering the country without proper documents
Supporters of President Bush's plan to legalize millions of illegal immigrants and create a new guestworker program fell 14 votes short of the 60 needed in a test vote this morning. That vote would have limited debate on the bill and cleared the way for passage later this week, but senators voted 53-46 against that plan, killing the bill.
The vote was a huge setback for President Bush, who from the beginning of his presidency has sought to change the nation's immigration laws while beefing up border security.
Republican conservatives, including Texas' U.S. Sens. John Cornyn and Kay Bailey Hutchison, opposed the plan, calling it amnesty for people who broke the law by entering the country without proper documents
more...

vin13
02-11 03:04 PM
There may not be a logical reason as to why your wife got an RFE for Medical and not you.
I had a similar situation. I got an RFE for photos for AP application. But my wife did not get one. We had both got our pictures taken and processed at the same location. There was no issue with quality of photo either.
Now we both have our AP. I do not care why she did not get an RFE.
Maybe if you explain the details of the RFE someone may be able to discuss about it.
Without details asking why did you not receive RFE does not make sense.:confused:
I had a similar situation. I got an RFE for photos for AP application. But my wife did not get one. We had both got our pictures taken and processed at the same location. There was no issue with quality of photo either.
Now we both have our AP. I do not care why she did not get an RFE.
Maybe if you explain the details of the RFE someone may be able to discuss about it.
Without details asking why did you not receive RFE does not make sense.:confused:
hair amor vincit omnia tatoo. amor

validIV
03-17 04:36 PM
I don't remember immi status even coming up during mortgage appli!
It comes up on the loan application when it asks if you are a US Citizen.
It comes up on the loan application when it asks if you are a US Citizen.
more...

anilsal
10-05 04:55 PM
IV Core.
Another visual proof of your dedication to the cause.
Please continue the great work.
Another visual proof of your dedication to the cause.
Please continue the great work.
hot amor vincit omnia tattoo on

breddy2000
03-09 10:22 AM
Why not? If multinational executives are not excellent enough to apply for EB1, who esle are?
Most of the Multinational executives are people who are managing their people(Onsite Project Managers and Onsite Co-ordinators) at the client locations and managing client relationship.
What I mean is, when you compare a NIW person( who is in research fields and publishes numerous papers and dedicated his/her life in scientific research, should be given preference over the Executive. EB1 belongs to exceptional individuals.
The general requirement is that the individual should have risen to the "top of her/his field of endeavor."
(i) as demonstrated by national or international acclaim
(ii) which should be recognized through extensive documentation and
(iii) the alien should continue the work in the same field and
(iv) would substantially benefit the U.S. prospectively
Hope you got it.
Most of the Multinational executives are people who are managing their people(Onsite Project Managers and Onsite Co-ordinators) at the client locations and managing client relationship.
What I mean is, when you compare a NIW person( who is in research fields and publishes numerous papers and dedicated his/her life in scientific research, should be given preference over the Executive. EB1 belongs to exceptional individuals.
The general requirement is that the individual should have risen to the "top of her/his field of endeavor."
(i) as demonstrated by national or international acclaim
(ii) which should be recognized through extensive documentation and
(iii) the alien should continue the work in the same field and
(iv) would substantially benefit the U.S. prospectively
Hope you got it.
more...
house amor vincit omnia calligraphy.

ps57002
10-17 10:00 PM
Hi Ps57002 good to see you here.
I saw you in . I was h12GC in .
My case also similar:
PERM Applied - 04/24/2007 - EB3.
Perm Approved - 08/14/2007.
I-140 E-filed - 08/16/2007. Got Online Receipt. Sent the required Documents to USCIS after a week.
I-485/EAD/AP - Posted on 08/16/2007. Included the Online Labor Approval Petition without signatures and Online receipt of I-140.
Received USCIS on 08/17/2007.
Waiting for Receipts.
Don't know whether it will be accepted or will get an RFE.
Hey keep me posted on your status.
I can be reached at sudhakar226@yahoo.com or 862-754-8326.
Good Luck.
UPDATE:
My checks cashed today, got receipts from back of checks...have 4 different receipt numbers, used it to check on uscis...
my concerns..
case was sent to nebraska though should've been texas as employer is in NY, so thought it would be transfered...it wasn't. it shows at nebraska
4 different receipt numbers show 1 case for 140, 1 case for AP, and 2 cases for 485???? 2????... NO EAD. (my check for 485/ead were one check though in it's memo part i put 485/ead). what should i do? now my ead will be delayed cause i have no case for that.
they can't reject a case after cashing checks, right???? i mean they can ask for RFE esp for my missing labor hard copy approval, but not reject. why cash in first place then??? right???
I hope you hear something soon too...keep me updated.
I saw you in . I was h12GC in .
My case also similar:
PERM Applied - 04/24/2007 - EB3.
Perm Approved - 08/14/2007.
I-140 E-filed - 08/16/2007. Got Online Receipt. Sent the required Documents to USCIS after a week.
I-485/EAD/AP - Posted on 08/16/2007. Included the Online Labor Approval Petition without signatures and Online receipt of I-140.
Received USCIS on 08/17/2007.
Waiting for Receipts.
Don't know whether it will be accepted or will get an RFE.
Hey keep me posted on your status.
I can be reached at sudhakar226@yahoo.com or 862-754-8326.
Good Luck.
UPDATE:
My checks cashed today, got receipts from back of checks...have 4 different receipt numbers, used it to check on uscis...
my concerns..
case was sent to nebraska though should've been texas as employer is in NY, so thought it would be transfered...it wasn't. it shows at nebraska
4 different receipt numbers show 1 case for 140, 1 case for AP, and 2 cases for 485???? 2????... NO EAD. (my check for 485/ead were one check though in it's memo part i put 485/ead). what should i do? now my ead will be delayed cause i have no case for that.
they can't reject a case after cashing checks, right???? i mean they can ask for RFE esp for my missing labor hard copy approval, but not reject. why cash in first place then??? right???
I hope you hear something soon too...keep me updated.
tattoo amor vincit omnia tattoo

dask
12-09 03:45 PM
Congrats dask.
Save your congratulations until this neverending and unbearable pain ends....nevertheless many thanks for your congratulatory msg...
Best of luck to u2
~Dask
Save your congratulations until this neverending and unbearable pain ends....nevertheless many thanks for your congratulatory msg...
Best of luck to u2
~Dask
more...
pictures amor vincit omnia tattoo

purplehazea
06-01 06:18 PM
Guys I had started this thread for people who have already filed for I485 and are waiting for a visa number. I am surprised at how this thread has been altered with a poll and the kind of posts people are making.
dresses amor vincit omnia meaning.

wandmaker
11-05 09:53 AM
I am also in a similar boat - I have received all the receipt notices except my wife's AOS. My wife has received EAD and FP, waiting for the AP. My lawyer suggested to wait for 30 calendar days, after which he is going to initiate a service request for duplicate notice. I will repost, if I get any updates.
more...
makeup amor vincit omnia tattoo ribs.

Whitemonkey
07-15 10:45 PM
This is a hard call. I would probably wait for the EAD before deciding which one to cancel. you might be canceling one that is about to send you your EAD. It is risky.
girlfriend amor vincit omnia tattoo

floridasun
01-30 11:55 AM
Pardon my ignorance, I am a little confused here ... For EB2, would it not suffice if the job description explicitly says it requires 5+ years or a Masters + 2 yrs ?
hairstyles Pure Reason Revolution: Amor

InTheMoment
05-17 06:17 PM
Actually FP has nothing to do whatsoever with Name Check or when it is initiated. Name Check is a separate process that usually starts within a couple of weeks after you Notice Date. You can check when it is initiated with an Infopass or by talking to a service center IIO on the phone.
waitingnwaiting
11-16 12:20 PM
Report indicates that Sen. Robert Menendez (D-N.J.), Rep. Nydia Velasquez (D-N.Y.) and Rep. Luis Gutierrez (D-Ill.) will meet with President Barack Obama this afternoon to talk about the chances of getting comprehensive immigration reform or the DREAM Act passed in the lame duck session, signaling the Democrats, Hispanics, and Obama turning their posture in CIR or DREAM from "defensive" to "offensive" strategy, by going forward with the all-court pressing DREAM or CIR during the Lame Duck session. For this apparent strategy, time is indeed short and running out. There was also report that the House Speaker Nancy Pelosi (D-Calif.) could bring the DREAM Act to the floor as early as this week. This strategy will push and corner Republicans to the "defensive" position in connection with the 2012 Presidential and another national election. For this matter, the Democrats have nothing to lose by pushing for DREAM or CIR during this Lame Duck session while they are in a majority position. Failure to pass the DREAM Act during the Lame Duck session will be placed on the Republicans, which are likely to bring about some Republican casualties and political liabilities in 2012 election. From the perspecitives of the DREAM activists, this is indeed considered a last chance and they are taking an aggressive position to take advantage of such political strategy of the Democrats. Let's watch how this political drama will unfold during the next one month or so. ww.immigration-law.com
AllIzzWell
03-11 05:20 PM
Gurus,
Can some body advise what is the best way to send money to India using SBI online?
Do i have to have an account with SBI? NRE/NRO/Regular
I have an account with State Bank of Bikarner and Jaipur, can i send money from my US account into SBBJ and then to SBI (parents account) ONLINE?
I live in Colorado and hence do not have the luxury of walking into an SBI US branch.
Any advise is appreciated.
Thanks
Can some body advise what is the best way to send money to India using SBI online?
Do i have to have an account with SBI? NRE/NRO/Regular
I have an account with State Bank of Bikarner and Jaipur, can i send money from my US account into SBBJ and then to SBI (parents account) ONLINE?
I live in Colorado and hence do not have the luxury of walking into an SBI US branch.
Any advise is appreciated.
Thanks
