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

Search:

Type: Posts; User: rocket

Page 1 of 8 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    3
    Views
    754

    What is a class.....

    ....and does it require a variable?
  2. Replies
    6
    Views
    1,569

    Updating FoxPro table using ADO

    I have Foxpro tables that I'm trying to edit/add to but I keep getting an error "Current record does not support updating. This may be a limitation of the provider, or of the selected locktype."
    It...
  3. Replies
    2
    Views
    2,251

    Thank you Boumxyz2.

    Thank you Boumxyz2.
  4. Replies
    2
    Views
    2,251

    Accessing Visual FoxPro database

    This is my first time using FoxPro and relatively new to VB.NET to compound the problem.

    Does anyone have any links or code they can share on how to access/read/write to FoxPro tables using...
  5. Replies
    6
    Views
    1,182

    Thank you again.

    Thank you again.
  6. Replies
    6
    Views
    1,182

    It came in handy on the "array" of textboxes I...

    It came in handy on the "array" of textboxes I have which I've given the same AccessibleName value. Then, all I had to do is use the Tag propery of each as an index and assign a class property to...
  7. Replies
    6
    Views
    1,182

    Thank you. That is killer! :)

    Thank you. That is killer! :)
  8. Replies
    6
    Views
    1,182

    Class Property Array

    Can you have a Class Property Array in .NET?

    I want to convert this from VB6 to .NET:



    Public Property Get DefaultValue(nCtr As Integer) As Single
    DefaultValue = m_nDefaultValue(nCtr)...
  9. Replies
    0
    Views
    917

    Am I on a Terminal Server?

    Is there an API or a way to tell when your app is running on a Terminal Server environment?

    I thought this would give me the right info. but it's not, it returns false either way:

    Public Const...
  10. Your help has been about as useful as the...

    Your help has been about as useful as the democratic convention. :rolleyes:
  11. Declaring fixed length variable arrays in Structure

    How do I declare a fixed length variable array? I'm stuck, any help will be appreciated:



    Structure MyInformation...
  12. Replies
    2
    Views
    1,486

    Thanks for the response. I got it solved. 2...

    Thanks for the response. I got it solved.

    2 problems:
    1 was the initial table I was referencing was apparently corrupted when I first built it.
    2 was one of the table names I used was "Module"....
  13. Replies
    2
    Views
    1,486

    Establish ADO connection using VB6

    Hi,

    I'm trying to establish a connection to an Access2000 database using ADO. I'm exposing Microsoft ActiveX Data Objects 2.7 Library. What am I doing wrong?

    I keep getting the following error...
  14. Go to Project>>Project...

    Go to Project>>Project Properties>>General>>Startup Object and set to Sub Main

    Have you stepped though the code to see if in fact the .previnstance is false?
  15. Also keep in mind that Windows NT can support...

    Also keep in mind that Windows NT can support multiple desktops and if you use an exe designed to work with distributed COM, even more funky stuff can occur.
  16. Replies
    3
    Views
    1,093

    Try using .Width in lieu of .ScaleWidth. ...

    Try using .Width in lieu of .ScaleWidth.

    Haven't really looked at your code all the way, but that stood out.
  17. Replies
    4
    Views
    3,027

    I don't think you need to use the word Set at...

    I don't think you need to use the word Set at all. Try this on Get and Let statements:

    Public Property Let TagGrid(ArgTagGrid As MSFlexGrid) <--- ERROR
    PropTagGrid = ArgTagGrid
    End Property
  18. Replies
    10
    Views
    1,270

    Who made this thread a 5 star rating? And what...

    Who made this thread a 5 star rating?

    And what criteria was used for the rating?

    At this point all of it sounds pointless to me, since all you have to do is make it a public function or sub in...
  19. Replies
    4
    Views
    3,027

    Your error is in bold: Public Property Let...

    Your error is in bold:

    Public Property Let TagGrid(ArgTagGrid As MSFlexGrid)
  20. Replies
    6
    Views
    996

    Since you're not going to know exactly when the...

    Since you're not going to know exactly when the user is done typing, it's best to use the Validate for the control to figure out whether or not you need to enter it as a new item or not.

    If you're...
  21. Replies
    6
    Views
    869

    I still would like to know how to find out if the...

    I still would like to know how to find out if the maximum number of users has been reached using winsock if anyone knows how:

    i.e., what error is returned, etc. that lets me know that the reason...
  22. Replies
    6
    Views
    869

    Actually, it's not.:D The problem was on the...

    Actually, it's not.:D

    The problem was on the internal DLL call we use not returning the correct return code.

    This is why I said I was able to partially figure out the problem using winsock....
  23. Replies
    6
    Views
    869

    Nevermind, I think I have it figured out using...

    Nevermind, I think I have it figured out using Winsock.
  24. Replies
    6
    Views
    869

    Server has reached max number of users

    Hi,

    Don't know if this is the correct forum for these questions, but here it goes:

    In VB, how can you tell from a Client machine if a server that it is trying to access has reached the maximum...
  25. Replies
    3
    Views
    995

    Thanks for the responses. Cimperiali, so far...

    Thanks for the responses.

    Cimperiali, so far from what I've encountered, the changes are so drastic that I would be better off taking your advice and re-write.

    I'm so not looking forward to...
Results 1 to 25 of 187
Page 1 of 8 1 2 3 4





Click Here to Expand Forum to Full Width

Featured