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 strongm 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: kadara
  • Content: Threads
  • Order by date
  1. kadara

    Bind string array to DataGridView

    Hi, I have a function that creates a string array with 6 elements. I would like to create a DataGridView with 10 columns and bind strings arrays to each column (the results of the function). How could I do that? Thanks.
  2. kadara

    Dictionary to DataGridView

    Hi, I would like to know if there is a posibbility to add key-value pairs to DataGridView? Would you like to show me an example? Thanks.
  3. kadara

    NotifyIcon App

    Hi, I created the following NotifyIcon App: ' ' Created by SharpDevelop. ' User: kadara ' Date: 14.06.2013 ' Time: 11:09 ' ' To change this template use Tools | Options | Coding | Edit Standard Headers. ' Imports System.Threading Public NotInheritable Class NotificationIcon Private...
  4. kadara

    Close all connection on exit

    Hi, I'm relative new in vb.net programming, so I have some questions. I have an application that connects to an oracle server to retrieve some records from tables. Everything is working well. But I would prevent some problems. Is there a possibility to close all recordsets and the connection...
  5. kadara

    Convert Date and Time to number

    Hi, How could I convert the date and time (for example '15.02.2013 19:58:50' ) in 2 (or more) decimal number?
  6. kadara

    Restart an aplication on remote computer

    Hi, I have a running application (whatever.exe) on a remote computer. That executable sometimes not working properly and need to be relunch it. How could I restart this executable on that computer?
  7. kadara

    Select multiple printers

    Hi, I would like to select all printers installed on the computer that contains a specific name (for example: select all printers with "Microsoft" in the name of the printer). I used the following code, but doesn't work: strComputer = "." Set objWMIService = GetObject("winmgmts:" _ &...
  8. kadara

    Format numbers

    Hi, I would like to use numbers in 3-digit format: for example 1 to 001, 2 to 002, 10 to 010, 11 to 011 and so on. In details: I would like to get the following string format W20HYaaa where aaa is a number between 1 and 255. How could I do that?
  9. kadara

    VLookup

    Hi, Is there any possibility to write a vlookup function in vbscript? I would like to search values in excel worksheet and return a value in the same row.
  10. kadara

    File monitor

    Hi, I would like to monitor a text file. Currently I use the following code: strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") 'Set colMonitoredEvents = objWMIService.ExecNotificationQuery _ ' ("SELECT * FROM __InstanceModificationEvent WITHIN 1...
  11. kadara

    INI File

    Hi, I have an ini file with email addresses: [Address] <TO>whatever01@whatever01.com <TO>whatever02@whatever02.com <TO>whatever03@whatever03.com <CC>whatever04@whatever04.com <CC>whatever05@whatever05.com How could I read separate the addresses and the keys (TO or CC)?
  12. kadara

    Scheduled Task

    Hi, I'm trying to create a scheduled task from vbscript. I've tested the following code: ' Create a Scheduled Task strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set objNewJob =...
  13. kadara

    Run code at specific time

    Hi all, Is it possible to create a vbscript where a peice of code (an internal function or sub) can run at a specific time and date? Any ideas? Many thanks.
  14. kadara

    Concatenate

    Hi, I'm new in vbscript. I need your help. I have 2 text files. Here is the first one: "^XA~JSB^MMC^MNN^MTT^POL^PMN^LH0,12^PR2,2^MD30^JUS^LRN^CI0^LL320^XZ" "^XA" "^FB210,1,,C^FO12,80^A0B,35,30^FDTAKATA-PETRI^FS" "^FO0,20^GE55,55,3^FS" "^FB56,1,,C^FO19,16^A0B,27,34z^FD" + ID_NO + "^FS"...

Part and Inventory Search

Back
Top