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 SkipVought 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: comnetlimited
  • Order by date
  1. comnetlimited

    Creating a Family Tree in VB6 - Help

    Hi All I search the site for the "Family Tree" but come up with only this post thread181-337740 which has limited information. I have a use a old family tree program to keep my relations information but there are some more information I want to enter which this program cannot do. I able to...
  2. comnetlimited

    Share a Remote Computer Folder

    Tell me if I am wrong. You cannot create a shared folder on a remote computer if none of his folders are shared. For example RemoteComputer have Three Folders in its C: Drive i.e. Folder1, Folder2 and Folder3. Folder1 is shared as Folder1 and has three SubFolders i.e. subFolder1, and...
  3. comnetlimited

    Share a Remote Computer Folder

    Hi Friends A typical site of ours have a Server and around 10 computers. They are all connected to the server. We have 20 Sites. There is a particular file that I want to copy from the server's "c:\jetform\templates\file01.xxx" to "c:\jetform\templates\" folder of the other computers that are...
  4. comnetlimited

    Celeron, Sempron and pentium Options.

    Hi all. I am an AS400 programmer. Since my company will do away with AS400 in the next couple of months, I am planning to teach myself some VB.Net Skills (and other windows programming skills) before I went to a local PC shop to buy a PC. Here are my options. 1. AMD Sempron 2400 CPU, 40Gb Hard...
  5. comnetlimited

    Calling a VBS inside a VBS

    OK Thanks.
  6. comnetlimited

    Calling a VBS inside a VBS

    Hello there all, I have several VBScripts. Eg: CheckDate is located in C:\VBSCripts\CheckDate.vbs. I call this script inside another script. i.e. Call c:\Vbscript\CheckDate.vbs I would appreciate your help.
  7. comnetlimited

    Last Date of the current Month.

    Wow..great Excellent PHV. I will use your oneliner.
  8. comnetlimited

    Last Date of the current Month.

    Hi PHV & others.. I think I got the solution myself. sub LastDateOfCurMonth() dim lstDateCurMonth, fstDateCurMonth, fstDateNxtMonth fstDateCurMonth="01/" & Month(date) & "/" & Year(Date) fstDateNxtMonth=DateAdd("m",1,fstDateCurMonth)...
  9. comnetlimited

    Last Date of the current Month.

    Hello everyone, Using VBscript, Is there a way I can use to find out the last day of the current month. Why I need this is because I creating a backup script. I schedule it to run on the Last day of the month. That is it creates a folder of the format YYYYMMDD which is the last date of the...
  10. comnetlimited

    Schedule a VBScript that has a message box

    Thanks PHV. I achieve what I want to achieve with you Tip.
  11. comnetlimited

    Schedule a VBScript that has a message box

    Hello people. I have a VBScript that Backs up files. I want this script to run manually and also to run when schedule. The problem is I don't how will I make it so that the task response to the message box and confirmation box. I need your help. See my Code below. Option Explicit Sub...
  12. comnetlimited

    Format Date dd-mm-yy to yyyymmdd

    Thanks both.. PHV I did a search on Format Date and used your Tip in thread329-979415. Thanks alot
  13. comnetlimited

    Format Date dd-mm-yy to yyyymmdd

    Hello folks, I capture the string date in the format dd-mm-yy from a file name and I want to create a folder which reflects that date in the format yyyymmdd For eg: File Name = "Statement as at 30-11-05 for Joe.pdf" String Date = 30-11-05 Folder Name = 20051130 I will appreciate if someone...
  14. comnetlimited

    Adding New User caused-Error Cannot Update. Database or Object is Read

    I was using the "Wrong" Shortcut to open the database. It is OK now. Thanks.
  15. comnetlimited

    Workspace,Group or User --- Compile error user defined type not define

    I want to capture name of users who are signing and to enable or disable certain buttons if they belong to a certain group. I am declaring Workspace and User but coming with Compile Errors. Dim ws as Workspace ----> Produce Error Dim usr as User ----> Produce Error Dim grp as Group --- Produce...
  16. comnetlimited

    Adding New User caused-Error Cannot Update. Database or Object is Read

    I have a new Database... when I went to security option to set Admin Password or create new user it comes up with error " Cannot Update. Database or Object is Read Only" Pls somebody help.
  17. comnetlimited

    Refreshing all Network Printers in the Printer Folders

    Hi all, We share our AS400 printers using Client Access Operations Navigator so that our win2000 Server can access it to print stuff. The printers are added as normal network printers to the win2000 server. They are working fine. Except for some times the printers loose temporary connection to...
  18. comnetlimited

    Move Files Depending on File Size.... ...Error Occured

    PHV Thanks, But I use your example in another post and got it Right. I replace If left(oFile.Name,3) = "ERR" Then with If Lcase(Right(oFile.Name,3)) = "err" Then And it works fine. File Extension are three Last Char of the File Name therefore I think Lcase(Right(oFile.Name,3)) works fine...
  19. comnetlimited

    Move Files Depending on File Size.... ...Error Occured

    Thank you PHV and TSUJI...for your greate Help. Actually what I was trying to achieve is to delete files that has less than 1KB and also delete files which has file extension of "err" (Error and Move move other files to the folder D:\Data It worked fine by deleting the 1KB size files, but it...
  20. comnetlimited

    Move Files Depending on File Size.... ...Error Occured

    Hi, I am newbie to VBScript. Below is a VBScript I wrote in Notepad (is there a proper software to use to write VB Script so that syntax can be checked??) and then save as Clear Error Folders.vbs on my deskstop. What I am tryin to achieve is to move ONLY files that has a size of 1 KB From My...

Part and Inventory Search

Back
Top