How has your experience with Alpine Access been?

February 8th, 2010

I have my phone interview tomorrow and I will not be counting on this income for total support just a little extra cash. Anyone who has worked or currently works for Alpine Access please tell me about your experience with the company? Was the work difficult? Did you have a good support system? Were you paid on time and at a reasonable rate? Any information would be great! Thanks.

i currently work there…they have a wonderful support system and they are treat you right with bonuses and pay is pretty good. i make $10 per hr and i live at home. the work is like any other job only better cuz you do not have to waste gas

where can i download a manual or a how to guide for using microsoft access 2003?

February 8th, 2010

*FREE
*PREFERABLY THE INVENTORY DATABASE

Microsoft are the best people to learn it from are the people who wrote it.

as one of the other answers says there is a lot of good help available by pressing F1.

These two links take you to the official Microsoft web sites that have lots of tutorials & videos.
http://office.microsoft.com/en-us/access/FX100646921033.aspx?CTT=96&Origin=CL100570041033 – 2003
http://office.microsoft.com/en-us/access/FX100646911033.aspx?CTT=96&Origin=CL100570041033 – 2007

There is a developers centre here:
http://msdn.microsoft.com/en-us/office/aa905400.aspx

There are also forums there where you can ask questions and get answers from microsoft access experts.
http://msdn.microsoft.com/en-gb/office/aa905410.aspx

Others will offer external sites with good information but as a starting point Microsoft will be the best place to go.
Microsoft are the best people to learn it from are the people who wrote it.

as one of the other answers says there is a lot of good help available by pressing F1.

These two links take you to the official Microsoft web sites that have lots of tutorials & videos.
http://office.microsoft.com/en-us/access/FX100646921033.aspx?CTT=96&Origin=CL100570041033 – 2003
http://office.microsoft.com/en-us/access/FX100646911033.aspx?CTT=96&Origin=CL100570041033 – 2007

There is a developers centre here:
http://msdn.microsoft.com/en-us/office/aa905400.aspx

There are also forums there where you can ask questions and get answers from Microsoft Access experts.
http://msdn.microsoft.com/en-gb/office/aa905410.aspx

Others will offer external sites with good information but as a starting point Microsoft will be the best place to go.

How can I paste the ID of the students from MS Excell 2003 to MS Access 2003 ?

February 8th, 2010

I have prepared ID of 1000 students of my school in Microsoft Excell-2003. Now I bought School Software in ms access . So I want to paste the ID of the students in the School Software from Excell page . But how ?

Highlight them > ctrl+X > click somewhere in access > ctrl+v :D

I know thats not what you want but your explanation is awful.

i hav visual std 2005 and i know ms access i want to use it as data base plz help me with good tutorial?

February 8th, 2010


Alison Balter’s Mastering Access

Can you create a Macro in Access 2007 to create a number of queries for you.?

February 8th, 2010

Trying to automate the creation of 121 queries, any way to do this in a macro or just by hand?

Can you create a Macro in Access 2007 to create a number of queries for you?

Do you mean run queries? If so, yes using the ‘OpenQuery’ command.

If you want create queries, I assume you mean generate SQL? then you need to know how to write SQL (via the SQL View) whioch can be called by the same command in a macro.

What is it you actually want to do?

There are SQL commands that can create tables, fields and change data using the SQL syntax language see http://www.about-access-databases.com/sql-query-syntax.html

How do you create charts in Microsoft access 2000?

February 8th, 2010

I need the chart to change with each record.

As is so often the case, there are several techniques you might use, but the best solution is for you to create a template and then at run time adjust the various settings of the different controls.

For example, if you build a line graph, you need only adjust the Left and Top properties of the [data] points and then draw a line (using the Line method) to connect those dots.

Or, you can build a bar chart and do pretty much the same thing: adjust the Top (or Width, if it’s a aligned horizontally) property to fix the bar’s height.

You really need a copy of Access 2 Power Programming…

Do you need a data plan in order to access the internet with the LG Eve cellphone?

February 8th, 2010

Hello
Do you need a data plan in order to access the internet with the LG Eve? The phone (which I’m planning to buy) has wifi. Can one download apps, etc., just with wifi access? I’m with Rogers in Canada and I have a basic phone and text plan. Thanks for any help in this regard.

You should, but with a warring. You should ask the phone company if they require you to get data service on that phone, and if they say no, see if you can get them to disable data over their network. The reason for this is if you for some reason use their network for data without a plan, they will charge you a lot of money. Also, when you get the phone, see if there is a setting on the phone that will only let you use the wifi. Hope this helps.

I want to create a Microsoft Access Database to track the day to day operations of my business.?

February 8th, 2010

What I’d like to know is can you access the database from more than one computer?

You can, but it is not good for this. Better is to use mysql or similar, then set up a web server on the central machine and use php to control it. This means everyone has use of it through the web browser, and nobody can do anything you do not provide in the web forms. It is much faster, and scales much better. If the company grows, it will make no difference to the database. Access does not scale well.

Finding a phone number with just the address on Microsoft Access?

February 8th, 2010

I was told that you can find a phone number with just the address with microsoft access. I have never used this software before, so I was just wondering if it was true. And if so, how would you proceed?

There’s really many ways to do it. I’d have a table with all of the relative contact information I needed to track (ex: name, address, city, state, zip, phone number). And then I would create a form to input this data into the table. I’d have a separate button on my form I’d use to search for data I needed (such as the phone number) by way of a query that would access the table.

How do I make a customized Primary ID in MS Access?

February 8th, 2010

I would like to create a customized primary ID in ms access in that format : Year+ autonumer, for example (200900000001). It starts with 00000001, and when the year in the system clock changes, then it reset the number again (201000000001).

You won’t be able to customise the autonunber in Access. The format is controlled by MS Access.

If you are interested in when the data was entered then you should store the year as a column in the table.
You can add another column in the table and then set the default value to be =year(date())
you need to check the syntax but that should store the year value when a new record is inserted.

This is a better way of storing the year.

Making the change at a database level will ensure the value gets recorded if the user inserts a value using a form or an insert command