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 Wanet Telecoms Ltd 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: DUF
  • Content: Threads
  • Order by date
  1. DUF

    password

    Hi, I have a home network with 3 computers connected, How can I stop the computer asking for the network password every time it starts. Is there a way to logon to the network without the password? Thanks Duff
  2. DUF

    Time

    I am working on a time and rate pay sheet My problem is...... worktime starts at 00:18 and worktime ends at 09:30 a different rate of pay comes into effect at 07:00 to the end of work time how can i allow for that? I use DateDiff("n", txtStart, txtEnd) / 60 to find the difference between the...
  3. DUF

    Decimal point

    Hi, Does anyone knowe of a code that will allow the user to enter a cash value in a textbox without having to use a decimal piont, I want to automatically insert the Decimal point??? Can you point me in the right direction Regards Duf
  4. DUF

    Auto Decimal Point Position

    Hi, Does anyone knowe of a code that will allow the user to enter a cash value in a textbox without having to use a decimal piont, I want to automatically insert the Decimal point??? Can you point me in the right direction Regards Duf
  5. DUF

    New to Networking (But not working!!!!)

    Hi, I have bought the Belkin Professional Network Kit and I have followed the insturstions to a T and it's not working now I have a question which be revelent There are a few LED's on the network card is one of these LED ment to on when the computer on also what is an Wake-On-Lan? Thanks Duf
  6. DUF

    MScomm control

    Hi, Can I use the MScomm control on a form as I want to send data to the serial port, and if so how do I get the control on the form?? thanks duf
  7. DUF

    Screen resolution

    Hi, I don't know if this is the right forum to ask in but here I go. I have installed a digital vaird recorder on a secound hard drive which is working fine. But it requires a Screen resoulstion of 1028 x 768 which the coumpter is set to.All is fine. Now when I quit this program and go to use...
  8. DUF

    listbox selection by letters

    Hi, On a form I have one listbox which to bound to a query from tblSuppliers, One subform which will display the deatils of then supplier which everone is selected in the listbox. I also have a command button for every leter of the alphaped. What I want is that when any of the command buttons is...
  9. DUF

    Textbox enabled Prevent it from grayed out

    When the enabled property of a textbox is set to yes how can I stop it been grayed out I want the textbox to remain the same as a normal textbox. I have developed a touchscreen program and I do not want the user to enter the textbox. Usinf the |Lock property will not work. any ideas duf
  10. DUF

    Product Compliance Check

    Hi, I have reforamt my HardDrive and reinstalled Windows 98se I then tryed to installed Access 2000 and this window came up "Product Compiance Check","Setup failed to locate a valid qualifing Product on your machine , Please select the Drive where a qualifing product can be...
  11. DUF

    Zip File

    Hi, I want to Zip a Access .mdb this is the code I came up with Private Sub Command24_Click() Call Shell("c:\program files\winzip\winzip32.exe" & "News.zip" & "NewsAgt.mdb") End Sub It's telling me that it can't fins the file what is the correct way to code...
  12. DUF

    Controls and Procedures

    Hi, I have seen this before some tome ago here but can not find it What is the Max number of Controls you can have on a form am I right in thinking it around 200 controls?. Also when codeing a procedure I know that procdeure can not be more then 63Kbs in lenght (I think) Is there a way to check...
  13. DUF

    Spin a button

    Hi, Does anyone know how to use the ActiveX spin Button control on a form I have never used a ActiveX control in access and I want to use the spin button on a textbox that will hold a number that is not bound. thanks for the help duf
  14. DUF

    All Textboxs on form set to Null

    Hi, On the On Load event of an form I want all the textboxs to be set to null I tryed the following code but it will not work maybe someone can tell me what is wrong? Dim ctl as Control For Each ctl In Me.Controls If ctl.Controle type acTextBox Then ctl = Null Next ctl thanks Duf
  15. DUF

    Hi, On a form I have a comboxbox

    Hi, On a form I have a comboxbox that contains code in the AfterUpdate event. From an other Object on the same form I set the combox value. How can I get the AfterUpdate event of the combox to run??? Duf
  16. DUF

    Find a recordset with DAO .Need Help

    Hi, I use the following code which works ok. Dim db as Database Dim rs as Recordset Dim strSql as String strSql = "Select * From tblProducts Where ProductID = " & Me.txtproductID set db = currendDb set rs = db.OpenRecordset(dtrSql,dbOpenDynaset) with rs .edit . . End with...
  17. DUF

    Mobiles Phones sms

    Hi, Can anyone one point me in any direction to learn about sending a sms to a mobile from VB6. # thanks Duf
  18. DUF

    filtering records

    Hi, I am using the following code to find multiple records Private sub txtscan_Afterupdate() intcounter = dcount("style_no","products","STYLE_NO = " & _ txtscan.text If intcounter = 0 Then msgbox " No match" Exit Sub End If...
  19. DUF

    display records

    Hi in my products table i have three records that have the same style_no. When the user inputs the style no into the textbox (txtscancode) on the main form I want the subform to display these three records, now if there is no match I want to put in a new record. can anyone help me with this ???
  20. DUF

    Hi in my products table i have

    Hi in my products table i have three records that have the same style_no. When the user inputs the style no into the textbox (txtscancode) on the main form I want the subform to display these three records, now if there is no match I want to put in a new record. can anyone help me with this ???

Part and Inventory Search

Back
Top