vishage
09-05 04:41 PM
She checked my file over 20 minutes and also talked to her supervisor. they thought USCIS maybe lost my application somewhere. right now, I am waiting response from NSC for my application. I really do not know what need to do.
wish I am the only bad luck one here and good luck to everyone.
Thanks Divakrr,
Tried this the lady on the second level said she couldnt find anything on the file yet.gues have to keep waitin
wish I am the only bad luck one here and good luck to everyone.
Thanks Divakrr,
Tried this the lady on the second level said she couldnt find anything on the file yet.gues have to keep waitin
wallpaper shoulder ird tattoo
sbabunle
08-19 01:13 AM
If you reappeal I think until the decision comes you are okay. But I'm
not sure if you can work. Need to check with an attorney.
If your job description need to match the degree you should be fine.
Did you submit a credential evaluation? I think if both of the above
things are okay, you should be through.
If I were you I will contact an attorney, like Sheela or Rajiv who
knows what they are doing.
babu
I applied for H1 extension in June'07. I got RFE on I94 first & then one more on my consulting company. Both were responded on time.. Finally, I got a denial notice on my H1 recently stating that my education background is not Computer Science related although i hold a Bachelor Degree in Computer Science. Am very upset after hearing this.
I have few questions for the experts here.
1. Is it possible for me now to apply for new H1 thru some other company?
2. Can i re-appeal the decision and stay here legally?
3. Are there any good attorneys that can give me good advice for me to take the next step?
Please let me know.. This is urgent for me right now.
Thank you all.
not sure if you can work. Need to check with an attorney.
If your job description need to match the degree you should be fine.
Did you submit a credential evaluation? I think if both of the above
things are okay, you should be through.
If I were you I will contact an attorney, like Sheela or Rajiv who
knows what they are doing.
babu
I applied for H1 extension in June'07. I got RFE on I94 first & then one more on my consulting company. Both were responded on time.. Finally, I got a denial notice on my H1 recently stating that my education background is not Computer Science related although i hold a Bachelor Degree in Computer Science. Am very upset after hearing this.
I have few questions for the experts here.
1. Is it possible for me now to apply for new H1 thru some other company?
2. Can i re-appeal the decision and stay here legally?
3. Are there any good attorneys that can give me good advice for me to take the next step?
Please let me know.. This is urgent for me right now.
Thank you all.
freeskier89
02-09 03:09 PM
^^^ :eyeup:. Did you really actively go out and seek votes?
2011 tribal butterflies tattoo
vxg
03-25 02:43 PM
If you work for a consulting firm requiring you to work for clients at various locations your labor application should have stated as various locations within US instead of one location. Since your labor was filed in 2002 i assume it was using old labor process (State labor than Regional thru BEC), the rules for that labor filing state that Company should file the state labor in the state where it is headquartered if employee is supposed to working at various locations. My labor was filed that way and application stated location as various within US. If you had that than it should not be an issue.
On March 12 2009 I got an query on my I-485.
Requesting discrepancy in the labor applied on Nov'7 2002 and present working place.
My company(abc ltd) applied labor on Nov'07 2002 while I was working at the clients(xyz) place in Los Angeles.
I got my I-140 approved on Feb'15 2006, while I was with the same client(xyz) at that time.
On Dec'04 2006 I moved to Detroit, started working with different client.
RFE goes like this.
The Documentation submitted with your application and/or a review of service records indicate that you no longer reside in the same state or geographical location as the underlying form i-140 immigration petitioner and /or job location specified by your intended permanent employer.
There fore submit a currently dated letter from your original form I-140 employer which which address this discrepancy.
I am still working with the same employer who filed my labor certification.
Any gurus who can suggest me on the query would be greatly appreciated.
On March 12 2009 I got an query on my I-485.
Requesting discrepancy in the labor applied on Nov'7 2002 and present working place.
My company(abc ltd) applied labor on Nov'07 2002 while I was working at the clients(xyz) place in Los Angeles.
I got my I-140 approved on Feb'15 2006, while I was with the same client(xyz) at that time.
On Dec'04 2006 I moved to Detroit, started working with different client.
RFE goes like this.
The Documentation submitted with your application and/or a review of service records indicate that you no longer reside in the same state or geographical location as the underlying form i-140 immigration petitioner and /or job location specified by your intended permanent employer.
There fore submit a currently dated letter from your original form I-140 employer which which address this discrepancy.
I am still working with the same employer who filed my labor certification.
Any gurus who can suggest me on the query would be greatly appreciated.
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>
:)
apb
08-08 01:23 PM
Does arrest for driving with suspended license (License suspended for non payment of ticket) come under traffic violation? Any insight would be much appreciated.
more...
jvordar
04-07 07:40 PM
thnx CADude... did you had to provide job description used in your labor or your last H1? if not then did the new employer used their own description?
2010 tribal tattoos designs and
yabadaba
06-30 04:09 PM
the other thing about ombudsman replying to emails..i wouldd have written to him.. but neither do i have a "technical issue" problem...nor do i have an established line of communication open with thee ombudsman's office...so i m just trying to get some info from gautam who seemed to have that.
more...
GCDo
04-24 12:33 AM
My lawyer just informed me that I received an RFE on my wife's 485
USCIS is asking for "Memorandum of marriage"
Is it the same as Marriage certificate. I have already send the marriage certificate which states that the marriage has been registered under Hindu marriage registration rules. My name as well as my wifes name and date of amrriage is there.
Why do they need this additional proof Not sure. Has anyone faced this RFE?
Looks like some crazy guys are working in USCIS hell bent on harassing legal immigrants.
I have been given just four weeks to respond.
USCIS is asking for "Memorandum of marriage"
Is it the same as Marriage certificate. I have already send the marriage certificate which states that the marriage has been registered under Hindu marriage registration rules. My name as well as my wifes name and date of amrriage is there.
Why do they need this additional proof Not sure. Has anyone faced this RFE?
Looks like some crazy guys are working in USCIS hell bent on harassing legal immigrants.
I have been given just four weeks to respond.
hair Tribal symbol. Triballsymbol
pointlesswait
02-24 09:41 AM
u can log onto USCIS website and check the status of ur past and pending cases.
but u need to know the LIN #'s...
so add ur previous 140 case and check for any updates..simple!
Case reopened or reconsidered based on USCIS determination, and the case is now pendiDid anyone see this kind of status on their approved H1b application?
Please share your views.
but u need to know the LIN #'s...
so add ur previous 140 case and check for any updates..simple!
Case reopened or reconsidered based on USCIS determination, and the case is now pendiDid anyone see this kind of status on their approved H1b application?
Please share your views.
more...
perm2gc
08-08 07:56 PM
I spoke with the lawyer. She asked me to get an affidavit stating the arrest reason and also what happened. She will send this as soon she gets my receipt number.
I am not having any case/docket number since this happened 4 years back.
Lawyer is saying this should be ok and this falls under misdemeanor.
Any suggestion?
you are ok.try to conatct the court clerk and give them your details or goto the police station and they will give your case number or if they have online system..just search in the system
I am not having any case/docket number since this happened 4 years back.
Lawyer is saying this should be ok and this falls under misdemeanor.
Any suggestion?
you are ok.try to conatct the court clerk and give them your details or goto the police station and they will give your case number or if they have online system..just search in the system
hot aidas00548#39;s Photos - tribal
breddy2000
08-19 09:48 PM
Me too getting worried about my wife's status...
Good thing is she had this issue when transferring H1 Visa when she was out of status for few months and she had to go to home country for stamping (explaining IO the situation where she was out of status) and came back on status...and she was on status till date.
One more thing is , the status will be counted from the last date of entry to US . If this is the case, I do not have any problem on my wife's status.
If your wife has maintained her status since she last visted US, may be going for H1 stamping and coming back to US, this should not matter..and more over she filed 485 as your dependent.
This is what my understanding is with respect to maintaing status....Let me know if this is not correct
Good thing is she had this issue when transferring H1 Visa when she was out of status for few months and she had to go to home country for stamping (explaining IO the situation where she was out of status) and came back on status...and she was on status till date.
One more thing is , the status will be counted from the last date of entry to US . If this is the case, I do not have any problem on my wife's status.
If your wife has maintained her status since she last visted US, may be going for H1 stamping and coming back to US, this should not matter..and more over she filed 485 as your dependent.
This is what my understanding is with respect to maintaing status....Let me know if this is not correct
more...
house Tribal bird tattoos seem to be
485Mbe4001
10-24 01:08 PM
Are you sure it is 90 days, i think it is 180 days and above. Since visitor visa is 6 months max, most are not eligible to apply. After 9/11 my parents had to postpone their return by a month, we had a valid extension etc. My CPA told me that since i had filled out a sponsorship letter to support their visa application, it would create a hassle for my parents during reentry. I did not want to complicate things so i did not claim them.
My friend is a GC holder and he claims his parents as dependents when they stay for more than 180 days. He has had no issues so far. As far as i know, I have yet to see a case where people have run into issues for claiming parents as dependents.
I had applied for a ITIN for my parents about 4 years ago and I was able to claim them as dependents since they stayed in US for more than 90 days and additionally I was supporting their welfare and expenses. IRS did accept my application, but I can do this only in the year they are physically here.
Check Pub 501 page 14 onwards....the key is you need an ITIN # for them....also see page 19, where it says non-resident parents can apply for ITIN, if not eligible for SSN
I have couple of friends who have claimed like this....
if this is the first time you are applying, then you will need to file a paper copy of your taxes and send to IRS Phily and then they will process your taxes for next year....
My friend is a GC holder and he claims his parents as dependents when they stay for more than 180 days. He has had no issues so far. As far as i know, I have yet to see a case where people have run into issues for claiming parents as dependents.
I had applied for a ITIN for my parents about 4 years ago and I was able to claim them as dependents since they stayed in US for more than 90 days and additionally I was supporting their welfare and expenses. IRS did accept my application, but I can do this only in the year they are physically here.
Check Pub 501 page 14 onwards....the key is you need an ITIN # for them....also see page 19, where it says non-resident parents can apply for ITIN, if not eligible for SSN
I have couple of friends who have claimed like this....
if this is the first time you are applying, then you will need to file a paper copy of your taxes and send to IRS Phily and then they will process your taxes for next year....
tattoo tribal bird tattoos
Desi4GC
08-07 08:47 PM
Hello members,
I had a non-traffic citation few years ago, which got dismissed and expunged. I do not have any documents relating to that incidence. I don't even recall the charges. I did background check with Sheriff's office which showed no records.
How should I present this on form I-485 (question about citation/arrest)?
I had a non-traffic citation few years ago, which got dismissed and expunged. I do not have any documents relating to that incidence. I don't even recall the charges. I did background check with Sheriff's office which showed no records.
How should I present this on form I-485 (question about citation/arrest)?
more...
pictures Tribal bird tattoos thai
rajenk
02-11 03:57 PM
I-485 RFE details.
Needed evidences:
1. 2 Passport size photos in USCIS specs.
2. Form I-693 completed by civil surgeon.
We did submit all these requested I-693 and photos during the initial filing. My question is, does USCIS request for new I-693 if the original one submitted is older than one year or more?
Needed evidences:
1. 2 Passport size photos in USCIS specs.
2. Form I-693 completed by civil surgeon.
We did submit all these requested I-693 and photos during the initial filing. My question is, does USCIS request for new I-693 if the original one submitted is older than one year or more?
dresses tribal bird tattoos.
BharatPremi
10-24 09:11 PM
I filed my application on July27th. I completed my FP on Oct 10th but haven't receive any news on EAD. My online status is still "Case received and Pending". It is mentioned on the USCIS website that the USCIS needs to provide EAD within 90 days of the filing as mandated by law [8 CFR 247a.13(d)].
http://www.uscis.gov/portal/site/uscis/menuitem.5af9bb95919f35e66f614176543f6d1a/?vgnextoid=e7ee6a9fec745110VgnVCM1000004718190aRCR D&vgnextchannel=54519c7755cb9010VgnVCM10000045f3d6a1 RCRD
When do USCIS start counting 90 days from? date of filing or date on which they acknowledge the case? The online status says that "On Aug 30th we recevied your case..." So in my case the 90 days counter starts from July27th or Aug 30th?
The date in 'Receipt Date' field on your 485 form is the start date of your 90 days calculation.
http://www.uscis.gov/portal/site/uscis/menuitem.5af9bb95919f35e66f614176543f6d1a/?vgnextoid=e7ee6a9fec745110VgnVCM1000004718190aRCR D&vgnextchannel=54519c7755cb9010VgnVCM10000045f3d6a1 RCRD
When do USCIS start counting 90 days from? date of filing or date on which they acknowledge the case? The online status says that "On Aug 30th we recevied your case..." So in my case the 90 days counter starts from July27th or Aug 30th?
The date in 'Receipt Date' field on your 485 form is the start date of your 90 days calculation.
more...
makeup Phoenix Tattoos
beautifulMind
10-08 04:43 PM
Came across the same issue and was reffered to a top immigration lawyer who advised as posted by me above
Thanks GCPool. i will probably go with the 485 EAD to be Safe plus logically it makes sense too to sue 485 EAD because once applied for 485 that is your current status...Infact if you contact the school and tell them you are a 485 adjustee they may cancel your EAD OPT
Thanks GCPool. i will probably go with the 485 EAD to be Safe plus logically it makes sense too to sue 485 EAD because once applied for 485 that is your current status...Infact if you contact the school and tell them you are a 485 adjustee they may cancel your EAD OPT
girlfriend Bird Tattoos: Phoenix ird
Ryall
09-06 02:14 PM
ps7....hmmm, boy do I need to upgrade. I am still working with ver 5! haha well one of these days Ill drop the cash on it!
Peace
Peace
hairstyles ird tattoo
Ann Ruben
01-11 07:16 AM
I reviewed the State of Washington's unemployment compensation website, and from what I can see you would be eligible for benefits as long as you were legally authorized to work for the last 24 months and continue to be authorized to accept new employment. You will be required to provide your A# and agree to allow the State of Washington to share your application information with other agencies such as the IRS (UC benefits are taxable).
brahmam
05-30 04:35 PM
Gotta clear backlog Ma' :D
information retrogression :rolleyes:
information retrogression :rolleyes:
mk26
04-26 02:18 PM
Why did we all come to USA?
Did any of you knew the Green card problems when you came?
Did you know the problems when you applied for greencard many years ago?
When was the first time you found out there was a ling wait period and so many problems?
Can you please clear your point for asking these here ?
Did any of you knew the Green card problems when you came?
Did you know the problems when you applied for greencard many years ago?
When was the first time you found out there was a ling wait period and so many problems?
Can you please clear your point for asking these here ?
No comments:
Post a Comment