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: *

  • Users: cspm2003
  • Content: Threads
  • Order by date
  1. cspm2003

    New Folder is Write Protected

    Hello, i have a problem: Whenever I create a new folder, it is automatically write protected. I can do everything I want with the folder, EXCEPT, Im trying to install Oracle 9i and cant do so because it says that a folder is write protected. When I clear the write protect check box, it is...
  2. cspm2003

    Problem with Unicode characters

    Hello, I have a problem inserting unicode characters into my database. The database uses the UTF8 character set and the character I want to insert is: &#8218 Now, instead of this, a reverse question mark gets inserted. I searched google, but couldnt find a solution for my problem.
  3. cspm2003

    Linux-HA

    Hi, I've setup a linux cluster useing this: http://www.linux-ha.org/ The cluster has 2 nodes in an Active-Active configuration. I've pretty much accomplished everything but have two open questions that I didnt find an awnser for: - how do I move a single resource from one node to the other? -...
  4. cspm2003

    Mirror System drive

    I have a problem setting up Windows Server 2003 on a mirrored drive. First, heres my configuration: 40GB HD as Primary Master CD-Rom Drive as Primary Slave 40GB HD as Secoundary Master (Same drive as the Primary Master) now, I have installed Windows Server 2003 Standard Edition on the Primary...
  5. cspm2003

    FTP Service not starting

    Hello, I have a Problem with my FTP Server. The MSFTPSVC Service just doesnt want to start anymore. I dont really know where to look or what to check. I tryed starting it manually over the command prompt and services.msc but that didnt help any. Any suggestions? Regards, Max
  6. cspm2003

    check if TCP Port is open

    Hi, I have a problem: I have a script that needs to check if a tcp port is used. if its not used it shall start a program, if the port is used it should do nothing. The tcp port I want to check is 5555. I read something about winsock but didnt really get anywhere :S. I could do it by using...
  7. cspm2003

    Checking if a programm is still running.

    Hello, I have written a vb6 program and want to check every minute or so if a different programm is still running. I just did an endless loop and inserted a sleep statement in the loop. Is there a better way of doing this? cheers
  8. cspm2003

    Check if TCP Port is open

    Hi, is there an easy way to check if an TCP Port is open? I searched the forum and someone suggested redirecting the output of the netstat command to a textfile but format of the textfile is pretty shitty so I was just wondering if there was an easier way. cheers
  9. cspm2003

    Generic Script to use WScript.exe in Cluster

    Hi, I made a topic earlier, but I found out that theres nothing wrong with my script, but more the way server2k3 handels it I think. I got a line in my Script: Set objArgs = WScript.Arguments which works fine if I run the script manually, but if a generic script gets executed from the...
  10. cspm2003

    Script in clustered server

    Hi, I have 2 Servers which are clustered. Both run Server 2k3, SP1 and are Domain Members. Now, I have a script that checks if an application is loaded, and if not it loads the application. I want the script to be executed when the server switches. I tryed creating a generic script resource...
  11. cspm2003

    cant add winsock control

    Hi, I just wana experience a little bit with winsock, etc... and cant seam to add the winsock control. I looked under "Project"-->"Components" for the microsoft winsock control but didnt find it. I tryed to manually add the wsock32.dll but received an error message. so my question is how do I...
  12. cspm2003

    adding value to access db

    Hi, I have a access database called "db1". in this database, theres a table called "database" this table has to columns, one called ID, and another one called Name I want to append a new id and name under the last entry in this database using vb6. heres what I tryed: Set DB =...
  13. cspm2003

    run excel makro on open workbook

    Hi, I have a little problem which should be to hard to solve. I allready searched the forum and found some stuff, but not all that I need. Heres my situation: I have an excel workbook which is allways open. The workbook contains a makro which I want to call from a vbscript. I messed around...
  14. cspm2003

    trigger makro in excel

    Hi, I have written an excel makro, thats supposed to get executed when a "1" is written in a cell. I dont write the "1" in there manually, a secound program does this. I used this code Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) If Target.Address = "$G$2" Then...
  15. cspm2003

    disable checkboxes

    Hi, I have a form called userform1. I load this form using a sub. I use the command UserForm1.show now, on this Form there are a couple of checkboxes, I have to do some checks on the document, and depending on the resuls the checkboxes are supposed to get enabled or disabled. The code to...
  16. cspm2003

    Scheduling vbscript

    Hi, I have a problem with a vbscript: Ive made a script and want it to run everymorning at 6am. The script works fine when I run it manually, or if I run the task manually, but when Im not logged on on the machine, the task doesnt run. What do I have to do to make this task run?
  17. cspm2003

    CA, why?

    Hi, I have a question about CA: why would I use it? I know its for better security, but is it for domain logins, or vpn connections? I just didnt find anything specific on the microsoft tecnet, except thats its really great (I might have just overread it)
  18. cspm2003

    Formatting prolem in Excel

    Hi all, I have a formatting problem with Excel that I hope some of you could maybe help me with: I have a Excel worksheet with some text fields, nothing fancy. Ive sent the document to someone via email, they fill it out and send it back to me. This works with everyone except one person. to...
  19. cspm2003

    check for changes

    Hi, I have a little VBA problem: I have a SpreadSheet named "Test" with a Table named "Table1" for example. SpreadSheet is allways open. now, in field A0 is normally a "0". When the table gets updated, the "0" gets changed to a "1". What would I have to write in the macro to constantly check...
  20. cspm2003

    find files older then x-days

    Hi, I want to write a script that returns an integer with the amount of files on my pc whose creation date is older then 60 days. Heres what I came up with so far: Dim fso set fso = CreateObject("Scripting.FileSystemObject") Dim counter counter = 0 sroot = "C:\" for each ofolder in...

Part and Inventory Search

Back
Top