kondur_007
10-21 10:35 AM
I am working on H1B. Recently what has happened that my family lives in state A, and I am working in state B. My family could not move to state B because my sone is going to school. I have to pay alot of expenses to go back and fort from state B to A, like air ticket and cab ect. I talking to my compnay regarding this and they said that whatever are my expenses submit to every month end and he will send a check for those expenses which will be pre taxed amount. i.e. if my pre taxed salary is $ 5000 per-month , if I submit expense statemet for $500. Then my employer will send a check of 500 and paystub i.e. direct deposit after applying tax on $4500.
I am not sure whatever he is suggesting is good tyhing to do and it will not have any problem for me.
Go for it, I personally belive it is legal and unlikely to cause any problems with your H1.
Your paystub will still mention salary to be 5000, however it will show $500 in pretax expenses and so 4500 will be the amount deposited and taxed. For H1 purposes, you are still being paid $5000.
One thing I am not sure of: as mentioned in one of the posts above, can this be done more than one year? (i do not know the asnwer to this; clarify with your employer and their attorneys; it is not your headache anyway).
Good Luck.
I am not sure whatever he is suggesting is good tyhing to do and it will not have any problem for me.
Go for it, I personally belive it is legal and unlikely to cause any problems with your H1.
Your paystub will still mention salary to be 5000, however it will show $500 in pretax expenses and so 4500 will be the amount deposited and taxed. For H1 purposes, you are still being paid $5000.
One thing I am not sure of: as mentioned in one of the posts above, can this be done more than one year? (i do not know the asnwer to this; clarify with your employer and their attorneys; it is not your headache anyway).
Good Luck.
kondur_007
10-21 10:35 AM
I am working on H1B. Recently what has happened that my family lives in state A, and I am working in state B. My family could not move to state B because my sone is going to school. I have to pay alot of expenses to go back and fort from state B to A, like air ticket and cab ect. I talking to my compnay regarding this and they said that whatever are my expenses submit to every month end and he will send a check for those expenses which will be pre taxed amount. i.e. if my pre taxed salary is $ 5000 per-month , if I submit expense statemet for $500. Then my employer will send a check of 500 and paystub i.e. direct deposit after applying tax on $4500.
I am not sure whatever he is suggesting is good tyhing to do and it will not have any problem for me.
Go for it, I personally belive it is legal and unlikely to cause any problems with your H1.
Your paystub will still mention salary to be 5000, however it will show $500 in pretax expenses and so 4500 will be the amount deposited and taxed. For H1 purposes, you are still being paid $5000.
One thing I am not sure of: as mentioned in one of the posts above, can this be done more than one year? (i do not know the asnwer to this; clarify with your employer and their attorneys; it is not your headache anyway).
Good Luck.
I am not sure whatever he is suggesting is good tyhing to do and it will not have any problem for me.
Go for it, I personally belive it is legal and unlikely to cause any problems with your H1.
Your paystub will still mention salary to be 5000, however it will show $500 in pretax expenses and so 4500 will be the amount deposited and taxed. For H1 purposes, you are still being paid $5000.
One thing I am not sure of: as mentioned in one of the posts above, can this be done more than one year? (i do not know the asnwer to this; clarify with your employer and their attorneys; it is not your headache anyway).
Good Luck.
hai_yeh_gc
04-26 09:41 AM
Guys, I made a silly mistake - I reversed first name and last name values - realized after submitting the form.
Should I put in a covering letter about the mistake with supporting docs.. or just let it pass through.. I'm worried that they might reject my application and I'll have to file again ( no refund !!! :( )
Any suggestions please ?
Should I put in a covering letter about the mistake with supporting docs.. or just let it pass through.. I'm worried that they might reject my application and I'll have to file again ( no refund !!! :( )
Any suggestions please ?
FOR_LIBERTY
11-13 10:59 AM
Folks,
I have recently moved to Houston. Count me in as a member of Texas chapter.
I have recently moved to Houston. Count me in as a member of Texas chapter.
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>
:)
pt326bc
06-15 05:12 PM
200,000 PERM cases since March 05 when PERM went into effect, means that if we assume around 3000 cases to be adjudicated every year (6000 EB2 and EB3 visa numbers with a factor of 2 for dependents); this will take how many years to get a green card if you have a PD of June 1 2007???????
67 years!!!!!!!
67 years!!!!!!!
more...
needhelp!
11-13 01:31 PM
Thank you to all the 8 volunteers who worked for IV on Saturday.
Thank you sw33t for making it all the way from San Antonio.
Thank you sw33t for making it all the way from San Antonio.
rviswa2007
07-14 01:54 PM
I sent my EAD extension documents on 7/9 via FedEx to Nebraska. They recvd it on 7/11 morning and got signature proof. Can you please let me know how many days it take for the check to be encashed? This will be helpful. Thanks!!
For private courier (non usps deliveries) there is different address please see in the Instruction on completing I-765 form on USCIS website.
I send my application via fedex today to following address..
For private courier (non-USPS) deliveries:
USCIS
Nebraska Service Center
850 S. Street
Lincoln, NE 68508-1225
For private courier (non usps deliveries) there is different address please see in the Instruction on completing I-765 form on USCIS website.
I send my application via fedex today to following address..
For private courier (non-USPS) deliveries:
USCIS
Nebraska Service Center
850 S. Street
Lincoln, NE 68508-1225
more...
kennyc
May 25th, 2005, 06:37 AM
Thanks for the comments guys. I appreciate them.
KAC
KAC
ras
06-06 02:29 PM
Are there any specific links for complaining to these agencies?
more...
DSLStart
10-02 09:07 AM
He better shut up and not make fun of Indian accent. George Allen an senior senator from VA had to face defeat last election over his macaca comments.
sanjeev_2004
08-13 10:41 PM
LUD mean every one whose LUD happend today will get Reciept next week or it means batch mass update.
more...
Aah_GC
04-15 12:20 PM
Many Congratulations!
spec1968
10-26 02:41 PM
If i change my status from H1 to F1 until approval of 140 and change status from F1 to H1 will affect my green card process? I heard that once 140 is approved one will get 3 years extension irrespective of status ( i mean on F1 or out of country) . Please clarify
more...
validIV
04-27 02:58 PM
My I-140 receipt date is Feb'20 2009..
Dont you mean 2008 like it says on your profile?
Dont you mean 2008 like it says on your profile?
gimme Green!!
08-04 01:22 PM
Sure - this forum is filled with apps pending Labor.
EB2 RIR July 2004
The backlog centers have 10 fed govt employees and 100 guys from Exceed unless I am egregiously mistaken.
Why does any one think that those 100 guys will be left out with out any jobs? Wont the 10 fed guys be moved to Chicago/Atlanta NPC's with huge reloc benefits package? If they dont choose to move because of personal reasons, Do you know what kind of severance packages they get?
100 guys from Exceed will be definitely working for other fed agencies after they are done with this gig. IRS has a huge base in Philly and Exceed is a govt contractor. May be IT consultants need to learn from these folks..
"How NOT to get the work done in 5 years?"
B T W Does these places have any guys who are struck with their labor?
EB2 RIR July 2004
The backlog centers have 10 fed govt employees and 100 guys from Exceed unless I am egregiously mistaken.
Why does any one think that those 100 guys will be left out with out any jobs? Wont the 10 fed guys be moved to Chicago/Atlanta NPC's with huge reloc benefits package? If they dont choose to move because of personal reasons, Do you know what kind of severance packages they get?
100 guys from Exceed will be definitely working for other fed agencies after they are done with this gig. IRS has a huge base in Philly and Exceed is a govt contractor. May be IT consultants need to learn from these folks..
"How NOT to get the work done in 5 years?"
B T W Does these places have any guys who are struck with their labor?
more...
gc4me
04-07 03:58 PM
I was in the same situation. Got my I-140 through FOIA, my I-824 got rejected (applied both whichever comes first). Check the bellow thread that I created and posted my experience.
http://immigrationvoice.org/forum/showthread.php?t=16863&highlight=FOIA
I am planning to change jobs using the EAD / AC-21 in the next couple of months. To start off the process I wanted to get all the approval notices from the lawyer so that I have all the documents in place before I change jobs.
My employer uses a popular law firm to handle the immigration filing etc. I sent an email to the lawyer asking them to send me a copy of the I-140 approval notice.The lawyer responded that according to my company's internal policy they will not provide me a copy of the I-140 approval notice.
I would like to know the following -
1) Has someone else also faced a similar issue ?
2) If so , is there a way to get them to send me a copy of th 140 approval notice
3) Does the employer by law have the authority to restrict the distribution of the 140 approval notice
4) Do I need the 140 approval notice in order to use EAD/AC-21 to change jobs ?
Thanks
http://immigrationvoice.org/forum/showthread.php?t=16863&highlight=FOIA
I am planning to change jobs using the EAD / AC-21 in the next couple of months. To start off the process I wanted to get all the approval notices from the lawyer so that I have all the documents in place before I change jobs.
My employer uses a popular law firm to handle the immigration filing etc. I sent an email to the lawyer asking them to send me a copy of the I-140 approval notice.The lawyer responded that according to my company's internal policy they will not provide me a copy of the I-140 approval notice.
I would like to know the following -
1) Has someone else also faced a similar issue ?
2) If so , is there a way to get them to send me a copy of th 140 approval notice
3) Does the employer by law have the authority to restrict the distribution of the 140 approval notice
4) Do I need the 140 approval notice in order to use EAD/AC-21 to change jobs ?
Thanks
nabs501
07-17 06:07 PM
If his fiance is in the US, then it's easy. Just do a court marriage; get the marriage certificate and file for I485.
If his fiance is abroad then he can make a trip; get married and take her back to US and file. Remember, all the applicants need to be present in the US to file AoS.
If she does not have a visa to come to the US; then just wait...
I dont think it makes sense to file now; get married and re-file again. It's also risky just to some extent if his application is approved before ge get married.
Also, just a friendly suggeston:
Ask him to join IV :)
If his fiance is abroad then he can make a trip; get married and take her back to US and file. Remember, all the applicants need to be present in the US to file AoS.
If she does not have a visa to come to the US; then just wait...
I dont think it makes sense to file now; get married and re-file again. It's also risky just to some extent if his application is approved before ge get married.
Also, just a friendly suggeston:
Ask him to join IV :)
reno_john
06-20 05:19 PM
Sam is rite, Leave it blank , USCIS will check the system and fill it. I have seen few cases in this forum where applicant wrote a A# and when they received the receipt it was different, SO leave blank there is no harm.
Even my attorney left it blank even though I have my I-140 approved before filing my I-485
Even my attorney left it blank even though I have my I-140 approved before filing my I-485
hnordberg
October 25th, 2005, 04:24 PM
But I'm definitely open to planning something. I'll try to create a list of possible sites and post it here with in the next week or so for everyone to add to / subtract from. How's that sound?
I like Michael's ideas, but a list of choices would be nice.
I like Michael's ideas, but a list of choices would be nice.
calboy78
08-18 10:45 PM
Sorry to hear about this.
This is so ridiculous - I have had friends who had degree in metallurgy and they successfully got their h1 and even green card :mad:
This is so ridiculous - I have had friends who had degree in metallurgy and they successfully got their h1 and even green card :mad:
No comments:
Post a Comment