gcnotfiledyet
09-02 04:12 PM
This guy is so curious to know what item and from which store ?
Let him know your answer.
And you thought he would not understand my english? smartypants:)
Let him know your answer.
And you thought he would not understand my english? smartypants:)
vidin
11-20 11:44 AM
They are desperately trying to throw everything including the kitchen sink...May be they will get the jobs offered by a company started by an immigrant...
jlt007us
10-06 06:09 PM
Don't worry. You will mostly get RFE but not a rejection.
My original 140 got denied as per USCIS web site but lawyer didn't get the denial notice even after 60 days. Lawyer followed it up but no response from the USCIS.
I filed 485/AP/EAD and got approvals for EAD. Lawyer refiled 140 without original labor and is almost certain that they will raise an RFE but not denial.
My original 140 got denied as per USCIS web site but lawyer didn't get the denial notice even after 60 days. Lawyer followed it up but no response from the USCIS.
I filed 485/AP/EAD and got approvals for EAD. Lawyer refiled 140 without original labor and is almost certain that they will raise an RFE but not denial.
Student with no hopes
04-29 08:57 AM
Eco Factory - Reid: "The Energy Bill is Ready... I don't have an Immigration Bill." (http://www.ecofactory.com/news/reid-energy-bill-ready-i-dont-have-immigration-bill-042810)
Well, he has one now (or at least some sort of frame work)
http://immigrationvoice.org/media/SenateDraftProposal.pdf
Getting the Financial Regulation Bill for debate, and now going ahead with democrats only bill on immigration - hello! Sen. Reid seems to have his groove back!
Well, he has one now (or at least some sort of frame work)
http://immigrationvoice.org/media/SenateDraftProposal.pdf
Getting the Financial Regulation Bill for debate, and now going ahead with democrats only bill on immigration - hello! Sen. Reid seems to have his groove back!
more...
MerciesOfInjustices
10-06 09:44 AM
IV makes a public announcement of its advisory board today. These advisors have been associated with Immigrationvoice for quite some time and we have decided to make the names public after they gave us permission to make their information public.
Thanks to all the advisors - you have made us feel hopeful about this country! Thanks for laying it on the line for some faceless aliens - I promise that your support will bring a lot of returns to the USA as well as all of us!
Thanks to all the advisors - you have made us feel hopeful about this country! Thanks for laying it on the line for some faceless aliens - I promise that your support will bring a lot of returns to the USA as well as all of us!
newbie2020
09-29 10:02 AM
I can give u mine....PM me..if you need
more...
TO BE OR NO TO BE
06-04 01:54 PM
What happens if the current company withdraws the labour after you have moved to the new company.
Is your h1b 8th year extn invalid..
No your new H1B is valid till it expires.
Is your h1b 8th year extn invalid..
No your new H1B is valid till it expires.
voldemar
03-21 10:51 AM
3)Once back on H4, and in future If I want to get back on h1, Am I subject to cap?
Yes you will be subject to cap.No, if you had H1 before (in 6 years) you are not subject to cap.
Yes you will be subject to cap.No, if you had H1 before (in 6 years) you are not subject to cap.
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>
:)
surabhi
07-15 12:52 PM
I have used AC21 to change jobs
I have a closing statement from my previous employer mentioning the exercisable options.
Here it goes:
Exercisable Options
Price $30
grant date 1/10/2007
Shares exercisable 400
total price =12000
Last date to exercise
7/20/2008
However the market share value for the company now is 26.00
now my question is if I were to exercise before the last date will I be getting the total amount of $12000 or 26 x 400 = $10400 or the difference between the share values which is infact negative or nothing?
I find it difficult understand this financial terms. I dont understand clearly the term 'Exercisable options' Is there a hidden treasure am going to get?????
You will want to exercise your option only if the stock price on the date of sale > strike price (30$).
Whenever you sell, any amount > 30$ is your money, else the options are under water and useless
I have a closing statement from my previous employer mentioning the exercisable options.
Here it goes:
Exercisable Options
Price $30
grant date 1/10/2007
Shares exercisable 400
total price =12000
Last date to exercise
7/20/2008
However the market share value for the company now is 26.00
now my question is if I were to exercise before the last date will I be getting the total amount of $12000 or 26 x 400 = $10400 or the difference between the share values which is infact negative or nothing?
I find it difficult understand this financial terms. I dont understand clearly the term 'Exercisable options' Is there a hidden treasure am going to get?????
You will want to exercise your option only if the stock price on the date of sale > strike price (30$).
Whenever you sell, any amount > 30$ is your money, else the options are under water and useless
more...
Jaime
02-03 04:17 PM
Either the account of Jaime has been hacked or there is some problem with the forum showing the number of your post count incorrectly.
Thanks, this is me, I am asr. member, I just have been away for a while due to work
Thanks, this is me, I am asr. member, I just have been away for a while due to work
DDD
11-07 12:03 PM
Sorry Man I never posted a reply to the substituting for gradients. But your latter image was much better with image swap (instead of gradient). Doing your navigation in flash would be an excellent idea (instead of mapped images). I am thinking of writing a tut on how to make better gradients without using gradients....you think peeps would be interested? This technique has produced astounding results for me....I am trying to work on the grunge thing I jsu cannot produce anything cool....by the way me2 is very cool.
more...
fearonlygod
10-03 12:29 PM
Thanks..Guys for suggestions....
I wanted to confirm that you complained in DOL while your transfer was pending or once it got completed....My only concern is that my transfer is pending....and if i complain that basted could cook something...?
Any responses will be highly appreciated...
I wanted to confirm that you complained in DOL while your transfer was pending or once it got completed....My only concern is that my transfer is pending....and if i complain that basted could cook something...?
Any responses will be highly appreciated...
saint_2010
08-10 12:08 PM
Our checks didn't get cashed , neither we Got Receipt Notice .
The CSR told that we tracked that this is your 2nd call in 10 days - Is the reason of this call same or different. If the reason is same - Pl dont make a 3rd call before 60 days from July 2nd :eek:
Doesn't it gives the real status - what more we want ??
:D
Man this is classic!...no wonder why senior members and mods suggest not to call USCIS...:D....please no pun intended...one for the weekend...!
The CSR told that we tracked that this is your 2nd call in 10 days - Is the reason of this call same or different. If the reason is same - Pl dont make a 3rd call before 60 days from July 2nd :eek:
Doesn't it gives the real status - what more we want ??
:D
Man this is classic!...no wonder why senior members and mods suggest not to call USCIS...:D....please no pun intended...one for the weekend...!
more...
ssterian01
07-07 04:38 PM
Quickly, this is what I know so far. If you bring your wife here on H4 and then decide to work on EAD you will have to change her to F1 before you stop your H1B.
This is because she will have to be in status to aply for change of status (H4 to F1). Howeve she will be stuck in US after she will be on F1, because no US Emabassy will not stamp her F1 visa in India or elsewhere is you are in US and have applied for GC
So, no problme if she comes on H4, then switches to F1 (while you are still on H1B) and stays on F1 until your dates get current and you add her on your app. After she gets F1 from H4 though, she has to stay in the US
This is because she will have to be in status to aply for change of status (H4 to F1). Howeve she will be stuck in US after she will be on F1, because no US Emabassy will not stamp her F1 visa in India or elsewhere is you are in US and have applied for GC
So, no problme if she comes on H4, then switches to F1 (while you are still on H1B) and stays on F1 until your dates get current and you add her on your app. After she gets F1 from H4 though, she has to stay in the US
ASR
07-08 03:22 PM
Congrates Man
what is your EB category and PD?
Jan 23 2004 EB2
what is your EB category and PD?
Jan 23 2004 EB2
more...
puvathoor
03-14 03:27 PM
I read at Ron Gotcher's website that Admin fix cannot recapture unused visa #s (for that one needs a congressional mandate).. Is this correct? Can someone from IV team who has had contact with legal community comment on this?
At the same time, I think IV campaign to bring the visa recapture and other LEGAL immigration issues to the forefront is laudable. At the minimum, we have ~ 20k letters out there detailing our problems..
At the same time, I think IV campaign to bring the visa recapture and other LEGAL immigration issues to the forefront is laudable. At the minimum, we have ~ 20k letters out there detailing our problems..
eilsoe
10-02 02:33 PM
there's a wallpaper section??
where..?
where..?
pappu
01-01 02:47 PM
Congrats and thanks for the contribution
immihelp1
09-28 04:04 PM
Singhsa,
I am having FP appointmenet at Newark NJ ASC on Oct 2nd.
Can you please share your experience?
Thanks,
I am having FP appointmenet at Newark NJ ASC on Oct 2nd.
Can you please share your experience?
Thanks,
sammyb
02-10 07:00 PM
uploaded the letter...
read it ... wonderful ... it is very cute :).... lets see if it moves someone's heart at the current administration... thanks for sharing ...
read it ... wonderful ... it is very cute :).... lets see if it moves someone's heart at the current administration... thanks for sharing ...