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

Search:

Type: Posts; User: billwilson3

Page 1 of 79 1 2 3 4

Search: Search took 0.69 seconds.

  1. Help with conversion to VC8 - Linker error

    I have a VC7 project, recently converted to VC8. I'm seeing a decoration issue. I am getting this error when I build my project.

    error LNK2019: unresolved external symbol __imp__wprintf

    I...
  2. Re: IOException thrown by BinaryFormatter.Deserialize

    It sounds like the port is being closed before the formatter has seen the entire serialized object. You could try using a two step process of getting the entire stream then deserializing it once it...
  3. Replies
    8
    Views
    3,841

    Re: Trapping TAB key pressed event

    You can create a handler for the Leave event of the control you want to trap. When the focus moves off that control, the Leave event is raised and your handler's code will be execute. In the handler,...
  4. Replies
    3
    Views
    900

    Viperius, I forgot to mention, thanks for the...

    Viperius,

    I forgot to mention, thanks for the suggestion.
  5. Replies
    3
    Views
    900

    When I get the list of buttons from the toolbar,...

    When I get the list of buttons from the toolbar, they are ToolBarButton objects. I can wrap them and name the wrappers, but its too late by then. I need to get the name the actual developer used when...
  6. Replies
    3
    Views
    900

    Need help with sub controls

    I need to be able to localize the buttons on a toolbar on the fly. (along with other controls).

    The Toolbar control has a buttons collection of the buttons on the bar. Unfortunately the items in...
  7. Replies
    1
    Views
    733

    The ones I have done were simply a matter of...

    The ones I have done were simply a matter of adding the new congiguration elements to my app config file. If the properties being overridden are outside of the appSettings section, you will probably...
  8. Replies
    4
    Views
    1,104

    stephanb - I know the user and password can be...

    stephanb -
    I know the user and password can be changed manually, but I don't know of any API to do it.

    One possiblity is to let the service try to install with the desired user name and...
  9. Thanks. That's what it looked like to me. I...

    Thanks. That's what it looked like to me. I finally just created a new project and all is fine...

    I appreciate the response.
  10. That is a common method. When the hover is...

    That is a common method. When the hover is detected (MouseMove event, I expect), change your cursor to something you think is appropriate. Change it to normal if the mouse is moved off an edge. When...
  11. Replies
    3
    Views
    1,209

    Add a Windows Media Player compondent to your...

    Add a Windows Media Player compondent to your app. That way it will be contained in your application window. You can control it through its COM interface.
  12. NooB, Please help. Unable to register KeyUp event.

    I'm having a problem compiling my KeyUp event



    this.textBox1.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyUp);
    ...
    private void textBox1_KeyUp(object sender,...
  13. Replies
    0
    Views
    1,194

    Large app deployment, need HELP

    I have a large enterprise application. It involves 50 - 100 seperate .exes and several thousand .dlls. We want to group the .exes in their own directories with the .dlls they use. There are about 100...
  14. There is an article in msdn on how to do this....

    There is an article in msdn on how to do this. search for "custom action database" to find it.
  15. Replies
    0
    Views
    1,078

    Need help with complex installation

    I'm trying to develop a deployment process to automate installation of our web app.

    There are three main parts to the installation.

    1. .Net web services
    2. database queries (create tables, add...
  16. Replies
    0
    Views
    551

    Building with Ant

    Does anybody have a sample .xml for using Ant to build MSVC projects?
  17. Replies
    5
    Views
    641

    I find it on the Tools menu. I'm using VB6 (SP5)....

    I find it on the Tools menu. I'm using VB6 (SP5). I'm not sure if it is there on all versions. If its not on your menu, you can probably either add it or down load it from MSDN.
  18. Replies
    5
    Views
    641

    You can use the Menu Editor tool to build the...

    You can use the Menu Editor tool to build the menu. It will create stub functions in your program.

    e.g.

    Sub File_New()

    End Sub

    Fill in the code do perform the desired functions.
  19. Replies
    1
    Views
    561

    Write a program to build appropriate query...

    Write a program to build appropriate query statements for each database based on what is multiple drop down lists, check boxes, and list boxes.

    The program will execute the queires and display the...
  20. Replies
    2
    Views
    841

    Thanks Alan. I'm not sure it will do me any good...

    Thanks Alan. I'm not sure it will do me any good to know. But I'm pulling my hair out now...

    So, I'm looking for any additional info I can get.
  21. Replies
    3
    Views
    822

    More info in case you are interested.

    BTW: This is an issue of conversion, not type casting. Grafton's solution will correctly CONVERT the data.

    Type casting is a matter of treating a piece of data as if it were of a different type,...
  22. Replies
    2
    Views
    1,153

    ODBC is only as thread-safe as the ODBC driver...

    ODBC is only as thread-safe as the ODBC driver you are using. Look at the driver documentation to determine its level of thead safety.

    For example, if you are using SQL Server. ODBC is safe at the...
  23. Replies
    2
    Views
    841

    Which processor is running this code?

    I would like to be able to detect the processor that is currently executing a thread's code.

    I have a multithreaded application that is behaving badly on Win2K systems with multiple processors. It...
  24. Replies
    10
    Views
    1,823

    There is a good MFC example of a Socket server on...

    There is a good MFC example of a Socket server on MSDN.
    http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q175/6/68.asp&NoWebContent=1
  25. Replies
    4
    Views
    1,215

    BTW using the SQL delete statement is much much...

    BTW using the SQL delete statement is much much faster. It espcially releives resource usage on the SQL server. Using CRecordset causes cursors, data exchanges and other overhead.

    The DELETE SQL...
Results 1 to 25 of 1963
Page 1 of 79 1 2 3 4





Click Here to Expand Forum to Full Width

Featured