Search results

  1. J

    ACCESS on the web

    I need to make some kind of Intranet facility for work. I know Acess isn't too good of a web application, but I really have no experience in any other program. I've been told that I can link Access to MySQL, but it is beyond my knowledge. What do you guys suggest that I do because I'm between...
  2. J

    change username

    I'm pretty sure this is where I post this question, but if I want to change my user name will I have to make a while new account or is there a way to change it manually?
  3. J

    VISTA %temp% question

    is there a way to disable files being saved to temp so I don't have to delete them every other day.
  4. J

    BASE 10 to IEEE format

    Could some one explain to me how to convert Base 10 to IEEE format?? Here are two problems I need help on 1. Code the number 12.0957 (base 10) in floating point form using IEEE FORMAT. 2. Decode the following number coded in single precision IEEE floating point form: 85 E4 B0 00 (base 16)...
  5. J

    Vista Aero Question

    I have vista business addition, does anyone know how to activate the Aero 3d windows? Either I can't find it or my graphics card won't support it.
  6. J

    Running an ISO w/out a disc

    I d/l Vista and it's an ISO file on my desktop. You're supposed to burn it to a DVD cd and boot it, but I don't have a DVD burner. Is there a way I can install this without burning it? maybe through command prompt?
  7. J

    DOS and batch files

    does anyone have any links where I can learn how to use DOS and make batch files? a beginners guide would be cool. and maybe a link to some cool pre-made batch files that I can learn off of.
  8. J

    I Need Help

    I need to burn a disc that includes shortcuts. The short cuts are directed to an exe file and another file it needs to open. currently on the network the short cut link looks like... G:\Sims_Cbt\Pmcfinal\Runa3w.exe G:\Sims_Cbt\vol2\020101.app (all on the same target) I need to be able to...
  9. J

    Me.OpenArgs question

    I’m looking through a database someone else made and in the code “Me.OpenArgs” is used quite often. I always thought the “Me. “dealt with an object on the form, but there isn’t any kind of OpenArgs object on the form. I’ve searched on google and the form for some kind of explaination, but I’ll...
  10. J

    problem with data cutting off in memo field

    I’m not sure where to post this, but I know my problem arises from either my table or my textbox on my form. My problem is I have a text box on my form where my Managers input text (example below), and at times it cuts off their entries with weird characters. I’m not sure if they have exceeded...
  11. J

    Help with SQL query error

    I’m reposting my previous thread because it is pretty much a different question now. I am getting the error, too few parameters expected 1. I’ve looked through it 1000 times, hopefully someone else’s eyes can catch what I’ve missed.
  12. J

    SQL query question

    I’m pretty new to building and SQL query into VBA, but what is the best way to put a SQL query into VBA? Do you think it is easier to write it from scratch or build a query in access in design view to see if it works? Then, view it in SQL and reformat it to work in VBA? This is in terms of a...
  13. J

    debugger help

    I’m running a loop through my recordset and when there is no data returned by the table it’ll give me the error. Run-Time Error ‘3021’ No Current Record How could I make it not go to the debugger and instead make it prompt a msgbox saying “No data”
  14. J

    difference between opening a query

    what's the difference between... Dim stDocName As String stDocName = "APPEND - DATA" DoCmd.SetWarnings False DoCmd.OpenQuery stDocName, acNormal, acEdit DoCmd.SetWarnings True and DoCmd.SetWarnings False DoCmd.OpenQuery "ADD EVENT" DoCmd.SetWarnings True...
  15. J

    problem with returning multiple values from a query to a text box!

    I have restarted my previous thread because I pretty much have a whole new question, thanks to gemma-the-husky for helping me with the code! What this code does is goes through the values in a query, makes them strings, and outputs them to a text box. Although I have a problem, when the code...
  16. J

    Empty combo box help

    When I click a button I have code (below) that checks to see if my Combo boxes are NULL (empty), and if they are it’ll prompt the user to “fill in all fields”. Right now it includes all of the combo boxes on my form. Although, I want it to only include 3 combo boxes (I have 5 on my form). How...
  17. J

    vista 3d windows to windows xp

    Does anyone know if there is some type of theme to make windows xp windows 3d like vista's windows. example below. http://www.winvistabeta.com/files%2Fscreens%2F5365%2Fexplorer%2Fwindows-vista-3d-switch-screen.jpg
  18. J

    dlookup help

    I have a query that outputs to a text box. There are multiple records in the query but it is only outputting one record. My code is as follows How could I make ALL the records show up in the textbox one underneath the other? Or separated by a comma?
  19. J

    query output to a label help!

    Hello, I’m pretty bad with VB code but I need something pretty simple. I have a button on my form and when I click it I want it to run a query and output a certain field value to a label. I know I’ll need VB code for this, so any sample code would help a ton!
  20. J

    autonumber question

    How do I reset the autonumber back to 1 and make it count over again?
Top Bottom