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

Search:

Type: Posts; User: Craig Gemmill

Page 1 of 80 1 2 3 4

Search: Search took 0.37 seconds.

  1. Replies
    3
    Views
    1,954

    Re: active directory certificate services

    Did you see this kb?
    How to configure IIS for relay with Office 365

    That's really all there is to it, but let me also give you another option which is preferred for it's flexibility and...
  2. Re: Load CSV to Listview including Subitems

    Here is a quick example that should give some insight:



    Private Sub LoadDataToListview()

    Dim filePath As String = "C:\myfile.txt"
    Dim streamReader As New...
  3. Replies
    2
    Views
    2,494

    Re: Problems with Callbacks

    You're likely going to have to use either Integer or IntPtr in the place of any Long data types.

    This can essentially be a guessing game without full documentation. Based on the names of the...
  4. Re: Load CSV to Listview including Subitems

    I see you mention performance, but I don't really see how LINQ could be quicker in this case. A loop will almost always give significantly better performance when compared to a LINQ method.

    If you...
  5. Re: WMI SystemRestore InteropServices.COMException Crash. What's wrong?

    This could really be anywhere in that code, but based on your testing I'm going to say that it's a x86/x64 issue.

    Try changing the build platform to x86.

    Right click on the solution, select...
  6. Re: Selecting 64bit vs 32bit Dll's at runtime....

    Don't know if you're still working on this, but you would want to look at dynamically loading the dll's.

    See the links below:

    https://www.google.com/#q=vb.net+dynamically+load+dll+at+runtime
    ...
  7. Replies
    3
    Views
    15,427

    Re: Socket Multiple Connection VB.NET

    Post your code and where the error is encountered. Are you sure the first client is successfully receiving the data?
  8. Re: Newbie problem - can I use a string to set a parameter?

    There is still some ambiguity here, but let me try to point you in the right direction:

    1) Globally, this is possible using "Reflection", but you shouldn't do this. It's a very resource expensive...
  9. Re: Newbie problem - can I use a string to set a parameter?

    I'm sure what you want to do is possible, but you leave some of the context open for interpretation, so we need to clarify some things.

    Let's start by getting a better understanding of what you...
  10. Replies
    3
    Views
    15,427

    Re: Socket Multiple Connection VB.NET

    Assuming that the packets are flowing ok to the first client without issue, then the issue is most likely caused by trying to re-use an open connection. You need to close the connection before...
  11. 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...
  12. 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?
  13. 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...
  14. 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...
  15. Replies
    3
    Views
    2,351

    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...
  16. Replies
    3
    Views
    2,351

    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...
  17. Replies
    4
    Views
    990

    Re: A syntax issue...

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


    You can also look at...
  18. Replies
    6
    Views
    9,371

    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...
  19. Replies
    6
    Views
    9,371

    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.
  20. Replies
    6
    Views
    9,371

    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...
  21. Replies
    2
    Views
    159,802

    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...
  22. Replies
    0
    Views
    729

    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...
  23. Replies
    3
    Views
    1,017

    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...
  24. Replies
    1
    Views
    770

    Re: Registry expert please help

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

    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...
Results 1 to 25 of 1978
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured