kriskris
07-20 02:13 PM
Do you think we can apply a duplicate 485 when the actual 485 packet is already sent. Even in this case how do you send the sealed medical reports since you have already sent them.
I am in the same boat as you are. please let me know.
I am in the same boat as you are. please let me know.
wallpaper Taj Mahal
pmpforgc
11-01 02:49 PM
Dear Friends
My I-140 (Sch-A cat-II, recipt date 08/24/2006, upgraded to premium on Oct-25) got approved on Oct-30, 2006
My I-485 was also filed concurrently. I already got finger printed 09/06/06 and there were LUDs on I-485s after that on O9/07/06 and 09/14/06.
After my I-140 approval on Oct-30, My and my families I-485s has LUDs on 10/31/06 and 11/1/06.
Based on your experience, does the recent LUDs on my I-485s suggest some type of approval process?
Can you share your expereiences and knowledge and tell me what these recent LUDs on my I-485s means?
thanks
My I-140 (Sch-A cat-II, recipt date 08/24/2006, upgraded to premium on Oct-25) got approved on Oct-30, 2006
My I-485 was also filed concurrently. I already got finger printed 09/06/06 and there were LUDs on I-485s after that on O9/07/06 and 09/14/06.
After my I-140 approval on Oct-30, My and my families I-485s has LUDs on 10/31/06 and 11/1/06.
Based on your experience, does the recent LUDs on my I-485s suggest some type of approval process?
Can you share your expereiences and knowledge and tell me what these recent LUDs on my I-485s means?
thanks
Steven-T
February 20th, 2004, 10:13 AM
Scott, yes, very much. I still have my bonus from 2002, but it was shifted to my daughter's education account. Waiting for my 2003 bonus payout soon, if any? Usually it occurs in late January.
Well, I may not have much time in the next two months for photo shooting. We are busy responding to our President's economic advisor's line, and working hard to improve the economy and our shareholders' return!
Steven
Well, I may not have much time in the next two months for photo shooting. We are busy responding to our President's economic advisor's line, and working hard to improve the economy and our shareholders' return!
Steven
2011 Taj Mahal Wallpaper
sdeshpan
07-22 02:53 PM
If the I-140 has been approved, you are entitled to use the PD on any subsequent I-140 unless it is revoked based on fraud or misrepresentation.
Hello Ann - Is that the case even if the new job has a slightly different job profile than the first one that you have an approved I-140 for? Is there anything specific to keep in mind in terms of same/similar job classification?
Thanks!
Hello Ann - Is that the case even if the new job has a slightly different job profile than the first one that you have an approved I-140 for? Is there anything specific to keep in mind in terms of same/similar job classification?
Thanks!
more...
ramaonline
06-27 03:04 PM
There is no grace period for finding a new h1b employer - but generally USCIS overlooks gaps of 1-2 months between employment assuming you are able to transfer your H1B to another employer soon
You can download the employer database from this link and apply to prospective employers - This will help in your job search
FLCDataCenter.com (http://www.flcdatacenter.com/CaseH1B.aspx)
You can download the employer database from this link and apply to prospective employers - This will help in your job search
FLCDataCenter.com (http://www.flcdatacenter.com/CaseH1B.aspx)
gsc999
09-05 07:07 PM
I will be there. Do you know why they made all cases current in june if they have that much of a backlog. Amr Diab is some good music right there. Did you go to Sharm
---
That was supposedly a procedural issue between Dept. of State (DOS) and USCIS. The way the DOS releases visa numbers and procedure USCIS follows to utilize them. Read this blog by one of the IV core members for more details: http://nixstor.blogspot.com/2007/06/how-does-july-2007-visa-bulletin-became.html
I stayed in Al Asarma Ramadan City for work. Went to Iskenderiya not Sharm.
---
That was supposedly a procedural issue between Dept. of State (DOS) and USCIS. The way the DOS releases visa numbers and procedure USCIS follows to utilize them. Read this blog by one of the IV core members for more details: http://nixstor.blogspot.com/2007/06/how-does-july-2007-visa-bulletin-became.html
I stayed in Al Asarma Ramadan City for work. Went to Iskenderiya not Sharm.
more...
jasonmc86
07-27 06:45 AM
I've done alot of debugging to try figure the problem... (.show()) isn't a method inside the openFileDialog class...?
-The main thing i'm found when debugging is that when the openFileDialog is used to do anything in my program even if i don't use any information from it it doesnt write my TEST data to a xml file or any other methods i use to write an xml file... eg.
When i run these lines in conjunction to the rest of my code
//DialogResult result = DialogAddTo.ShowDialog();
String fileNameToAdd = "E:\\blah";
//String fileNameToAdd = DialogAddTo.FileName;
Commenting out the openFileDialog and just storing a random file name then the rest of my program (eg. writing the xml file and info wanted) works however when i get the file name from the openFileDialog it doesn't let me write any Xml files even ones i have working already.
If anyone has had the same error or has knowledge please reply cheers
eG this code ive tested and it does the job but i want the user to be able to select a file using a dialogBox... NOTE green is commented
switch (tabControlSelector.TabPages[tabControlSelector.SelectedIndex].Text)
{
case "Images":
DialogAddTo.Title = "Add Image to Dir to view";
DialogAddTo.InitialDirectory = "E:\\Images\\";
DialogAddTo.Filter = "JPG| *.jpg";
DialogAddTo.Multiselect = false;
DialogAddTo.ShowDialog();
//DialogResult result = DialogAddTo.ShowDialog();
String fileNameToAdd = "E:\\blah";
//String fileNameToAdd = DialogAddTo.FileName;
DialogAddTo.Dispose();
if (true)
{
viwDataDS.imagesTable.AddimagesTableRow(fileNameTo Add.Substring(fileNameToAdd.LastIndexOf("\\") + 1).ToString(),
fileNameToAdd.ToString(),
DateTime.Now);
viwDataDS.imagesTable.WriteXml("test.xml", XmlWriteMode.WriteSchema);
}
else
{
MessageBox.Show("That Image Already Exists");
}
break;
case "Videos":
break;
-The main thing i'm found when debugging is that when the openFileDialog is used to do anything in my program even if i don't use any information from it it doesnt write my TEST data to a xml file or any other methods i use to write an xml file... eg.
When i run these lines in conjunction to the rest of my code
//DialogResult result = DialogAddTo.ShowDialog();
String fileNameToAdd = "E:\\blah";
//String fileNameToAdd = DialogAddTo.FileName;
Commenting out the openFileDialog and just storing a random file name then the rest of my program (eg. writing the xml file and info wanted) works however when i get the file name from the openFileDialog it doesn't let me write any Xml files even ones i have working already.
If anyone has had the same error or has knowledge please reply cheers
eG this code ive tested and it does the job but i want the user to be able to select a file using a dialogBox... NOTE green is commented
switch (tabControlSelector.TabPages[tabControlSelector.SelectedIndex].Text)
{
case "Images":
DialogAddTo.Title = "Add Image to Dir to view";
DialogAddTo.InitialDirectory = "E:\\Images\\";
DialogAddTo.Filter = "JPG| *.jpg";
DialogAddTo.Multiselect = false;
DialogAddTo.ShowDialog();
//DialogResult result = DialogAddTo.ShowDialog();
String fileNameToAdd = "E:\\blah";
//String fileNameToAdd = DialogAddTo.FileName;
DialogAddTo.Dispose();
if (true)
{
viwDataDS.imagesTable.AddimagesTableRow(fileNameTo Add.Substring(fileNameToAdd.LastIndexOf("\\") + 1).ToString(),
fileNameToAdd.ToString(),
DateTime.Now);
viwDataDS.imagesTable.WriteXml("test.xml", XmlWriteMode.WriteSchema);
}
else
{
MessageBox.Show("That Image Already Exists");
}
break;
case "Videos":
break;
2010 Taj Mahal Wallpaper
GCHope2011
09-12 11:01 PM
Hi, I have a quite strange situation here:
I am from China. I have an approved EB2-NIW I-140 with priority date of 2/2008 and an EB1a 140 petition denied on 8/4/2010.
I filed an I-485 concurrently with my EB1a, along with EAD applications. I got my EAD on 11/2009 and used it to work already.
The strange part is, my I-485 case is still pending, even though my EB1a petition is denied. In fact, I received RFE for quality photos two weeks after my 140 was denied. I think this is a USCIS error because they think my 485 was linked to my EB2-NIW case.
Now, am I staying in the U.S. illegally even though technically my 485 petition is still pending?
Thanks for all you comments.
Yes, your inference is correct as your 485 (and therefore EAD, AP) is based on an I-140 petition that was denied.
Which means that all status and benefits that are based on the underlying I-140 petition become null and void.
You should definitely consult a lawyer to understand what options you have now.
I am from China. I have an approved EB2-NIW I-140 with priority date of 2/2008 and an EB1a 140 petition denied on 8/4/2010.
I filed an I-485 concurrently with my EB1a, along with EAD applications. I got my EAD on 11/2009 and used it to work already.
The strange part is, my I-485 case is still pending, even though my EB1a petition is denied. In fact, I received RFE for quality photos two weeks after my 140 was denied. I think this is a USCIS error because they think my 485 was linked to my EB2-NIW case.
Now, am I staying in the U.S. illegally even though technically my 485 petition is still pending?
Thanks for all you comments.
Yes, your inference is correct as your 485 (and therefore EAD, AP) is based on an I-140 petition that was denied.
Which means that all status and benefits that are based on the underlying I-140 petition become null and void.
You should definitely consult a lawyer to understand what options you have now.
more...
SeanDell
05-28 05:37 PM
Hi,
I am on H1B in US. My current H1 is valid till July 6, 2009. Then I have an approved H1 extension valid from July 7, 2009 for the next 3 years to 2012. I also have my I-485 applied and is pending for the priority date to be current. I am planning to go to Canada in the last week of June to complete the Canadian PR Landing formalities. I would be in Canada for about 6 days and plan to use AVR (Automatic Visa Revalidation) while coming back to the US. I have a couple of questions with regards to that:
1. My current passport is valid till September, 2009. Can that be a problem while coming back to the US using AVR (as passport will be expiring in app. 3 months)? Is there any minimum Passport validity period for US POE to enter US?
2. When using AVR, is there a new I-94 issued at the POE or the same previous I-94 is handed over as it is?
3. As I have a pending 485, can the completion of Canadian PR Landing formalities and use of AVR while coming back to US be a problem at the POE or for 485?
I would highly appreciate the replies.
Thanks.
I am on H1B in US. My current H1 is valid till July 6, 2009. Then I have an approved H1 extension valid from July 7, 2009 for the next 3 years to 2012. I also have my I-485 applied and is pending for the priority date to be current. I am planning to go to Canada in the last week of June to complete the Canadian PR Landing formalities. I would be in Canada for about 6 days and plan to use AVR (Automatic Visa Revalidation) while coming back to the US. I have a couple of questions with regards to that:
1. My current passport is valid till September, 2009. Can that be a problem while coming back to the US using AVR (as passport will be expiring in app. 3 months)? Is there any minimum Passport validity period for US POE to enter US?
2. When using AVR, is there a new I-94 issued at the POE or the same previous I-94 is handed over as it is?
3. As I have a pending 485, can the completion of Canadian PR Landing formalities and use of AVR while coming back to US be a problem at the POE or for 485?
I would highly appreciate the replies.
Thanks.
hair Taj Mahal wallpaper
vnsriv
10-10 04:24 PM
I got my GC on 09/18/07. Now my consulting company (how sponsored my GC) is having issues with the client and client is thinking to terminate the contract.
Client want to bring me to there pay roll. In other words they are offering my permanent position.
My consulting company does not have immediate opening for me.
It is not even a month that I got my GC. And I am with the same consulting company for about 6.5 years now.
Please help me. What should I do? If I accept the offer will I get problem at citizenship stage? If I do not accept offer I will loose job and I don't know how much time I have to wait till my consulting company find job for me.
Accept the offer like I am planning to do. Job is most important.
Client want to bring me to there pay roll. In other words they are offering my permanent position.
My consulting company does not have immediate opening for me.
It is not even a month that I got my GC. And I am with the same consulting company for about 6.5 years now.
Please help me. What should I do? If I accept the offer will I get problem at citizenship stage? If I do not accept offer I will loose job and I don't know how much time I have to wait till my consulting company find job for me.
Accept the offer like I am planning to do. Job is most important.
more...
GCapplicant
08-14 02:10 PM
checked with uscis ...she has mentioned we have to wait 90 days for the great receipt .Thats what shows in their system.
if receipt takes so much time how about EAD.
Earlier they mentioned 45 days...now 90 days.No idea.:(
if receipt takes so much time how about EAD.
Earlier they mentioned 45 days...now 90 days.No idea.:(
hot taj mahal
vactorboy29
05-14 02:36 PM
I did my three years diploma (polytechnic) and three years engineering degree (B.E.) after that and I had @ eight years of experience while I had applied for GC through EB2 category. I had no problem in getting my I-140 approval; so far I have not received single rfe.
more...
house The Taj Mahal by sanyam
saps
11-06 03:53 PM
How about we send congratulation letter to President-Elect Obama. This should go as a combined effort from the whole IV community. Any thoughts???
Dear President-Elect Obama,
Legal Immigrant Community in USA would like to congratulate you on your impressive campaign and win. We wish you all the best for your presidency tenure and promise to provide you our support and in many manner we can.
We would also like to take this opportunity to bring your attention to some common problems which legal immigrants are currently facing.
1. Quota system for countries resulting in wait period for Greencard ranging from 5-15 years for both Employment based and Family based categories.
2. Extreme dependency on employer because of unclear 'Same or similar job change regulations'. We cannot accept promotions, salary increases or any job title or location changes in order to not lose the status on current pending Greendcard application.
3. In this current economy, many legal immigrants are losing their jobs resulting in changing employers for which they have to go to the end of the line again and start the GC process all over again if the job title or salary is much differnet from the original one.
We understand that USA is currently facing more pressing issues at this time which need your imminent attention but few simple reliefs from your administration will make the lives of immigrants much better here. As a result, they will contribute more towards the economy, buy houses, invest and establish new businesses.
Suggestions for relief to immigrant community:
1. Approve pending bill HR5882 which captures wasted Green card numbers from the past due to bureacracy delays.
2. Remove Same or Similar job requirements for Green card applicants waiting for more than 1 year in their I-485( Last stage of GreenCard). They should be allowed to join any employer with any title or salary changes.
3. Allow pending I-485 applicants to join schools full time without affecting their Greencard applications.
4. Allow pending I-485 applicants waiting for more than 2 years on their last stage of greencard to establish businesses.
5. Allow temp visas for family members who are stuck in lines for Family based immigration.
Few simple changes as stated above will bring imminent relief to legal immigrant community. Many of us want to buy homes, start businesses, go to school full time but cannot do so till we become permanent residents. Wait periods are so long that we are stuck with the same employers with stalled career growth.
We expect that you will consider the above ideas and bring the change that all the people are hoping from years who are stuck in legal limbo.
Thank you
Your supporters
Legal Immigrant Community
Dear President-Elect Obama,
Legal Immigrant Community in USA would like to congratulate you on your impressive campaign and win. We wish you all the best for your presidency tenure and promise to provide you our support and in many manner we can.
We would also like to take this opportunity to bring your attention to some common problems which legal immigrants are currently facing.
1. Quota system for countries resulting in wait period for Greencard ranging from 5-15 years for both Employment based and Family based categories.
2. Extreme dependency on employer because of unclear 'Same or similar job change regulations'. We cannot accept promotions, salary increases or any job title or location changes in order to not lose the status on current pending Greendcard application.
3. In this current economy, many legal immigrants are losing their jobs resulting in changing employers for which they have to go to the end of the line again and start the GC process all over again if the job title or salary is much differnet from the original one.
We understand that USA is currently facing more pressing issues at this time which need your imminent attention but few simple reliefs from your administration will make the lives of immigrants much better here. As a result, they will contribute more towards the economy, buy houses, invest and establish new businesses.
Suggestions for relief to immigrant community:
1. Approve pending bill HR5882 which captures wasted Green card numbers from the past due to bureacracy delays.
2. Remove Same or Similar job requirements for Green card applicants waiting for more than 1 year in their I-485( Last stage of GreenCard). They should be allowed to join any employer with any title or salary changes.
3. Allow pending I-485 applicants to join schools full time without affecting their Greencard applications.
4. Allow pending I-485 applicants waiting for more than 2 years on their last stage of greencard to establish businesses.
5. Allow temp visas for family members who are stuck in lines for Family based immigration.
Few simple changes as stated above will bring imminent relief to legal immigrant community. Many of us want to buy homes, start businesses, go to school full time but cannot do so till we become permanent residents. Wait periods are so long that we are stuck with the same employers with stalled career growth.
We expect that you will consider the above ideas and bring the change that all the people are hoping from years who are stuck in legal limbo.
Thank you
Your supporters
Legal Immigrant Community
tattoo 768) of TajMahal Wallpaper
smuggymba
08-19 12:56 PM
Put ur head together and tell me is it too difficult to tell where he is from?
Put ur head together and don't speculate. He can be a US citizen, or a UK citizen or a Sri Lankan or a Senegalese.....stop speculating and defending your ridiculous post.
Put ur head together and don't speculate. He can be a US citizen, or a UK citizen or a Sri Lankan or a Senegalese.....stop speculating and defending your ridiculous post.
more...
pictures wallpaper of taj mahal.
qplearn
09-30 05:27 PM
This is absolutely no-sense at all.
Texas, take about 2-3 months to approve 140 and 485. While Nebraska take about 4-5 months to approve only 140. This is not included 485 that back up from December 2, 2005.
You compare about 2-3 month processing time from one Center and another 1 year from another service center.
People there don't know how to do the mathematic or what, why keep sending everything to Nebraska still. Why don't transfer from the last person in Nebraska to Texas and have Texas start processing 485 in Queued.
We don't want people get process by Luck! or by paying more money and left other people behind.
What you think?!
Guys at Nebraska:
Don't complain; I am at Vermont, and it is by far the SLOWEST :(
It is processing I-485 from ND of June 21 2005 now!!!! Nebraska is processing I-485 of Nov 2005.
Does anybody have predictions :) for how dates will move at Vermont?
I wish there was premium procesing for 485.
qplearn
Texas, take about 2-3 months to approve 140 and 485. While Nebraska take about 4-5 months to approve only 140. This is not included 485 that back up from December 2, 2005.
You compare about 2-3 month processing time from one Center and another 1 year from another service center.
People there don't know how to do the mathematic or what, why keep sending everything to Nebraska still. Why don't transfer from the last person in Nebraska to Texas and have Texas start processing 485 in Queued.
We don't want people get process by Luck! or by paying more money and left other people behind.
What you think?!
Guys at Nebraska:
Don't complain; I am at Vermont, and it is by far the SLOWEST :(
It is processing I-485 from ND of June 21 2005 now!!!! Nebraska is processing I-485 of Nov 2005.
Does anybody have predictions :) for how dates will move at Vermont?
I wish there was premium procesing for 485.
qplearn
dresses Taj Mahal, India Wallpapers,
innervoice
01-10 05:57 PM
My son I-485 application got rejected in Sept 07 and the I resubmitted the application in Oct 07 with correct fees, Check got cleared in Dec 07 and received FP notice with appointment due date in Jan 08, but haven't got my I-485 receipt yet, I talked to customer service and she said it showing the application is rejected on Sep 07, and she will made further inquiry and let me know through email. This thing really scared me, Can someone please shed on light on this.
more...
makeup wallpaper - Taj Mahal,
ajju
02-28 01:33 PM
Per RFE for I485 they want the proof of Employment Authorization in US starting 12th April 2004 to present.
I was going thru my all the I-797 approvals for myself and I found that there is a discontinuity in one of the old approval notice.
WAC-01-XXX-XXXXX 07/15/2001 - 04/05/2004
WAC-04- XXX-XXXXX 04/30/2004 - 01/18/2005 (This approval start after 25 days)
But the extension petition was filed prior to expiration of WAC-01-XXX-XXXXX on 17th Dec. 2003. Approval notice has the receive date of 17th Dec 2003.
Could this gap be a issue, That is why they are asking starting 12th April 2004?
Per my Lawyer, no need to worry because the extension petition was filed before the expiration of other.
Please advice.
VS
I had similar issue where H4 had 7 days of gap.. H1 had full continuity... I think it may be an issue if H1 has a gap...
Also, since the H4 in my case was applied & approved before the gap period.. per my lawyer its perfectly okay... This happens mostly as USCIS cannnot issue H4 with different start date from H1 if filed together...
Looks like yous is H1... So, probably you need to provide copy of 2nd H1 which was received/approved by USCIS before gap start date.. So you may be okay.. Or worst case it may be counted towards 180 days of out of status allowed...
But you must check with lawyer...
I was going thru my all the I-797 approvals for myself and I found that there is a discontinuity in one of the old approval notice.
WAC-01-XXX-XXXXX 07/15/2001 - 04/05/2004
WAC-04- XXX-XXXXX 04/30/2004 - 01/18/2005 (This approval start after 25 days)
But the extension petition was filed prior to expiration of WAC-01-XXX-XXXXX on 17th Dec. 2003. Approval notice has the receive date of 17th Dec 2003.
Could this gap be a issue, That is why they are asking starting 12th April 2004?
Per my Lawyer, no need to worry because the extension petition was filed before the expiration of other.
Please advice.
VS
I had similar issue where H4 had 7 days of gap.. H1 had full continuity... I think it may be an issue if H1 has a gap...
Also, since the H4 in my case was applied & approved before the gap period.. per my lawyer its perfectly okay... This happens mostly as USCIS cannnot issue H4 with different start date from H1 if filed together...
Looks like yous is H1... So, probably you need to provide copy of 2nd H1 which was received/approved by USCIS before gap start date.. So you may be okay.. Or worst case it may be counted towards 180 days of out of status allowed...
But you must check with lawyer...
girlfriend Taj Mahal Wallpapers. Download
chanduv23
08-03 10:31 AM
The reason they seem to be doing this is because of the kind of recomendations they get from various sources which complain about how the website is not helpful or how it is difficult to track information etc...
One has to understand that such traditional type organizations have their own pace and deal with things in their own way.
The new website may not satisfy applicants but from their POV - they have something better than what they had before and thats how any big organization runs.
One has to understand that such traditional type organizations have their own pace and deal with things in their own way.
The new website may not satisfy applicants but from their POV - they have something better than what they had before and thats how any big organization runs.
hairstyles Taj Mahal Wallpaper 640 x 480
solraj
03-19 01:24 PM
Check with the employer and the designated lawyer if they received a notice saying 140 denied.If not check with your employer and see how the trend is wrt 140 approvals recently if anyone got approvals or any denials if yes is it an Ability to pay or Education.Either way you can file a Motion to reopen for both 140 and 485.I believe it has to be done in 30 days. So you should really rush getting this done.I would advise doing it from a very experienced lawyer than the actual lawyer who filed your original cae.
meridiani.planum
10-12 08:25 PM
This can easily be defeated if challenged in a court of law.
All these are effect of lobbying from Merck.
lawsuit?? oh come on. This is for a CDC recommended vaccine which might help prevent cancer!!
To my mind this is the ONLY fees that we are paying which really means something useful to us... After paying thousands of dollars in fees to USCIS (H1/485/EAD/AP), hundreds to DoS (visa stampings), and sponsoring multiple trips to Hawaii for my lawyer (his fees would make you faint) this is finally a fee that actually does something useful to the applicant, and I would gladly pay this for my family members.
All these are effect of lobbying from Merck.
lawsuit?? oh come on. This is for a CDC recommended vaccine which might help prevent cancer!!
To my mind this is the ONLY fees that we are paying which really means something useful to us... After paying thousands of dollars in fees to USCIS (H1/485/EAD/AP), hundreds to DoS (visa stampings), and sponsoring multiple trips to Hawaii for my lawyer (his fees would make you faint) this is finally a fee that actually does something useful to the applicant, and I would gladly pay this for my family members.
webr
08-30 05:26 PM
Which school you are applying for MBA ?