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

    Having problem creating a socket

    I have the socket connecting now, but the data I am sending isn't being picked up by any of my listeners on the network (note: I am trying to broadcast traffic) I made the following changes to my top section of code to get this to work: Const sckTCPProtocol = 0 Const sckUDPProtocol = 1...
  2. cipro

    Having problem creating a socket

    I am trying to create a socket and I am getting an error on the line: Dim sock As New Socket(AddressFamily.InterNetwork ,SocketType.Rdm,ProtocolType.Udp) it says that The support for the specified socket type does not exist in this address family Can someone please point out where I am...
  3. cipro

    C# with WMI problem

    forgot to add one thing. I did add a few lines for impersonation, but it didn't make a difference with the access to 2 of the 2003 servers
  4. cipro

    C# with WMI problem

    as far as my code goes, everything seems to be working correctly. I can run queries against most windows 2003/2000 machines. There are 2 machines that I cannot query, but the issue seems to be with the machines rather than the code. The only change that I made was the one that I posted...
  5. cipro

    C# with WMI problem

    its all good. I figured this whole one out on my own.
  6. cipro

    C# with WMI problem

    Changed the following line and got it to work: System.Management.ManagementScope oMs = new System.Management.ManagementScope("\\\\" + remotePC + "\\root\\cimv2", oConn); However, I cant run my queries against windows 2003 machines(I am running from a windows 2000 machine). It is telling me...
  7. cipro

    C# with WMI problem

    I have written code that reads in a list of computers and retrieves infomation regarding free HD space using WMI. No matter what remote computers are in the list, I always get info for my localhost. The entries in the list are formated like this: \\\\computer1 \\\\computer2 Here is my Code...
  8. cipro

    Code for Events

    this is a stupid question, but I am using the GUI in VS.Net 2003 and I am trying to code for events for objects. I know if you double click a button object you get the code for "mouse click" (and that works for other objects too), but how do I access other methods like if I type in a text box...
  9. cipro

    IIS, PerlScript, and a problem...

    I have been struggling with this problem for a few days now. This thread really helped, but now when I browse to the CGI script, IE tries to download the script rather than run it. Any ideas?
  10. cipro

    Download a BLOB from Oracle 9i

    I am working on an app that needs to be able to download BLOBs from oracle. This is the code that I currently have: public static void getBLOB(Connection c) { int recNum = Integer.parseInt(readEntry("Enter Record Number: ")); //byte[] allBytesInBlob = new byte[0]; //byte[]...
  11. cipro

    File Filters

    I had a look at the FileSystemView and I still cnt find anything to do with file size. If anyone has any other ideas or advice I would really appreciate it. Thanks
  12. cipro

    File Filters

    Thanks for the suggestion ... I will give that one a try and let you know how it goes.
  13. cipro

    File Filters

    I am trying to write a file filter that will sort all files in a directory according to file size. I have looked through the books and searched the net but I haven't been able to find anything clear enough to help. If someone could help me I would really appreciate it. Thanks.
  14. cipro

    JTextPane w/ JScroll Pane

    I have a multicast chat program that uses a JtextPane in a JScrollPane. I want to set it up so I can have the pane automatically scroll as the text fills the screen. any help is greatly appreciated. Thanks
  15. cipro

    JBuilder JPanel Background Image

    I am using JBuilder and I am trying to insert a background image into a jpanel and have the ability to place other content over top of it. I have been working on this for a while but none of my code works. If anyone can explain how to go about doing this in Jbuilder I would be very...
  16. cipro

    VBSCRIPT converison

    problem is I need to convert them so they will be conpatable with a new software package being deployed within my company. Mostly the commands involve creating directories, modifying the registy and changing permissions. Is there a good resource online where I can learn some VBS?
  17. cipro

    VBSCRIPT converison

    I have some scripts that have been written into BAT files. I would like to know if there is a utility that will allow me to convert these BAT scripts into VB scripts? Does anyone know of anything that can help?
  18. cipro

    Modify Registry

    I am writing batches for Windows 200 and I need to modify permissions in the registry from within the batch file. Can someone please help me out. Thanks
  19. cipro

    Power Off

    Ok, I know this is a simple stupid question but I can not figure it out. When I shut down WinXP It goes through the usual procedure but then I get the message it is now safe to turn off your computer. I want to have the computer automatically shut off. How can I fix this? Also... I need a...
  20. cipro

    GPO & Profile Processing Error

    I am using Microsoft Operations Manager and I get this error every day or so: GPO & Profile Processing Error Windows Cannot unload your registry file. If you have a roaming profile, your settings are not replicated. DETAIL - Access is denied, Build number ((2195)) I have looked through the...

Part and Inventory Search

Back
Top