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

Search:

Type: Posts; User: littlebigman

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    1,989

    Disable/enable device driver?

    Hello

    Since the embedded sound device on my Windows7 workstation doesn't always work after waking it up back from Sleep mode, I'd like to write a small VB.Net app to disable/re-enable it like it's...
  2. Replies
    2
    Views
    1,541

    Good FTP control?

    Hello

    I need to write a simple FTP client so that users can upload files to our server with no hassle.

    I'm using the VB 2010 Express IDE: Is there a good FTP control that you would recommend,...
  3. Replies
    0
    Views
    1,709

    Web proxy for smartphone?

    Hello

    I'd like to call some web sites through a proxy to rewrite web pages on the fly.

    Since 1) Privoxy isn't supported/maintained for Android and 2) there doesn't seem to be a way to configure...
  4. Re: Pass data from BackgroundWorker to main thread?

    For others' benefit, here's some working code:



    Private Sub BackgroundWorker1_DoWork(ByVal sender As System.Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles...
  5. [RESOLVED] Pass data from BackgroundWorker to main thread?

    Hello

    In a Windows Form, I need to delegate a lengthy action to a BackgroundWorker so that the main application doesn't freeze.

    However, the code in the BackgroundWorker must send data back to...
  6. A couple of newbie questions about the .Net framework

    Hello

    I have the following questions about using the .Net framework:

    1. To improve performance when starting apps, is it possible to preload the .Net framework at boot time, and keep it in RAM...
  7. Re: [newbie] What does 1

    So, with MYVALUE1=1 and MYVALUE2=2...


    #defined MYCONST1 (1<<MYVALUE1)
    #defined MYCONST2 (1<<MYVALUE2)


    MYCONST1 now contains 2, and MYCONST2 contains 4.

    Thanks for the link.
  8. [RESOLVED] [newbie] What does 1

    Hello

    I need to understand what the following line does:


    .end = 0x20000000 + (1 << MAX(VAL1,VAL2)))


    What does the syntax "1 << SOMEVALUE" do?
  9. Re: [newbie] Is this function compiled in kernel?

    Thanks for the tip. I'll grep for the include and see from which other file this function is called.
  10. [RESOLVED] [newbie] Is this function compiled in kernel?

    Hello

    I have weak C skills, and need to check what this warning means when compiling a driver for the uClinux kernel:


    #if defined(CONFIG_MYPLATFORM)
    ...
    static void driver_init(void)
    {...
  11. Replies
    1
    Views
    2,599

    [DDE] Ndde? Mark Hurd's? DDEML? Other?

    Hello

    I'm a VB.Net newbie and need to interact with a deadware Windows application that only supports DDE to communicate with external applications. FWIW, I use Visual Basic 2008 Express.
    ...
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured