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 Mike Lewis 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: goobil
  • Order by date
  1. goobil

    Create windows users from ASP page.

    Hi all, Still need some help on this please
  2. goobil

    Create windows users from ASP page.

    Hi all, I am working on the project In ASP and I want to be able to create NT users and directory from with in my ASP page. If that is passable can someone please point me the right direction? Because I don’t know where to start in making this happen. Thanks Kenneth
  3. goobil

    How to Pass variables from form to form

    That is true ghardenb. I have come up with a few tricks of my own. i can call the string from form one form1.txttext1.text. in form2. So i have created a auto number from the database and used that for the form label. When the cmdnext_Click(Index As Integer) is load it go to the database get the...
  4. goobil

    RUN TIME ERROE ‘13’ Type Mismatch.

    I remove the brackets and i get another error Invalid operation. (Error 3219) I am using MS access2003 and was wondering if the problem is the database by using DAO as the data engine because when i connect directly to the database from within the form i don’t get any error.
  5. goobil

    Internet Transfer Control Download File

    Try this ******************************* Dim ByteArray() as Byte ByteArray() = Inet1.OpenURL("ftp://ftp.test.com/test.tmp" , icByteArray) Then you can save the download file to disk as follow: Open "c:\test.tmp" for Binary as #1 Put #1,, ByteArray() Clase #1
  6. goobil

    Can i fill the fields of a web form from VB code?

    I have some stuff like this in the pass my using session variables. You will have to reading the information from the activex and then store it in session. Just a suggestion
  7. goobil

    How to Pass variables from form to form

    Hi OCODE, or anyone I am trying to understand what you are saying but I am not that of an expert in VB. I have created three forms. Each forms have one text box “ text1,textt2,text3” The first two forms have two command buttons. Private Sub Command1_Click() Form2.Show End Sub...
  8. goobil

    How to Pass variables from form to form

    Hi all, The company I’m working for have a three pages form that customers will complete, I want to build an application in VB6 using access2000 as the database so we can start storing the information on a database for easy access. My question is and I will try and make it as clear as I can...
  9. goobil

    Startup form

    Thanks, it work
  10. goobil

    Startup form

    Hi all, Quick question i have five forms and i just make another one and call it menu form and i want when the program startup the menu form startup as the default startup form. I just can’t remember how to change it. Kenneth
  11. goobil

    Invalid operation. (Error 3219)

    Invalid operation. (Error 3219) I am getting this error when using the insert into statement in VB6. The data engine is DAO to connect to access2003 database. I tries the select * statement and that work find. My question to all is why it’s not inserting new record to the database? Form...
  12. goobil

    RUN TIME ERROE ‘13’ Type Mismatch.

    Hi all, I am testing a data module just to open an access database and am getting a RUN TIME ERROE ‘13’ Type Mismatch. Then I used the debug mode connecting to the database was ok I think the problem is in the select statement. Please help Frmtest Option Explicit Sub Form_load() Dim rstest As...
  13. goobil

    synchronizes the PDC with the two DC servers?

    Hi Joseph, Sorry about that since i am from the old school i always refer to the top domain as PDC. Yes there were two DC controllers and as i stated one go bad. See the problem that i am having is that the other DC is running my exchange server and some of the service not working because they...
  14. goobil

    synchronizes the PDC with the two DC servers?

    Hi all. I am having a problem. I have one PDC and two DC on my network for some reason the raid on the PDC go bad i rebuild it as the PDC. My question is it synchronizes the PDC with the two DC servers? And how can i get back all the user account back? Thanks in advance
  15. goobil

    Clear form

    Hi all, Quick question: I have a from that update or insert new data, What i want is after inserting or update the information the form clear all the textbox.
  16. goobil

    Run-time error (-2147217900(80040e14)

    Hi all, Thanks for the help. It is working know i don’t know what i will do with out you guys. I will be posting as time goes by because i will be doing VB stuff full time from know on. Once again thanks. PS: One more question I have a textbox on the form and I want it to show the time when...
  17. goobil

    Run-time error (-2147217900(80040e14)

    Sorry to say but i have tried that too. Any other suggestion?
  18. goobil

    Run-time error (-2147217900(80040e14)

    Can some one please explane why this insert not working i am geting an error.Run-time error (-2147217900(80040e14) Syntax error in insert into statement. Private Sub cmdtest_Click() Dim test As String Dim oConn As New ADODB.Connection Dim strSQL As String Dim rsdb As New ADODB.Recordset Dim...
  19. goobil

    Open access database table In VB6

    Hi Johnwm, No it not an arry it's a single text box I have three VB book and none of then refer to this problem.

Part and Inventory Search

Back
Top