Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Varga
  • Order by date
  1. Varga

    Visual Basic - Compass Gauge... how can I?

    Hey strongm, Awesome. I tries it out and it works. And I understand it enough that I should be able to modify it for my purposes. You've been a great help! Thanks Varga
  2. Varga

    Visual Basic - Compass Gauge... how can I?

    Hey strongm, I'm trying all that stuff, but so frustrated I'm ready to give up. I finally got the e.Graphics.Drawing stuff to draw something. (Thanks to http://www.bobpowell.net/transformations.htm) ...but I couldn't get anything more than a circle and square, and need to rotate an image. (So...
  3. Varga

    Visual Basic - Compass Gauge... how can I?

    Hey strongm, Sorry I forgot I upgraded to, and am now using, Visual Basic 2008 Express. That's the main reason why the SetWorldTransform wouldn't work as certain commands were not recognized... My method works, crude as it is, but would the SetWorldTransform be better/faster/more efficient...
  4. Varga

    Visual Basic - Compass Gauge... how can I?

    Hey, Thanks for the help strongm. I messed around with some of those methods, but the redraw "raster" was slow and low quality, and I couldn't get the transformworld one to work. The solution I cam up with was to use a compass face image, and save 18 versions of the gif at 5degree rotation...
  5. Varga

    Visual Basic - Compass Gauge... how can I?

    Hello, I'm trying to make a VB form that has a compass display on it. I want to display the reading from a digital compass sensor on a form and I am using Visual Basic 6.0. I can't find any built-in compass gauges, except for expensive downloads in Aviation packs, and wondered how I could do...
  6. Varga

    I Exit Access2K, MSACCESS.EXE keeps reading SYSTEM.MDW every 5 seconds

    Hi, I'm having problems with Access 2000 on an XP Pro computer. The MSACCESS.EXE process hangs-up, when I exit Access. (I’ve looked everywhere for an answer. The standard answer is that some recordset in my VB code is not closed or the ‘Set RecSet = Nothing’ is missing. This is not the...
  7. Varga

    *.ldb File

    Hap007, I urge you to re-read this thread. I've looked all over the net, and that's the standard response, "Close your recordsets". To test my problem I created a new DB with ONLY a table. (No VB, no recordsets, no outside references, nothing but a table with two records. Read above, I've been...
  8. Varga

    *.ldb File

    sabloomer, Is it saying "Unrecognized Format" when you try to open the database? Can you open the DB at all? You could try importing all your objects into a new database, if it will let you import from a "unrecognized format" DB? To start fresh. Then try that code to see who's logged on in...
  9. Varga

    *.ldb File

    sabloomer, RE: Seeing who is logged onto your database. The *.ldb file will show disconnected users until every user logs out and the file disappears, as stated above. (It's supposed to disappear. :-( ) I followed a link above, in this thread, and I found another usefull page...
  10. Varga

    *.ldb File

    jrbarnett, I should have mentioned that I'm using Access 2000 on WinXP Pro. I think I created most of it in Access 97 then converted it to Access 2000 more than a year ago. The link you refered to is only for Access97 and wont work on a XP machine. I tried an attached link (in the page you...
  11. Varga

    *.ldb File

    jrbarnett, I started reading the page you referenced. That might help. I'll have to check it out. Seeing what is locked and why, should point me to the problem. One thing, on the page it says "Applies to: Microsoft Access 97 Standard Edition". I'm running Acess 2000, will it work on 2000...
  12. Varga

    *.ldb File

    I'm having a similar problem that I can't find any answers for. Sabloomer, When you close the database, is the 'Msaccess.exe' process still running? (Use "Ctrl+Shift+Esc" to look in the task manager.) When I close Access my ".ldb" file locks and the process keeps running. As a test I...
  13. Varga

    XP Desktop Manager Powertoy (Excel/Access) Problem

    Hi, I'm using Windows XP and I just started using the "Desktop Manager" powertoy toolbar function. The one Microsoft recommends (and publishes) but does not support. (I can't find out who supports it.) If I have the ‘Shared Desktops’ setting turned on, then this problem does not occur. I only...
  14. Varga

    Search every table for a value?

    Well, I figured out a MUCH easier way to do this. I'm using the (For Each 'Table' In CurrentDb.Tabledefs ... Next) method to cycle through one table at time. I then use (If...Then) statements to select or exclude certain tables. Then for each one of the selected tables I use the 'T.Name'...
  15. Varga

    Creating an Error Log?

    When an error occurs, I want Access (2000) to do a screen print (i.e. 'Ctrl' + 'Print Scrn') and e-mail it to me. I would prefer that Access open a powerpoint presentation then paste the screen print into it, and e-mail me the powerpoint document, so that the e-mail is smaller than the screen...
  16. Varga

    Creating an Error Log?

    Hi Paul, Sorry I have taken so long to respond, I’ve been super busy with work. My program is working well (thanks to you) and I seem to be upgrading it all the time. I love the fact that I can trouble shoot errors at any time after they have occurred. I’m finding and fixing errors that people...
  17. Varga

    Search every table for a value?

    Private Sub test_Click() Dim sSQL As String, Rs As DAO.Recordset, mytext As String Dim mytext2 As String, sSQL2 As String, mytext3 As String sSQL = "SELECT MSysObjects.Name, MSysObjects.Type" & _ " FROM MSysObjects " & _ " WHERE MSysObjects.Name...
  18. Varga

    Creating an Error Log?

    I fixed the 'blank error' problem. I needed to add the "Exit Sub" code before the error handling code because without it I guess the error handling code was running as part of the procedure. (...oops) I still haven't been able to log any values for "strTitle&quot...
  19. Varga

    Combine/Batch Reports to Preview/E-mail

    I have an Access2000 database where the user can choose to run multiple reports at once. When the user clicks "Run", I use a "For Each" statement to print a report for each record selected in a multiselect listbox on the users form. One problem I had was that the same report...
  20. Varga

    Search every table for a value?

    (This is how I'm trying to select the appropriate tables) Dim sSQL As String, Rs As DAO.Recordset sSQL = "SELECT MSysObjects.Name, MSysObjects.Type " & _ " FROM MSysObjects " & _ " WHERE ((MSysObjects.Name) LIKE "*Cust" " & _...

Part and Inventory Search

Back
Top