knowDOL
06-20 07:14 AM
I hope supers789 gets the gist of retrogression and will plan his future accordingly for a way to live without GC for the next 3 or 4 years.
wallpaper david and victoria beckham pic
rahul2699
05-19 11:13 AM
My H1B expired, and they are now just working on the labor certification process, so I have left the country and working outside the US. Someone did tell me that after I have been out for a 12 month period they may get me back under a new H1B. Is this correct? Reason I ask is that I have been out of the US for 4 months, and they seem to be working very slow on my Labor Cert, and I know once the this is submitted I have to wait a further 12 months, so wanted to see if it is viable to get a new H1B. Any thoughts would be appreciated.
Yes if you live out of US for at least a year after the full H-1B term, you can apply for a new H-1B. If i were you, i'll keep the labor process going while applying for a new H-1 because GC is for future employment and if anything you can retain the priority date...
Yes if you live out of US for at least a year after the full H-1B term, you can apply for a new H-1B. If i were you, i'll keep the labor process going while applying for a new H-1 because GC is for future employment and if anything you can retain the priority date...
smartboy75
09-28 07:27 PM
bump
^^^^^^^
^^^^^^^
2011 Victoria Beckham and Hermes
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>
:)
more...
latbsol
02-25 11:19 AM
Hey, thanks for the feedback and clarifications. Good to know that my EB2 will not affect the existing EB3. Yeah, I agree things are kind of grey when it comes to using the on-the-job work experience. I guess it depends on individual circumstances and there is no certainity about what will apply where.
It would be really nice if the USCIS publishes some clear written material on these rules and regulations, like a FAQs that answers the most nagging questions someone has about Employment Based immigration. Does something like that exist? Does anyone know?
Thanks
It would be really nice if the USCIS publishes some clear written material on these rules and regulations, like a FAQs that answers the most nagging questions someone has about Employment Based immigration. Does something like that exist? Does anyone know?
Thanks
Yeldarb
11-12 04:28 PM
www.esrucehtesrever.com - A site I made with XHTML and CSS. It uses PHP/mySQL for the entries to sign a petition with the intent of Reversing the Curse of the Chicago Cubs.
www.bandstation.com - A site for bands looking for new members. It utilizes CSS for the design, and has a full PHP/mySQL backend for advertisement display and users. Users can register and post their own information and job offers for their respective state.
www.bandstation.com - A site for bands looking for new members. It utilizes CSS for the design, and has a full PHP/mySQL backend for advertisement display and users. Users can register and post their own information and job offers for their respective state.
more...
sam_austin77
12-18 11:34 PM
Team,
I need advise. Some should respond to my query. It is still unanswered after 190 views. I need to make some quick decisions. Naukri ka sawaal hai!!
Thanks
I need advise. Some should respond to my query. It is still unanswered after 190 views. I need to make some quick decisions. Naukri ka sawaal hai!!
Thanks
2010 Pregnant Victoria Beckham
GC20??
08-20 09:51 AM
My 140 was approved in 2007 and today I got a text message on phone that my application is sent to Nebraska, NE to review and status changed from Approved to Initial review.
Had any one been in same situation or had seen this before with some one else?
Two years after my I-140 was approved, status changed to below. My attorney filed my I-140 choosing CP. CP applications are processed at DOS. As I applied for I-485 in July'07 DOS sent it back to USCIS. Your case looks different. Well I have heard of instances where USCIS reviews approved applications I hope your case is a simple computer glitch. I-140 is employers application so you cannot contact customer service or IO regarding that. Ask your attorney or employer to contact USCIS.
Your priority date is current for more than 6 months now. Did you take any steps to expedite (congressman, senator or writ of mandamus)?
"Post Decision Activity
On March 20, 2008, a USCIS office received this case from the State Department with a request that we review it. We will notify you when we complete our review, or if we need something from you. If you move while this case is pending, please use our Change of Address online tool to update your case with your new address or call our customer service center at 1-800-375-5283."
Had any one been in same situation or had seen this before with some one else?
Two years after my I-140 was approved, status changed to below. My attorney filed my I-140 choosing CP. CP applications are processed at DOS. As I applied for I-485 in July'07 DOS sent it back to USCIS. Your case looks different. Well I have heard of instances where USCIS reviews approved applications I hope your case is a simple computer glitch. I-140 is employers application so you cannot contact customer service or IO regarding that. Ask your attorney or employer to contact USCIS.
Your priority date is current for more than 6 months now. Did you take any steps to expedite (congressman, senator or writ of mandamus)?
"Post Decision Activity
On March 20, 2008, a USCIS office received this case from the State Department with a request that we review it. We will notify you when we complete our review, or if we need something from you. If you move while this case is pending, please use our Change of Address online tool to update your case with your new address or call our customer service center at 1-800-375-5283."
more...
needhelp!
01-28 04:39 PM
Sabeer Bhatia - Hotmail
Suhas Patil - Cirrus Logic
Narinder Kapany - Father of Fiber Optics
Vinod Dham - Father of Pentium
Deepak Chopra
Suhas Patil - Cirrus Logic
Narinder Kapany - Father of Fiber Optics
Vinod Dham - Father of Pentium
Deepak Chopra
hair DAVID AND VICTORIA BECKHAM
corleone
11-13 09:30 AM
Well friend.. If you are not aware of any specific culture or any nation's tradition in specific, then please dont comment anything.
Happy Diwali was targeted for the readers who cared to understand it at the first place. and BTW you NEVER answer any of his questions to start with..
Directing a newcomer to Google search is NOT a intelligent answer if you thought you answered any of his questions..
Never mind.. I think you got my message.
First off, I did answer his question, read my first post.
Second, directing to the google didn't come from me, he is the one who pointed me out to the google, I just copy/past his answer in my reply!!!
Happy Diwali was targeted for the readers who cared to understand it at the first place. and BTW you NEVER answer any of his questions to start with..
Directing a newcomer to Google search is NOT a intelligent answer if you thought you answered any of his questions..
Never mind.. I think you got my message.
First off, I did answer his question, read my first post.
Second, directing to the google didn't come from me, he is the one who pointed me out to the google, I just copy/past his answer in my reply!!!
more...
paskal
03-03 05:51 PM
Hello there,
This is great news although I have a question. My wife is a endodontist (dentist, speciality in root canal surgery), (H1, EB2 India). She teaches at a university and practises in there. She has some publications as well (she does not qualify for EB1, as we dont want to go for a tenure track) Will she qualify under this physicians bill? She has 6 years experience in this filed.
Thank you
unfortunately though i suspect that the Conrad programs define participants as "physicians" which presumably does not include dentists...how about you check with your state health department?
This is great news although I have a question. My wife is a endodontist (dentist, speciality in root canal surgery), (H1, EB2 India). She teaches at a university and practises in there. She has some publications as well (she does not qualify for EB1, as we dont want to go for a tenure track) Will she qualify under this physicians bill? She has 6 years experience in this filed.
Thank you
unfortunately though i suspect that the Conrad programs define participants as "physicians" which presumably does not include dentists...how about you check with your state health department?
hot David Beckham Tattoo Studio
Irs
02-10 01:43 PM
key note....Document and have everything in writing/email/recording...
more...
house david beckham frontal. victoria beckham haircut instructional sheet
hopelessGC
04-28 11:45 AM
The thing is it is kind of strange that they are working on Sundays to reopen cases.
I hope things work out for good for everyone.
In my wife's case it is just a soft LUD. She is not even using that H1-B anymore.
I hope things work out for good for everyone.
In my wife's case it is just a soft LUD. She is not even using that H1-B anymore.
tattoo Victoria Beckham
eilsoe
10-15 07:27 PM
Yap me too! :)
I'm gonna go and download those brushes right now! :P
I'm gonna go and download those brushes right now! :P
more...
pictures on hubby David Beckham#39;s
x1050us
06-26 05:03 PM
My attorney says the real problem is, chennai wants a copy of primary applicants valid visa stamp if applying separately. Which means I have to get out of the country to get a visa stamp for sake of my spouse. I am thinking of flying to India and get my visa stamped along with my wife (don't know if vfs will allow me to add an application now). Any other suggestions?
dresses David Beckham looked quot
magician7989
09-05 04:49 PM
Does anybody know if Egyptians also have a backlog. Does that also mean that an egyptian with a later priority date can be accepted before an Indian because of the quotas. We need a change in the immigration system. I filed my I-485 in July w no receipt yet. Does that mean I can also expect a long wait.
more...
makeup david beckham 2011. star of
TeddyKoochu
07-29 03:26 PM
The calculations have a huge margin or error there because it is based on 2 wrongs. USCIS data is not fully accurate and tracker data is small. 2 wrongs do not make a right. It is better to trust information directly from people talking to Department of State and USCIS. Lawyers know better as they do this everyday for many years.
I must correct the following facts for you.
- Last year FB to EB was 10K approx so this year the expectations are similar according to your attorney. All these numbers are distributed proportionately amongst all categories, refer demand data document.
- The confusion seems to in the administrative language, spillover means FB to EB.
I think you should read atleast a few pages or posts on the predictions calculations thread before being judgmental. The calculations have been done from all possible sources a) Inventory b) USCIS processing volumes and from large samples from other sites. If you have better sources with facts and figures please let us know. Somebody merely saying something will happen has no meaning. With regards accuracy said what is happening months back and many people believe that his predictions are accurate and very close to reality. I believe you should read atleast the post on page 1 it may clear many of your misconceptions.
I must correct the following facts for you.
- Last year FB to EB was 10K approx so this year the expectations are similar according to your attorney. All these numbers are distributed proportionately amongst all categories, refer demand data document.
- The confusion seems to in the administrative language, spillover means FB to EB.
I think you should read atleast a few pages or posts on the predictions calculations thread before being judgmental. The calculations have been done from all possible sources a) Inventory b) USCIS processing volumes and from large samples from other sites. If you have better sources with facts and figures please let us know. Somebody merely saying something will happen has no meaning. With regards accuracy said what is happening months back and many people believe that his predictions are accurate and very close to reality. I believe you should read atleast the post on page 1 it may clear many of your misconceptions.
girlfriend david beckham 2011 calendar
140jibjab
01-11 02:36 PM
Have your attorney write a letter to USCIS, mentioning your A # and Lin # , and attaching the Notarised copy of the divorce decree and The attorney should mention to USCIS the dependent no longer valid because of the divorce, The USCIS will send you a RFE and ask you to fill the New Biographic info and send it to them.
My attorney charged 250 $ to do the above.
The form is G325 , if it A,B C or D. get the info from the attorney .
Can you please help me to get the form .
Can i complete that and send to USCIS?
Thank You...
My attorney charged 250 $ to do the above.
The form is G325 , if it A,B C or D. get the info from the attorney .
Can you please help me to get the form .
Can i complete that and send to USCIS?
Thank You...
hairstyles david and victoria beckham
ASR
07-08 02:51 PM
Hi All,
Give me all your valuable suggestions for the below case:
- Got a full time offer for my wife who is working on H1 and has EAD too.
- She decided to transfer her H1 instead of using EAD.
- My wife has sent all the necessary documentation to the lawyer.
- Mean while, we got I-485 approved. As per lawyer, upon 485 approved, H1b and EAD is no longer valid.
- We have not received I 485 approval notice through mail yet. We just have email from immigration
Our question is on what should be the valuable document that can be shown as eligibility proof to work as we have not received I-485 mail and cards yet.
Another question is: Can we visit local USCIS office for the temporary green card stamp based on the email got from immigration.
Your response is highly appreciated.
Give me all your valuable suggestions for the below case:
- Got a full time offer for my wife who is working on H1 and has EAD too.
- She decided to transfer her H1 instead of using EAD.
- My wife has sent all the necessary documentation to the lawyer.
- Mean while, we got I-485 approved. As per lawyer, upon 485 approved, H1b and EAD is no longer valid.
- We have not received I 485 approval notice through mail yet. We just have email from immigration
Our question is on what should be the valuable document that can be shown as eligibility proof to work as we have not received I-485 mail and cards yet.
Another question is: Can we visit local USCIS office for the temporary green card stamp based on the email got from immigration.
Your response is highly appreciated.
nb_des
09-21 02:39 PM
As I understand even NumbersUSA support removing the per country cap.
GCSOON-Ihope
12-14 02:48 PM
Hi,
I am trying to e-file AP renewals by myself instead of using my expensive Attorney. I have a question. If you have successfully e-filed, can you please clarify ?
1)My wife was originally admitted into the US as H-4. But now after entering US on H4 and staying on h-4 for about 6 months she used her EAD to work. Her H4 visa was renewed and is still valid even though our Visa stamping on the passport has expired. So what should her class of admission be ? Should I write H4 or EAD ? AP form asks for class of admission.
2)If filing for both self and wife, should this be mailed in two different packets or one packet , two different envelopes ?
______________________________
If you are e-filing, by definition you won't need to mail anything (or almost, see below)!
I applied on-line for both EAD and AP, and it's really very simple.
You certainly don't need to pay those ridiculous fees to an attorney for that!
After e-filing, I received two weeks later in the mail a request to send ID pictures. That's the only thing I had to mail.
I am trying to e-file AP renewals by myself instead of using my expensive Attorney. I have a question. If you have successfully e-filed, can you please clarify ?
1)My wife was originally admitted into the US as H-4. But now after entering US on H4 and staying on h-4 for about 6 months she used her EAD to work. Her H4 visa was renewed and is still valid even though our Visa stamping on the passport has expired. So what should her class of admission be ? Should I write H4 or EAD ? AP form asks for class of admission.
2)If filing for both self and wife, should this be mailed in two different packets or one packet , two different envelopes ?
______________________________
If you are e-filing, by definition you won't need to mail anything (or almost, see below)!
I applied on-line for both EAD and AP, and it's really very simple.
You certainly don't need to pay those ridiculous fees to an attorney for that!
After e-filing, I received two weeks later in the mail a request to send ID pictures. That's the only thing I had to mail.
0 comments:
Post a Comment