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 SkipVought 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: *

  1. everytime

    AGP Texture Acceleration in Win 2K

    just to update. The above didn't work :-( Still can't enable AGP texture acceleration. This was using ALi 1.90 AGP Driver. I'll keep looking
  2. everytime

    AGP Texture Acceleration in Win 2K

    Hey I have this problem too - I have a Geforce4 Ti4600 card on an asus A7A266-E motherboard. I have the latest (nvidia) vga driver for the card and the latest bios for the motherboard. This is all running on winXP professional. When I run dxDiag it shows that I cannot enable 'AGP Texture...
  3. everytime

    Retrieving a Folder`s Path

    Use the common dialog control. Put one of the controls on the form. below code assumes a button called cmdBrowse and a common dialog control called comdfilepicker. THis one just looks for text files Private Sub CmdBrowse_Click() Const cdlOFNFileMustExist = &H1000 Const...
  4. everytime

    MS Runtime Problems

    Cheers chilledproduce! I will give that a go. thanks.
  5. everytime

    Numeric Validation in a Text Box

    not a 'quick' way necessarily Public Sub NumericLimiter(Which_Box As TextBox) 'This sub limits the entries made to the parameter text box to numeric values > 0 Dim intCursor_Position As Integer If Not Which_Box.Text = "" Then If IsNumeric(Which_Box.Text)...
  6. everytime

    MS Runtime Problems

    Does anyone know of problems relating to the runtime version of MS Access 2000? I have a database that runs fine on Win95 full access and runtime. The same database also runs on Win2K full access but NOT on the runtime version. Has anyone come across anything similar? the database falls over on...
  7. everytime

    function definitions

    Yep VB does not support function overloadin unfortunately. I guess you wan to do it so that you don't know what the data type is that you pass to the function - that way you just want to pass the variable itself not with another one stating the data type. If so just pass it as a variant and use...
  8. everytime

    counting records

    I have a query that just pulls data from a table. I would like to add a count so that the first field in the query would say the number of the record i.e. 1, the second record 2 and so on. What do I need to put in the field to do that? thx for any help
  9. everytime

    Combo Box Adding at Runtime

    The lack of ability to add to a list box is a real pain. If you want to add items that don't come from an SQL statement then set the row source type to a value list and then manipulate the rowsoure to: 'list item1;list item2;list item 3' where each entry is separated by a colon. Then simply...
  10. everytime

    active control

    thx Nick - I was trying to do a mouseover effect for menus that I could put in a class and so reuse. I got it down now. If you weant the code here it is. Put it in a class module Option Explicit Private PreviousControl As String Private CurrentForm As Form Private MenuControls() As String...
  11. everytime

    active control

    Can someone tell me how to get the name of the control that has focus on a form? Thks
  12. everytime

    looping cells

    Hi, I have a range object and I would like to be able to loop through all the cells and change certain properties of them IF there text say a certain thing. Can someone advise me how to do this? Might look something like this but how do I reference a CELL (refereed to below as c)? Dim...
  13. everytime

    external html source

    Gone with the layer option. Thanks for you ideas. Here's the code if anyone is interested: For IE <STYLE TYPE=&quot;text/css&quot;> #textDiv {position:absolute; left:50; top:50; width:300; height;200; clip:rect(0,300,200,0);} </STYLE> <DIV ID=&quot;textDiv&quot;> <IFRAME...
  14. everytime

    external html source

    I have some html which I would like to appear in many pages so being more maintainable. Anyone know how to do this? I have tried using javascript with document.write but this simply outputs the text straight to the screen and does not (in this case) create a table. Any ideas? I would like to do...
  15. everytime

    external source?

    I have some html which I would like to include in several pages (it sets up a menu system, and I don't want to use a frameset). Is there a way to write that text to the html document? I tried changing the html to javascript (with document.write before each line) and then used document write to...
  16. everytime

    Table borders

    I have found a way. Details can be found here: http://www.htmlhelp.com/reference/html40/tables/table.html check out the frame attribute of a cell everytime
  17. everytime

    Table borders

    Can someone tell me how to set the border property of a single cell so that only one side of the cell has its border property on? Thx everytime
  18. everytime

    Prevent cache

    How can you stop a browser from cahing a page so that the lates version will be loaded each time. I have tried putting this in the head: <META HTTP-EQUIV=&quot;Pragma&quot; CONTENT=&quot;no-cache&quot;> but it didn't work. Thanks for any help
  19. everytime

    positioning

    Thanks QuietDean and Klae I will try these out :)
  20. everytime

    positioning

    Can anyone tell me how to keep an image in the same position (say the top of the page) when the page is scrolled? I know I could just usse a frame to do this but is there a way to do this without frames? thanks

Part and Inventory Search

Back
Top