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 TouchToneTommy 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. nkyeshi01

    Project distribution on server

    but if I don't know the \\server\directory\ names, this program will be installed with different clients, and the names are going to change. Maybe I missunderstood you Thanks for answering
  2. nkyeshi01

    Project distribution on server

    Hello once again to all! ok I have my project, but here is the thing I want to install my program on the local machines and the DB on the server, the thing is that on each machine the mapping of the server is going to be under a diferent drive(e.g E:\, F:\, X:\files\etc..) SO: OPTION 1...
  3. nkyeshi01

    using recycle bin to send deleted files

    I'n using the line DelToRecyBin ("path\filename.ext") to call the function, I call it from another sub that I have. Thanks for responding Ep
  4. nkyeshi01

    using recycle bin to send deleted files

    Hello all, I'm trying to send the deleted files to recycle bin folder, I found the following code: ++++++module code +++++++ Public Type SHFILEOPSTRUCT wFunc As Long hwnd As Long pFrom As String pTo As String fFlags As Integer fAnyOperationsAborted As Boolean hNameMappings As Long...
  5. nkyeshi01

    DropHighLight / drag and drop error

    hi to all When the target folder is missed it gives this problem: Run-time error 91: Object variable or with blockvariable not set. I know that it means that the TreeView.DropHighLight = nothing but yet still does not let me exit the sub if nothing is selected, it gives me the...
  6. nkyeshi01

    Run time error '713'. Class not registered

    ok, when I tryied to use the wise installation system, I picked the "Import vb project" and browse to indicate the project ( name.vbp) but it tells me that "the visual basic project type is not currently supported. path\name.vbp" my project type is Standard EXE so it should support it, do you...
  7. nkyeshi01

    Run time error '713'. Class not registered

    for now I'mcopying the exe to check if it works, I'll be using the wise installation system to install.
  8. nkyeshi01

    Run time error '713'. Class not registered

    hi to all please need your help asap! I'm trying to install my application where the computer has windows xp, but when I try to run it it gives me this error: Run time error '713'. Class not registered. Looking for object with CLSID:{ big number} Correct me if I'm wrong but this is because of...
  9. nkyeshi01

    Urgent, I have an ActiveX error

    sorry the error is that ActiveX component cannot create object EP
  10. nkyeshi01

    Urgent, I have an ActiveX error

    hi to all, I need your help , I have this application that downloads and uploads files trough FTP but when I install it in another computer and try to run it this error pops up when I try to download the files and then it gets frozen : error: ActiveX component cannot create component the...
  11. nkyeshi01

    trouble Using combo list to search a file in the DB

    very good Idea, let me try it, Thank you
  12. nkyeshi01

    trouble Using combo list to search a file in the DB

    I'm not sure what you mean,
  13. nkyeshi01

    trouble Using combo list to search a file in the DB

    The thing is that I need to go into the loop so it can move trough the database and find the file that I need so it can be displyed into the corresponding text boxes Thank you for responding EP
  14. nkyeshi01

    date and time stamp

    Take a look on this, It might help """this two will get you the actual date and time of your computer MyDate = str(date) MyTime = Str(time) """here is how you can manipulate those strings and some others Dim MyTime, MyDate, MyStr """""let's say that this are the results MyTime = #17:04:23#...
  15. nkyeshi01

    trouble Using combo list to search a file in the DB

    Hello all! when I click an item in the combo list (drop down list) It looks up for the file and it displays the information in the correspondig text boxes but it erases the combo text. How can I make the code to leave it there??? this is the code : Private Sub Combo1_Click() Dim var As...
  16. nkyeshi01

    download multiple files using FTP

    LF, Thanks a million dude, it worked just fine.
  17. nkyeshi01

    download multiple files using FTP

    Hi to all, ok, I'm trying to download several files,when I run the process step by step (F8) it works like a charm, but when I run it all at once I get the error message => Error:Still executing last request. This ocurrs because after I login(logon function) to the server and change to another...
  18. nkyeshi01

    Combo box and Data.recorset

    yes, actually I can list the contains, I have it like this: Public Sub loadCombo() Dim var As String Data1.Recordset.MoveFirst Do While Not Data1.Recordset.EOF var = Combo1.Text Combo1.AddItem var Data1.Recordset.MoveNext Loop End Sub and it fills up, this is the part that works.
  19. nkyeshi01

    Combo box and Data.recorset

    yes, actually I can list the contains, I have it like this: Public Sub loadCombo() Dim var As String Data1.Recordset.MoveFirst Do While Not Data1.Recordset.EOF var = Combo1.Text Combo1.AddItem var Data1.Recordset.MoveNext Loop End Sub and it fills up, this is the part that works
  20. nkyeshi01

    Combo box and Data.recorset

    Hello all! From the selection of an item of the combo box I am trying to look for the corresponding record in the DB. This is what I am using: Private Sub Combo1_Click() Dim yourpick, var As String yourpick = Combo1.Text Data1.Recordset.MoveFirst 'HERE i GET THE ERROR,DESC BELOW 1: If...

Part and Inventory Search

Back
Top