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

    regclean for winxp?

    Hi, I'm looking for a regclean utility for winxp. I dont understand why MSFT removed this from the downloads section. Does anyone know what happened? I hear regclean 4.1 might work on XP, but MSFT does not support that version. I have to find an MSFT approved registry cleaner. Anyone have...
  2. sunshine9

    newbie ?: how to tell what version of DECnet pathworks

    Hi, I inherited some code and want to find out what version of DECnet pathworks its using. (i want to migrate it to winxp). does anyone know a quick way to find out version info? and are there any code samples perhaps of replacing this code to use tcp/ip instead of pathworks/ any help would...
  3. sunshine9

    changing pathworks to tcp/ip

    hello, I have inherited an app that is currently using pathworks and runs on winnt 4.0. I need to migrate it to winxp, but have read that xp does not support pathworks. my questions are: 1) how do i find out what version of pathworks my app is using. 2) how can i change it to use tcp/ip...
  4. sunshine9

    automation error

    Hi, i'm trying to implement the following code: var objColorDialog; objColorDialog = new ActiveXObject("MSComDlg.CommonDialog"); // Show it to user objColorDialog.ShowColor(); // Retrieve color var selColor; selColor = objColorDialog.Color; ok, this throws the...
  5. sunshine9

    timezone display in jscript/dhtml

    hello, i'm trying to display the timezones that are available on the local system in a listbox. does anyone know how to do that? please please help. thanks in advance,
  6. sunshine9

    displaying windows dialogs boxes from dhtml

    Hello, I am trying to convert some C++ code that puts up a windows dialog and has a color picker control, among other things, into a dhtml page. I know nothing about dhtml and jscript. so, the question is, is there a way for me to inherit windows dialogs and pop them up from my web page...
  7. sunshine9

    programmatically controlling NLB

    Hello, I am writing a windows service that needs to add/remove hosts from a windows network load balancing cluster. I have seen documentation on the WMI Class MicrosoftNLB_Cluster which is derived from the CIM_Cluster class, but upon looking this up, I see "WMI does not implement this...
  8. sunshine9

    Programmatically controlling NLB

    Hello, I am writing a windows service that needs to add/remove hosts from a windows network load balancing cluster. I have seen documentation on the WMI Class MicrosoftNLB_Cluster which is derived from the CIM_Cluster class, but upon looking this up, I see "WMI does not implement this...
  9. sunshine9

    wlbs api

    hello, does anyone know if there is an api for wbls/nlb? I'm trying to write my own app monitoring tool and if it fails i need to remove the host from the nlb cluster and would like to do this programmatically, NOT using the command line utility they have. pls help. thanks in advance
  10. sunshine9

    Il mismatch

    Hello, I wrote some code on win2k server sp2, using visual studio sp5. compiled no problem. moved it to win2k adv server, vis studio sp5, and cannot compile: fatal error C1900: Il mismatch between 'P1' version '19991026' and 'P2' version '19970710' what does this mean and what am i doing...
  11. sunshine9

    socket programming in C++

    Hello, I am trying to write a windows service that is monitoring the health of a program that uses port 443. I thought the best way to monitor the program is to try to open a socket on 443, if it cannot, then my program is either not responding or not running, at which point I have to recover...
  12. sunshine9

    nlb load balancing algorithm

    Hello, Does anyone know the algorithm that NLB uses to actually balance its load? Is it based on IP? I know it's not round-robin from testing. Also, is there a way to configure what algorithm to use? Thanks in advance,
  13. sunshine9

    SQL server-> Oracle query

    Hello, I'm trying to create a database and table in oracle that is identical to one i have in sql srvr2000. I am not familiar at all with oracle. Can someone pls tell me how to convert this into oracle sql? CREATE DATABASE mydb ON PRIMARY ( NAME = mydb, FILENAME = 'c:\program files\microsoft...
  14. sunshine9

    SQL Server 2k DTS Import/export wiz failure

    Hello, I'm creating a doc for end-users to export data from my db into an archive. I thought the easiest way would be for them to use the DTS import/export wizard. I have them export the data into a flat file (.csv) and then when needed, import this file using the wizard again. However, when...
  15. sunshine9

    change date values in db

    Hello, I have a temp table and i have a date column. i want to use the DATEADD(day, 1, messagedate) method to REPLACE the existing data in the table. i'm trying something like this, but it is wrong. DECLARE @mydate datetime use tempdb update ##mtable set @mydate = dateadd(day, 1...
  16. sunshine9

    difference btwn DISTINCT and UNION

    Hello, does anyone know which is better (performance wise) distinct or union? sorry for the sql 101 question.
  17. sunshine9

    ODBC timeout

    Hello, I have an asp page that uses odbc to connect to a sql svr db. The db is quite large and the page times out due to an ODBC timeout. Can someone tell me how to change the odbc timeout property? thanks,

Part and Inventory Search

Back
Top