CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Craig Gemmill

Page 1 of 5 1 2 3 4

Search: Search took 0.07 seconds.

  1. Re: VB.Net 2010 API To Hide Non Plug and Play Devices In Device Manager

    Ok, so you don't have a problem with non-pnp devices, you just don't have the NO_SHOW_IN_DM flag available...

    Like I mentioned before, just hide devices with the "LegacyDriver" flag on. Using the...
  2. Re: VB.Net 2010 API To Hide Non Plug and Play Devices In Device Manager

    What happens (contrarily) when you call CM_Get_DevNode_Status on a non-pnp device?
  3. Re: VB.Net 2010 API To Hide Non Plug and Play Devices In Device Manager

    It would help to know exactly how you're querying the device information, as there are a few ways to do this. Post your code if you're comfortable.

    Like you said, you can look for the...
  4. Re: bmp file reading faster after first time ?

    There are a few tricks you can use to speed this up. I would start with the drawing. You can obviously gain much greater performance by using DirectX and/or WPF/WinRT, but you can also speed things...
  5. Replies
    3
    Views
    1,377

    Re: Another WM_COPYDATA issue

    I am able to get this to run. Are you absolutely certain that the target hwnd is correct and that the struct definition is identical on the native side?

    At the very least, you should be seeing the...
  6. Replies
    3
    Views
    1,377

    Re: Another WM_COPYDATA issue

    What immediately pops in to my head is that you should change the way that you're declaring the lpData member of CopyData, and then change the way that you pass the data along.

    Declare the lpData...
  7. Replies
    4
    Views
    712

    Re: A syntax issue...

    "run javascript(""document.getElementById(\""" & elid.ToString() & "\"").selectedIndex = {$rand(""" & lowrange.ToString() & """, """ & highrange & """)};//dropddown\"")"")"


    You can also look at...
  8. Replies
    6
    Views
    4,557

    Re: Creating a LDAP Listener in .Net

    That's a pretty ambitious project, and without knowing exactly what data they're after, I'll provide these options:

    - Handle the requests using precise permissions in AD. The permissions are very...
  9. Replies
    6
    Views
    4,557

    Re: Creating a LDAP Listener in .Net

    Ok, then we need to know more details about what you're trying to accomplish. Your first post hints at the desired functionality, but it’s not entirely clear what the objective is.
  10. Replies
    6
    Views
    4,557

    Re: Creating a LDAP Listener in .Net

    When you say listener, do you mean:

    1) An external entry point for your AD services?
    2) A proxy listener that redirects LDAP requests?
    3) A completely new LDAP server that is not AD?

    But...
  11. Replies
    1
    Views
    2,982

    Re: C# LDAP SSL connection fails

    That's usually a certificate issue.

    Check the system event log on the client machine and see if there are any ssl/schannel errors.

    In case these errors are being suppressed: Make sure that the...
  12. Replies
    0
    Views
    473

    Immediate need for CSS programmer

    I'm just going to spit it all out, as I don't have it cute yet:

    Must be very fast and efficient with CSS.

    Should also be familiar with the HTML generated from ASP.NET WebForms.

    This is...
  13. Replies
    3
    Views
    692

    Re: Lost my own account

    Sounds like you may have deleted the account, although I'm not sure what version of Windows you're using, so I can't attempt to replicate.

    You can try to "Copy" the profile:

    1) Create a new...
  14. Replies
    1
    Views
    507

    Re: Registry expert please help

    Use this tool to help you track it down:
    http://technet.microsoft.com/en-us/sysinternals/bb896645
  15. Replies
    4
    Views
    936

    Re: Terminal services

    Make sure you're opening the full group policy, and not just the local policy:
    http://support.microsoft.com/kb/307882

    Then, navigate to:
    \Computer Configuration\Administrative Templates\Windows...
  16. Re: Win2008 UDP sockets throw WSAENETRESET error after some minutes working fine.

    Any event log entries?

    Wireless connection?

    Are your network interfaces configured correctly to work with your other network gear? Duplex, speed, teaming, etc.
  17. Replies
    5
    Views
    780

    Re: Help with ASP.net file

    Yeah, you have to run that page from a web server that supports ASP (IIS for example). You cannot just execute ASP scripting on your desktop.
  18. Replies
    19
    Views
    3,539

    Re: Know when laptop lid is closed

    There is no Windows API for this that I know of. You would probably have to monitor the power status through WMI if anything.
  19. Replies
    6
    Views
    1,287

    Re: Stretchblt in .NET

    Or you can just use the Graphics.DrawImage method. It will stretch the image for you.



    Dim destinationImage As New Bitmap(100, 100)
    Dim sourceImage As Image = PictureBox1.Image...
  20. Replies
    5
    Views
    780

    Re: Help with ASP.net file

    Can we see the code for the HTML file?

    It sounds like either you're web server is not configured to handle asp files, or your HTML page is coded incorrectly.
  21. Replies
    3
    Views
    1,383

    Re: SSIS package Excecution

    Just to confirm, you have deployed the package to the filesytem OR SSIS?

    See this article for an example of what I'm talking about:...
  22. Re: add new column in gridview using vb.net

    You would have to add a control that inherits DataControlField.

    References:
    http://www.google.com/#q=vb.net+add+column+to+gridview

    One important note that is usually overlooked. You must add...
  23. Re: hi guys... I need to creat INI or INF file

    If you're talking about utilizing some of the new deployment technologies for Windows, you will find your answer here:

    http://technet.microsoft.com/en-us/library/ee461266(WS.10).aspx
  24. Replies
    1
    Views
    696

    Re: Kernel Memory

    That is the memory used by the operating system kernel.

    You'll see paged and non-paged. Virtual memory can jump in and swap part of the memory to disk (paged), but some of the kernel must always...
  25. Replies
    6
    Views
    2,005

    Re: Low network throughput in window vista

    This is awfully close to 100 Mb/s and 1000 Mb/s. My first guess would be that one of the connections is operating at 1000 Mb/s Full Dup, and the other is not.

    Can you confirm that each adapter is...
Results 1 to 25 of 114
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width