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

Search:

Type: Posts; User: dglienna

Page 1 of 80 1 2 3 4

Search: Search took 0.20 seconds.

  1. Replies
    40
    Views
    10,932

    Re: Windows 10 Update

    Anyone running the BETA version will be required to do a FRESH INSTALL. Current version expires March 15, 2017. I found out after hours of support calls, trying to keep Office 2013 updates from...
  2. Re: Can someone kindly explain what these codes mean

    It's not VB6, anyways
  3. Re: Help needed for C# in Monodevelop using Xamarin Studio and GTK# Forms

    I'd suggest you search for sample apps on their site, that's all!
  4. Re: Help needed for C# in Monodevelop using Xamarin Studio and GTK# Forms

    Doesn't look that bad to me... http://www.monodevelop.com/screenshots/
  5. Replies
    2
    Views
    1,533

    Re: get nearest or closest values

    Query Analyzer should convert it to SQL for you. Try it out!
  6. Re: Flat Combo with custom button, border & nose color

    Is there a question somewhere in there?

    Also, open the ADVANCED TAB, and add CODE TAGS to get people to read your code.


    ' This is code with tags

    Click the # after highlighting your code
    ...
  7. Replies
    5
    Views
    1,582

    Re: Need some changes in macro

    Show a typical string that you are reading. You'll need to determine IF there are 42 characters, then INSERT a split character, and try it again. Should be easier.
  8. Re: Sending data using UDP and TCP protocols can cause malfunction of hardware?

    No can discuss... http://forums.codeguru.com/aup.html
  9. Replies
    11
    Views
    2,238

    Re: About a Friend

    Wow. Sad news!
  10. Re: New to VB, I need a better way to add Combo Boxes.

    Use an ARRAY() of Comboboxes, and dynamically add each one. Could use the same code, then iterate and add the totals
  11. Replies
    12
    Views
    7,151

    Re: Help! StreamReader read one line up

    Just STORE the previous line. Assume it won't START with {
  12. Re: **Write a class called die that will hold the number of sides of a die, sides HE

    See Listing 5.3 for help with this program.
  13. Replies
    2
    Views
    1,401

    Re: TCPIP Socket Send Failure 22119

    This might help: http://msdn.microsoft.com/en-us/library/ms145160(v=vs.110).aspx
  14. Replies
    1
    Views
    964

    Re: Student looking for help with a code

    Welcome to the Forums!

    Please use CODE TAGS to format your code. (Advanced view #)


    // This is code

    Also, try using F8 to step thru your code, or else put a breakpoint F9 at your main loop...
  15. Replies
    2
    Views
    1,198

    Re: Query from multiple tables-Error

    Use SQL MGMT STUDIO to debug query's. It stops at each word that faults, as apposed to the wrong line...
  16. Replies
    7
    Views
    1,697

    Re: Which application started another

    Process Explorer, or Systernals, which have tools
  17. Re: DataGridview update and Datagridview refresh

    Use datagrdview1.refresh() if it is hidden by something else, but no data changes. Update causes auto-refresh
  18. Replies
    4
    Views
    1,655

    Re: help in connecting with COM port

    Then, that's what IS using up the port
  19. Replies
    9
    Views
    2,516

    Re: SQL connection in the app.config file?

    Use more than one instance of SQLExpress. SQLExpress1, SQLExpress2, etc.
  20. Replies
    4
    Views
    1,655

    Re: help in connecting with COM port

    Remove the other devices. Something is using that port, already!
  21. Replies
    3
    Views
    1,751

    Re: i want Correct Code For Ping

    Devices can choose whether to answer the PING command or not. Routers usually don't
  22. Re: Toggle Buttons hides/unhides a table below it (word VBA mso 7)

    Just set up a few flags, and use them instead. Shouldn't be too difficult to keep things apart. Could use =1 =2 =3 or BOOLEAN
  23. Re: Does it make sense top new-up pens and brushes in OnPaint() every time it's calle

    Change some of the fields to different properties, and I'd bet it doesn't run the same. Who calls what, and with what scope, is in effect!
  24. Replies
    81
    Views
    225,751

    Re: VB6.0 will live until Windows 7!

    haven't tried or bothered to try
  25. Re: I need some coding help on making a keyboard event

    What are you trying to do? It could call anything in the task list!
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured