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

Search:

Type: Posts; User: Boumxyz2

Page 1 of 44 1 2 3 4

Search: Search took 0.35 seconds.

  1. Replies
    1
    Views
    788

    ADO and CFileDialog

    Hi,

    Has anyone experienced this ?

    Our application when using CFileDialog to browse for a file, causes lots of pagefaults when we do our database queries to either (SQL,Oracle or Access all...
  2. Replies
    14
    Views
    2,163

    Re: what equivalent to "continue" in C++

    OMG this is more complicated to read


    For i As Integer = 0 To limit
    If conditionA Then
    job1()
    If conditionB Then
    ...
  3. Replies
    14
    Views
    2,163

    Re: what equivalent to "continue" in C++

    If you need a continue there's a problem with the structure of your loop and or program, cause I rarely have to use a continue statement and even then, I try to change my loop so I don't have to use...
  4. Replies
    1
    Views
    3,160

    Re: Sqlce data reader..

    take a look at datareader since you used cmd.executereader()
  5. Replies
    5
    Views
    829

    Re: Debugging Help Please

    Your problem is in the constructor





    Public Class clsNode
    Public point As PointF
    Public prevNode As clsNode
    Public nextNode As clsNode
  6. Replies
    4
    Views
    922

    Re: Structures in VB.net

    yes vb does take a look

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vblr7/html/vastmStructure.asp
  7. Re: Copy ms access tables from one table to an other using vb.net

    ok you want to copy a table from Access to SQL-Server and / or Copy a SQL server table to access..

    Well I think you may want to check on DTS...


    Because I don't think in access you can do
    ...
  8. Re: Copy ms access tables from one table to an other using vb.net

    SQL Server syntax should be the same

    I use this every day

    SELECT * into tablename1 from tablename2

    will copy table2 into table1
  9. Replies
    7
    Views
    8,705

    Re: Loading a .rtf into a richtextbox on load

    ok just to clarify a lil more things because I believe that jmcilhinney answered you on the first post.



    is the same answer as



    but it's just in plain english instead of in VB code.
  10. Replies
    3
    Views
    829

    Re: Unable to set a property...

    hehe I guess you just inverted Max and min
  11. Replies
    3
    Views
    829

    Re: Unable to set a property...

    here's the problem,

    these 2 lines in the constructor

    will call the PROPERTY and not the data member

    now you set max to 0 will go throug ok

    Me.maximum = 0
  12. Replies
    1
    Views
    2,109

    Re: Detecting line feed and carriage return

    I would check 2 things


    1 - Check if your string is in UNICODE or ASCII. Might be different code
    2 - Check if you receive any line feed and or Carriage return. Maybe the function you use to...
  13. Replies
    8
    Views
    1,283

    Re: Running an EXE that is on a remote server

    Install .Net framework everywhere.

    Then the rest is as usual with a remote Exe, as long as you have set the .NET Security.
  14. Replies
    5
    Views
    4,591

    Re: Form Disappear Automatically

    The point here is to stop the thread both do it. But in any case, do application.run..
  15. Replies
    5
    Views
    4,591

    Re: Form Disappear Automatically

    that or showdialog instead
  16. Replies
    8
    Views
    1,283

    Re: Running an EXE that is on a remote server

    if this is a .NET exe, you will have to play around with the .NET Security if you want the user to be able to run it from the server.
  17. Replies
    4
    Views
    6,242

    Re: Custom Combo Box

    I expressed myself incorrectly... Here's the Behavior I would like my Combo Box to have..



    I have a database with secondary data ( data that are parents to other data ). That parent table has...
  18. Replies
    4
    Views
    6,242

    Re: Custom Combo Box

    Sounds like a plan. Thank you
  19. Replies
    3
    Views
    4,342

    Re: ipconfig /release in vb .net?

    when you specify the adapter try specifying the connection name instead when you look in network favorites properties you can see the name of the connections.

    You can name one test and then try...
  20. Replies
    4
    Views
    6,242

    Custom Combo Box

    Hello all,

    I need Hinsights and also advices about what I'd like to do. I would like to have a custom combo boxes in which I insert instances of certain class I made. I want that combo box to...
  21. Replies
    3
    Views
    4,342

    Re: ipconfig /release in vb .net?

    You could always call the Dos prompt command if it does the work for you.
  22. Re: Need to retreive all 500 rows from a table

    DO NOT DO THIS



    Do something like this instead



    TRY
    Your code
  23. Replies
    2
    Views
    979

    Re: Option Strict ON !?!?

    try this

    ' this xlapp.workbooks(1).worksheets("General") returns a reference to an Object and not a reference to a worksheet.

    Dim xlwork As Excel.Worksheet

    ' This line explicitly tells the...
  24. Replies
    2
    Views
    712

    Re: what datatype to pass to DLL?

    an array of void pointers would be a pointer of pointer to me.. so a pointer to the first address of your structure would be good.
  25. Replies
    5
    Views
    3,693

    Re: converting byte data to Drawing.Color

    the >> operator in vb.net is the SHIFT operator


    >> = shift right
    << = shift left

    I'm doing the >> shift thing.. I don't see why you need to extract something..


    If you mean read the...
Results 1 to 25 of 1081
Page 1 of 44 1 2 3 4





Click Here to Expand Forum to Full Width

Featured