Skip to content

IT & Infrastructure

General IT Discussions

This category can be followed from the open social web via the handle it-infrastructure@forum.codeproject.com

6.1k Topics 18.2k Posts
  • 0 Votes
    2 Posts
    12 Views
    D
    you can develop the code for microsoft dynamic crm 4.0...u can built it also but u cant debug it or cant run it until u have the CRM service...for which u need the access to the server.
  • scan for IP Cameras

    sysadmin question
    4
    0 Votes
    4 Posts
    12 Views
    S
    I am working on a similar problem at the moment and although it is not an IP camera I suspect that the principles are likely to be the same. The device I am working with has a configuration tool that operates in the same way that you describe. I used Microsoft's Network Monitor, although Wireshark would do just as well, to see how it discovered the device on the network. What I learned from the network trace is that the application sends out a subnet broadcast to a UDP port which the device then responds to. From the response the application then knows the IP address of the device and the initiates a point-to-point TCP connection to configure the device. I am still deciphering the UDP payload the application sends and the response the unit sends but I hope that helps. Alan
  • How to calculate Flops per second

    tutorial question
    4
    0 Votes
    4 Posts
    21 Views
    A
    Hi can you please send the code for calculating FLOPS?
  • Legal Billing Software

    html com
    2
    0 Votes
    2 Posts
    12 Views
    L
    Please pay for your advertising! It's time for a new signature.
  • Collaboration

    database csharp python php design
    3
    0 Votes
    3 Posts
    12 Views
    D
    Ahh, I KNEW that wouldn't be held against me, after all, Aussies are awesome :laugh: I'll update my original post with a little more detail.
  • 0 Votes
    3 Posts
    11 Views
    D
    Or... use AutoHotkey[^] to write a shortcut, so you can press a combination on your keyboard, and have it automatically fill it out. Quite a handy tool, you'll want to read the manual though. Bloody good idea. I've got a script set up with a quick hotkey to bring the script up in the editor, and one to refresh the script, allowing very quick changes. Awesome stuff! :)
  • good reporting tool

    csharp asp-net design collaboration tutorial
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Perspective correction Algorithm needed

    algorithms
    3
    0 Votes
    3 Posts
    12 Views
    C
    me too !
  • C# 2010 and .net 4.0

    csharp learning
    4
    0 Votes
    4 Posts
    12 Views
    J
    I have 3 different editions of that book, and can safely say it is about the best reference book going. Don;t read it cover to cover but keep it on your desk for when you need some reference.
  • Session Recording S/W.

    csharp wpf wcf help
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • website file storage?

    com question learning
    3
    0 Votes
    3 Posts
    8 Views
    L
    How are you planning on uploading and downloading the files? FTP is a pretty universal way of transfering files too and from a webserver. There are plugins based on PHP and .net that will allow you to upload files to an http directory and then you can downlaod them via a link. FTP is just alot easier.
  • IT Network Security?

    sysadmin security question discussion
    3
    0 Votes
    3 Posts
    12 Views
    L
    It really depends on the situation. Does the owner of the account work for multiple units within the organization, How many users are you talking about, 10, 1000, 100000? Most users that are in a single department are assigned a single signin and are given the priveleges for all of the various things they need access to. However this is not alwyas possible as automatically syncing passwords across differing platforms can can headaches so sometimes its easier to assign a different usernames for different things.
  • VS debugging issues [modified]

    debugging help visual-studio com sysadmin
    2
    0 Votes
    2 Posts
    9 Views
    P
    You should ask this on the article forum instead. This is not the place to post this question, as it is more likely that somebody who uses the library will have encountered this issue than somebody here, and, more importantly - if it is solved, the fix should be visible against that article. "WPF has many lovers. It's a veritable porn star!" - Josh Smith As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes. My blog | My articles | MoXAML PowerToys | Onyx
  • parameters passed in LAN connection..

    question
    2
    0 Votes
    2 Posts
    8 Views
    L
    choose a single forum to ask your question, and stick to it. :| Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
  • Network (?) question

    sysadmin question c++ com architecture
    5
    0 Votes
    5 Posts
    14 Views
    K
    Thank you for the hints! Based on them, I found this excellent basic description: http://www.wilsonmar.com/1loadbal.htm[^] Now looking for VRRP freeware on Windows :)
  • Match drive letter with physical disk

    c++ csharp com regex question
    8
    0 Votes
    8 Posts
    28 Views
    D
    Randor, Thanks for the detailed info! In my case, though, the "hacktastic registry" solution would not work because the backup drive is a removable SATA drive, not USB. Still, good to know. FYI, looking in my own registry, I only had the USBSTOR data in one pair of keys, both pointing to the same drive: \??\Volume{9243114d-2fd5-11df-aac5-00e04cf116c3} and \DosDevices\G: Dybs The shout of progress is not "Eureka!" it's "Strange... that's not what i expected". - peterchen
  • Syntax to send contact information by SMS

    question docker
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • Replace explorer

    question help
    3
    0 Votes
    3 Posts
    13 Views
    S
    .msc files are Microsoft Management Console[^] snap-ins. Control panel applets are a different beast and have the .cpl extension. Steve
  • Safari Browser cache issues

    database sqlite security question
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • Checking for terminal services?

    com sysadmin help question lounge
    2
    0 Votes
    2 Posts
    11 Views
    L
    Hi Russel, You could read the %SESSIONNAME% environment variable with the GetEnvironmentVariable Function[^] and check the first three letters for 'RDP'. http://www.codeproject.com./Messages/3217969/Re-How-to-know-that-the-programmatically-that-the-.aspx[^] You could probably go a longer route by calling ProcessIdToSessionId with GetCurrentProcess() and pass the resulting session ID along to WTSQuerySessionInformation. But it just seems so much easier reading the environment variable. Best Wishes, -David Delaune