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 bkrike 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. ThomasMatelart

    Save XML with DOMDocument40... but with "CRLf"

    Hello, I built a complete xml with MSXML2 objetcs (DOMDocument40, IXMLDomElement, ...) --------------------------------------------------------- Set XMLDoc = New MSXML2.DOMDocument40 XMLDoc.async = False XMLDoc.Load ("<?xml version='1.0' encoding='ISO-8859-1' ?>") Set pi =...
  2. ThomasMatelart

    Change MSMQ Queue Security with VB

    Hello, I found the msdn code to create a msmq queue in vb. Set qi = CreateObject("MSMQ.MSMQQueueInfo") qi.PathName = ".\PRIVATE$\test" qi.Label = "test" Call qi.Create But I don't find a code to change the security access of this queue. I want to set to "Full Control" for "All user". Please, I...
  3. ThomasMatelart

    Hard reset Comm Port, like restart computer

    Is it possible to reset a Comm port without restart the computer, in Visual Basic ?
  4. ThomasMatelart

    Use FTP with recovery method with VB6

    Hello, I would like use a ftp tool with VB6. But i want use a ftp tool that use a recovery method when the transfert is down and up after a few seconds... Thanks for you answers... Thomas
  5. ThomasMatelart

    Get the progress status of ftp file transfert

    I'm using batch command to send ftp file on server. But the files i'm sending are bug, so i would like to display a progress bar on my application. How can i catch the progress status of the tranfert ? Thanks for your answers... Thomas
  6. ThomasMatelart

    Run Shell command without batch file FROM A specific folder

    Hello, I would like start a dos command without use a batch file. so, I use VBA.Shell(<Command>) where <Command> = C:\A\Test.exe "FileName1" "FileName2" I have a problem. The Test.exe application must run in the folder of the application, but if i use this way, the command is running from...
  7. ThomasMatelart

    How waiting the end of the copy of a file before mode it ?

    I'm spying a folder after new files. When a new file is coming, i would like to copy it in a new folder. BUT, if the file is big, the file exists in the folder before the end of the copy. How can i wait the complete transfert of the file before copy it in the new folder ?
  8. ThomasMatelart

    List files in FTP site (INCLUDE ALL SUBFOLDERS)

    Hello, How can I search specific files on a FTP site ? In Visual Basic The files can be stored in subfolders. Thanks, Thomas
  9. ThomasMatelart

    MDIChild always maximized ???

    Hello, I created an application with a MDIForm and MDIChild forms. One of the MDIChild Form is the result of a search : A flex is loaded in this form. When I click on a row, an other form is loaded (with details of the row). Is it possible to keep the ResultForm always maximized also if a new...
  10. ThomasMatelart

    Close Error Message from &quot;other&quot; application

    Please ... help me ! I am activating (using shell) a program that generates sometime to time an error message (application error : The memory could not be read...). The message is non-negotiable. It can not be disabled. Is there any way to check to see if it has appeared and THEN close this...
  11. ThomasMatelart

    Catch an error of a external application launched by my VB application

    I have a VB application. When I start an other application by a dos command file (a files conversion application), it happen sometime this application (launched by my application) makes an error (the memory could not by read...). (It's a windows error). How can I catch this error and make a...
  12. ThomasMatelart

    Executing process for all rows of a table in SQL SP

    Hi ! I'm trying to execute a stored procedure 'B' for each rows of a table in an other SQL stored procedure 'A'. (The param on the stored procedure 'B' are the data stored in each rows of the table!) How can I do a 'While' simulation ? HELP ... ThomasM
  13. ThomasMatelart

    Call a specific function by using the value of a parameter

    Hi ! I want to call and execute a specific function. The name of the function to call is stored in a parameter of an other function. How can I do it ? Thanks ! ThomasM

Part and Inventory Search

Back
Top