immgirl
06-03 12:20 AM
Don't be ridiculous. If your I-140 and I-485 are approved, this will not affect it. They are auditing PERM that is in process. FYI- Your employer needs to show that there are no qualified US workers for the position that they are recruiting for on PERM. This audit is about employers using FDBL to try to disqualify qualified US workers. This audit will delay PERM applications, but will not affect I-140 s or I-485's that are approved.
archum123
08-03 09:34 AM
Hey! I am a practising dentist and I am on H1B.
Q: Does she need a dental license to apply for H1 ?
Ans:Yes a dental license is required for applying for a dentist position
Q: She 'qualifies' for a dental license (ie meets all requirements), but almost all states require a SSN to issue a dental license. Since she is on H4, she doesnt have a SSN. Problem: Dental License needs SSN - SSN needs H1 - H1 needs license - basically a "Catch 22" position here
Ans: Qualification is a very broad term. A dental degree doesnot make one eligible for a license. There are other important requirements for a license like National dental Boards, a clinical exam, jurisprudence exam of the state.
Also, if one one "qualifies" with all the requirements he or she can apply based on the TIN #. The board must be informed that a TIN is used and will need to be updated with SSN when you recieve one.
HI, does the same holds good or a DENTAL HYGENISTS ? is there any chances to be sponsered for h1?
Q: Does she need a dental license to apply for H1 ?
Ans:Yes a dental license is required for applying for a dentist position
Q: She 'qualifies' for a dental license (ie meets all requirements), but almost all states require a SSN to issue a dental license. Since she is on H4, she doesnt have a SSN. Problem: Dental License needs SSN - SSN needs H1 - H1 needs license - basically a "Catch 22" position here
Ans: Qualification is a very broad term. A dental degree doesnot make one eligible for a license. There are other important requirements for a license like National dental Boards, a clinical exam, jurisprudence exam of the state.
Also, if one one "qualifies" with all the requirements he or she can apply based on the TIN #. The board must be informed that a TIN is used and will need to be updated with SSN when you recieve one.
HI, does the same holds good or a DENTAL HYGENISTS ? is there any chances to be sponsered for h1?
coolvigo
07-12 11:02 PM
Guys,
Looks like a good news here....read following link.....looks like couple ppl have posted that their lawyers advised them to file for 485 in this case :-)
http://www..com/discussion-forums/i485-1/114468227/
:)
Looks like a good news here....read following link.....looks like couple ppl have posted that their lawyers advised them to file for 485 in this case :-)
http://www..com/discussion-forums/i485-1/114468227/
:)
cakewalkr7
08-21 08:35 AM
Okay, so the viewbox doesn't work in silverlight? I'm trying to do this type of an animation in silverlight so do you know of another container that would work in the browser? Thanks.
more...
Charleh
05-28 05:14 AM
You can bind them quite easily, assuming your data sources implement the correct interfaces (I believe IBindable/IBindableList).
You would use the metadata table to fill the list for the combobox and then bind the list to the 'degree' fields on your persons table
There are numerous ways to actually accomplish this, I'll run through a straight forward method using the datasource wizard
1. Drop a combobox onto the page
2. Go to the 'Data Sources' window which is usually docked on the left and add a new data source
3. Pick your data provider (I've picked database)
4. Set up your connection to connect to the database. I've just included the connection data in the application for the sake of simplicity
5. Choose the table you wish to bind to - this will be the 'metadata' table with your degrees
6. Finish the wizard, now in the datasources window you should have your table visible.
7. Drag the whole table onto the combobox
8. The program will assign the DisplayMember and ValueMember of the combobox automatically, you can modify it in the combobox properties - the ValueMember is the underlying identifier (the ID column) whereas the DisplayMember is the value you will actually see in the box
9. Repeat steps 1-6 to add your 'persons' table to the datasources window (you can use the same connection as you used before, you won't need to add another)
10. Once you have added the persons table, in the datasources window expand the persons table so you can see all of the actual columns of the table.
11. Find the column you will be binding to (the degree1 column for instance) and drag that onto the combobox.
12. Finished!
Of course you will need to make sure that a certain record from your persons table is selected as the datasource contains a record pointer - you can always drop a BindingNavigator control on there and associate it with the datasource but it does look a bit 'Microsoft Accesss' so I don't use them. Of course you will probably be getting to your persons form via a persons list in the first place so naturally you will be passing in the persons 'ID' and finding that person in the table using the ID
Either way your combobox is bound - your metadata is bound to the item list of the combobox and the persons tables 'degree1' field is bound to the selected value of the box. Visual Studio tends to be quite intelligent in this respect - if you drag a data column onto a bindable control it knows that it should bind the 'value' of that control to the data source. If you drag an entire data table or data container onto the control it knows to bind any 'list' objects to it.
VS 2008 will have already added the necessary code to 'bind' the objects at runtime - check your 'onload' function in the VB code
Of course you've only really got one thing to bind to on a textbox so you get different functionality (with respect though you can actually bind to any property of a control but most of the time why would you want to?)
This is just an example of how to bind to a control - the data exists in memory, so any changes you make won't affect the database immediately. In fact I'm not 100% on how the data gets written back with tableadapters. You may want to read up on them, I usually use custom objects which implement the bindable interfaces.
Edit:
Looks like you can just use the 'Update' method on the tableadapter and pass in the dataset thats automatically defined for you (the dataset will be holding the actual data you are editing). So if you stick a 'save' button on the page and then in the save method call YourTableAdapter.Update(YourDataSource) that should do it - I'll give it a try!
You would use the metadata table to fill the list for the combobox and then bind the list to the 'degree' fields on your persons table
There are numerous ways to actually accomplish this, I'll run through a straight forward method using the datasource wizard
1. Drop a combobox onto the page
2. Go to the 'Data Sources' window which is usually docked on the left and add a new data source
3. Pick your data provider (I've picked database)
4. Set up your connection to connect to the database. I've just included the connection data in the application for the sake of simplicity
5. Choose the table you wish to bind to - this will be the 'metadata' table with your degrees
6. Finish the wizard, now in the datasources window you should have your table visible.
7. Drag the whole table onto the combobox
8. The program will assign the DisplayMember and ValueMember of the combobox automatically, you can modify it in the combobox properties - the ValueMember is the underlying identifier (the ID column) whereas the DisplayMember is the value you will actually see in the box
9. Repeat steps 1-6 to add your 'persons' table to the datasources window (you can use the same connection as you used before, you won't need to add another)
10. Once you have added the persons table, in the datasources window expand the persons table so you can see all of the actual columns of the table.
11. Find the column you will be binding to (the degree1 column for instance) and drag that onto the combobox.
12. Finished!
Of course you will need to make sure that a certain record from your persons table is selected as the datasource contains a record pointer - you can always drop a BindingNavigator control on there and associate it with the datasource but it does look a bit 'Microsoft Accesss' so I don't use them. Of course you will probably be getting to your persons form via a persons list in the first place so naturally you will be passing in the persons 'ID' and finding that person in the table using the ID
Either way your combobox is bound - your metadata is bound to the item list of the combobox and the persons tables 'degree1' field is bound to the selected value of the box. Visual Studio tends to be quite intelligent in this respect - if you drag a data column onto a bindable control it knows that it should bind the 'value' of that control to the data source. If you drag an entire data table or data container onto the control it knows to bind any 'list' objects to it.
VS 2008 will have already added the necessary code to 'bind' the objects at runtime - check your 'onload' function in the VB code
Of course you've only really got one thing to bind to on a textbox so you get different functionality (with respect though you can actually bind to any property of a control but most of the time why would you want to?)
This is just an example of how to bind to a control - the data exists in memory, so any changes you make won't affect the database immediately. In fact I'm not 100% on how the data gets written back with tableadapters. You may want to read up on them, I usually use custom objects which implement the bindable interfaces.
Edit:
Looks like you can just use the 'Update' method on the tableadapter and pass in the dataset thats automatically defined for you (the dataset will be holding the actual data you are editing). So if you stick a 'save' button on the page and then in the save method call YourTableAdapter.Update(YourDataSource) that should do it - I'll give it a try!
sertasheep
08-03 09:43 PM
Bump ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
more...
billbuff123
10-24 12:23 PM
yes, really I missed that oppurtunity by 7 days. my only question is
Can she stay here until I94 expires? or for 180 days?
Thanks
Can she stay here until I94 expires? or for 180 days?
Thanks
eb3retro
04-14 08:13 AM
Yes, your reply is exactly same as her. But she added one more point. According to her The CBP officer can't deport a AP bearer. He/she has to parole the person and then can schedule a secondary check for I 140 validity. In such case my attorney can pitch in.
But I am not sure if this is true or she is being over assuring.
Thanks a lot
Listen kroy, All I can say is, people can share general info and their common experiences in these areas as to what they went through. I think its up to you to figure out the best case and the worst case scenario for yourself. Obviously neither me, nor your lawyer is going to be with you, when you go thru the CBP officer. My strong opinion would be to use all these information as a filler in your case and hope for the best. Good Luck!!!
But I am not sure if this is true or she is being over assuring.
Thanks a lot
Listen kroy, All I can say is, people can share general info and their common experiences in these areas as to what they went through. I think its up to you to figure out the best case and the worst case scenario for yourself. Obviously neither me, nor your lawyer is going to be with you, when you go thru the CBP officer. My strong opinion would be to use all these information as a filler in your case and hope for the best. Good Luck!!!
more...
ahaadi
07-10 09:28 PM
In case his I-140 was approved then there are no problems for this scenario right?
rajenk
01-13 12:08 PM
First try to get a copy of your approved EB3 I-140 through FOIA request with USCIS, this could be a time consuming task. If you are lucky you might get this in 30 days. But heard in the forum that it was even lesser than 30 days they got a copy.
Once you have the copy of I-140, If by the EB3 PD, EB2 is current, then file I-485 with copy of both I-140 (EB3 and EB2) and request for interfiling( refer to my blog post) That is the best bet for you I see now.
Good luck
Raj:)
Once you have the copy of I-140, If by the EB3 PD, EB2 is current, then file I-485 with copy of both I-140 (EB3 and EB2) and request for interfiling( refer to my blog post) That is the best bet for you I see now.
Good luck
Raj:)
more...
jeda
10-26 06:36 PM
Thanks everybody for the responses.
krishna_brc
05-16 12:02 PM
Hello Friends,
I am planning to apply Canada PR... here is my status...
Filed 485... currently working on EAD... no H1 any more... employer didn't extend it...
1. Should i qualify IELTS to prove english language ability... inspite of having 18 yrs of education with medium of instruction as english?
2. Since i do not have h1 any more and am on PAROLE status.... will it be difficult for me to prove that i have "real intent" of moving to Canada after getting PR?
I would appreciate any one who can throw some light on this.
Thanks,
Krishna
I am planning to apply Canada PR... here is my status...
Filed 485... currently working on EAD... no H1 any more... employer didn't extend it...
1. Should i qualify IELTS to prove english language ability... inspite of having 18 yrs of education with medium of instruction as english?
2. Since i do not have h1 any more and am on PAROLE status.... will it be difficult for me to prove that i have "real intent" of moving to Canada after getting PR?
I would appreciate any one who can throw some light on this.
Thanks,
Krishna
more...
MetteBB
05-11 11:58 AM
and two more
ThinkTwice
09-12 02:18 PM
Real Life :
A friend of mine who went to India's premier institution - IIT in India and then to IIM worked for one of the fortune 100 companies here in the US.
He got married and decided to move to UK because his equally qualified spouse being on a dependent Visa could not work due to the obsolete rules.
Both husband and wife are well on thier way to permanent residency in UK.
A friend of mine who went to India's premier institution - IIT in India and then to IIM worked for one of the fortune 100 companies here in the US.
He got married and decided to move to UK because his equally qualified spouse being on a dependent Visa could not work due to the obsolete rules.
Both husband and wife are well on thier way to permanent residency in UK.
more...
shantanup
03-23 04:25 PM
Here is someone. Following is quoted from some other thread.
I studied in RIT for MS. Luckily I got a job in this economy,But My friend got an offer letter from one of the TARP company and they refuse to give the job at the last moment. He did MBA .He left last week to India. This is ridiculous !
I studied in RIT for MS. Luckily I got a job in this economy,But My friend got an offer letter from one of the TARP company and they refuse to give the job at the last moment. He did MBA .He left last week to India. This is ridiculous !
mkrisa
08-11 01:23 PM
bumping
more...
dpp
12-30 09:31 AM
What you are saying may be logically correct, but USCIS needs the proof on paper. USCIS needs I-140 approval notice to give you 3-year H1B extension. You can try without that, but not gauranteed anything. Same with I-140 applying also, they need original copy of labour approval to file I-140. USCIS has proper application rejection procedures for all this. May be they are not having proper Approval procedures, but they do have proper Rejection procedures depending on documents required to file something.
So finally, you have to get I-140 approval notice, otherwise they won't grant 3-year H1B extension.
I do not see any reason why uscis cannot give 3 year extension with ONLY 485 receipt and I-140 case number printout. With these, USCIS should be able to determine the priority dates and whether the person is retrogressed or not.
An actual case would be helpful.
So finally, you have to get I-140 approval notice, otherwise they won't grant 3-year H1B extension.
I do not see any reason why uscis cannot give 3 year extension with ONLY 485 receipt and I-140 case number printout. With these, USCIS should be able to determine the priority dates and whether the person is retrogressed or not.
An actual case would be helpful.
bsbawa10
08-14 11:11 PM
dude, there's gibberish in the sheet.............is this the right link?
Some people are not acting responsibly on the data. I made changes now. I brought the data back and also you will have to login into your gmail account now tobe able to make changes.
My humble request to all please act responsibly.
Do not edit somebody elses data.
Do not add/delete/modify any column.
Do not sort the data. If you really feel the urge, import it to your local computer and then sort it.
I will sort the data according to PD periodically.
You can add your own row at the end . Also please please do not sort the data.
Some people are not acting responsibly on the data. I made changes now. I brought the data back and also you will have to login into your gmail account now tobe able to make changes.
My humble request to all please act responsibly.
Do not edit somebody elses data.
Do not add/delete/modify any column.
Do not sort the data. If you really feel the urge, import it to your local computer and then sort it.
I will sort the data according to PD periodically.
You can add your own row at the end . Also please please do not sort the data.
droy1981
04-07 04:47 PM
I am planning to go on a Hawaii cruise on the Norwegian Cruise line ship (Pride of America) which is registered in the US. My H1-B visa has expired but my I-94 is valid. The Cruise ship only visits islands in Hawaii and embarks/disembarks in Hawaii.
Do I need to worry about my visa stamping or just the Passport with valid I-94 and drivers license should suffice?
Any help will be greatly appreciated!
Do I need to worry about my visa stamping or just the Passport with valid I-94 and drivers license should suffice?
Any help will be greatly appreciated!
dc2007
07-24 10:59 PM
I have seen in this form that lot of people have filed I-485 by themselves after having a hard-time with lawyers. I am also thinking to do the same. But I want to make sure if it is possible in my case.
Assuming my I-140 get approved (its filed but not approved yet), what documents I need to file I-485 by myself as per following facts:
1. I have just receipt no. of Labor and I-140.
2. All the documents are with my attorney which is hired by my employer.
Can I still file I-485 by myself ?
Thanks
Assuming my I-140 get approved (its filed but not approved yet), what documents I need to file I-485 by myself as per following facts:
1. I have just receipt no. of Labor and I-140.
2. All the documents are with my attorney which is hired by my employer.
Can I still file I-485 by myself ?
Thanks
satishku_2000
09-05 05:33 PM
True, this affects everyone really, but was just saying from what I have seen of my ROW friends. Getting green cards within 1-2 years while the bulk of us wait for 5-6+
My point was people from countries that require Special registration have higher chances of getting struck in the name check. Dont ask me for the proof .. Its just a wild guess I am making . I may be wrong too
http://www.isss.umn.edu/INSGen/INSspecreg.html#who
Going by the things I think people from certain countries will be scrutinized under microscope.
My point was people from countries that require Special registration have higher chances of getting struck in the name check. Dont ask me for the proof .. Its just a wild guess I am making . I may be wrong too
http://www.isss.umn.edu/INSGen/INSspecreg.html#who
Going by the things I think people from certain countries will be scrutinized under microscope.