Search results

  1. voidcranium

    Merak IceWarp Mail Server - Anybody ever use it?

    Merak IceWarp Mail Server 9 I was wondering if anybody has used this and could give me your thoughts of it. Basically I want to know how hard is it to setup and administer. Thanks
  2. voidcranium

    Feel like you need a break from your job?

    Feel like you need a break from your job? A really, really long break? Count yourself lucky if you live in Finland then. Finnish workers receive the most of any other country -- 44 days off each year (30 vacation days plus 14 holidays), according to a 2007 survey by Mercer Resources, a global...
  3. voidcranium

    How to set focus on a form

    Try this. Select the properties of the form and set the MODAL under OTHER to YES.
  4. voidcranium

    Need advice on SQL

    Here are a couple sites I have have found helpful. SQL Tutorial http://www.1keydata.com/sql/sql.html Tech on the Net http://www.techonthenet.com/sql/index.php
  5. voidcranium

    My computer crashes :(

    This site is amazing. Hope it helps. PC Perspective Forums http://forums.pcper.com/index.php
  6. voidcranium

    Need advice on SQL

    If you are BRAND NEW to the SQL language then I suggest you buy a Beginning SQL book and read it front to back. Do all the exercises and get familiar with how the SQL programming language is used. Preferably get the free MySql which is a free database program you can play with. www.mysql.com...
  7. voidcranium

    Need advice on SQL

    Are you wanting to learn the SQL Language or how to use SQL Server? You can buy a book or read enough on the web to learn the SQL language. SQL Server depends on your learning style. If you need instruction from somebody who knows what they are doing then take the course. I would think that...
  8. voidcranium

    XBOX 360 crashes

    Saw this today. http://www.msnbc.msn.com/id/19685018/ Is the Xbox 360 a good bet for consumers? Is heat stroke causing Xbox 360 failures? Microsoft mum on reasons behind game console's hardware problems http://www.msnbc.msn.com/id/19640784/ Xbox issues to cost Microsoft $1 billion-plus (Last...
  9. voidcranium

    XBOX 360 crashes

    I just saw last Friday that Microsoft is going to spend 1 Billion to fix the Xbox360. So I would not until they get whatever is broken fixed.
  10. voidcranium

    Can I open an Excel spreadsheet on a form in access?

    Thats my ultimate goal, but until I get it done that way I was wondering if there was a way to make it work temporarily.
  11. voidcranium

    Can I get a report to print on a form?

    No I have not. I will try that. THanks
  12. voidcranium

    Can I open an Excel spreadsheet on a form in access?

    How would I go about this?
  13. voidcranium

    Can I open an Excel spreadsheet on a form in access?

    I have a form that users use to input data for our Work Orders. They also use an excel spreadsheet to do quotes. I would like to be able to open the quote from the Work Order form in Access so I don't have to keep opening excel just to print off the quote. Can this be done? Thanks
  14. voidcranium

    Can I get a report to print on a form?

    I have a report that I want to show on part of a form so the user can see the report in the lower panel of my form. Can this be done?
  15. voidcranium

    Round() - Can I round DOWN?

    Thanks guys. I used the int() and it worked.
  16. voidcranium

    Round() - Can I round DOWN?

    I need to have a text box show a number that is rounded down. Here is the code I have. This code rounds UP I need it to round DOWN. Private Sub cmdCalculate_Click() txtTotalPacks = Round((txtSheetsRan * [# Up]) / [# in Pack]) This ((2750*2)/1000) = 5.5 needs to be this ((2750*2)/1000) = 5 I...
  17. voidcranium

    Import same data from 2 tables into one.

    I found this article. Think it might work? ACC2000: How to Update and Append Records in One Update Query
  18. voidcranium

    Linked Fields

    I read this somewhere and I think it is pretty good advice. TABLES are for storing information. If you want to do something with the information then use a query. I think you need to look into queries. Run your forms off of queries also.
  19. voidcranium

    Import same data from 2 tables into one.

    I have 2 tables that contain the exact same columns. Basically titles and singers of CD's I have I want to make one table out of them. Is there a way to do this?
  20. voidcranium

    Linked Fields

    You should try to find a way to limit your data to one table. You could make a lookup field in one table that pulls data from the other table. That way when you change it it is changing the original table. First_Table name_ID (Primary key) F_name L_name Second_Table address_ID (Primary Key)...
Back
Top Bottom