Search:

Type: Posts; User: winman

Page 1 of 7 1 2 3 4

Search: Search took 0.18 seconds.

  1. Replies
    3
    Views
    3,634

    VS 2010 Re: Why Xquery is converting Vbcrlf to Vblf

    Query 2 giving result A & vblf & B for only some rowid for others it gives A & vbnewline & B.
  2. Replies
    3
    Views
    3,634

    VS 2010 Why Xquery is converting Vbcrlf to Vblf

    <Root>
    <Row>
    <Col2>data</Col2>
    <Col3>data1</Col3>
    <Col4>data3</Col4>
    <Col1>Rowid1</Col1>
    </Row>
    <Row>
    <Col2>data</Col2>
    ...
  3. How to make InternetExplorer run in same thread

    Got error on execution of following code snippets:

    Dim WithEvents Web As SHDocVw.InternetExplorer
    Web = New SHDocVw.InternetExplorer

    Sub Web_BeforeNavigate2()
    Web.GetElementByID("ID").value...
  4. Re: Random Vb6 error , usually for 'load control(array)' statement

    GDI handles are between 2k to 3k when the program is running.
  5. Re: Random Vb6 error , usually for 'load control(array)' statement

    GDI handles are less than 2000
  6. Random Vb6 error , usually for 'load control(array)' statement

    This error comes randomly in vb6 application exe, will not repeat when application is closed and opened (i.e can't recreate error) usually comes for 'load control(array)' statement

    What is the...
  7. Replies
    3
    Views
    7,427

    Clear memory in vb6

    Option Explicit
    Dim VBFlexGridCells() As String

    Private Sub store_values()
    On Error GoTo store_values_EH

    Dim IndexLong As Long
    Dim i As Integer
    Dim entry As String
    Dim rw As Integer
  8. Replies
    41
    Views
    6,073

    Re: Usercontrol property access speed issue

    hi,

    Private WithEvents FlexExt As VBControlExtender, WithEvents Flex As VBFlexGrid

    cant we declare grid array ?

    Private WithEvents FlexExt As VBControlExtender, WithEvents Flex() As...
  9. Replies
    41
    Views
    6,073

    Re: Usercontrol property access speed issue

    thanks for the solution...
    its working properly
  10. Replies
    41
    Views
    6,073

    Re: Usercontrol property access speed issue

    proxy class: Is it possible only under .net ?...
  11. Replies
    41
    Views
    6,073

    Re: Usercontrol property access speed issue

    If DirectUC1 is declared as global and set in form load, then speed can be improved after replacing all VBFlexGrid1 with DirectUC1 in entire project. Is this correct ?
    thanks
  12. Replies
    41
    Views
    6,073

    Re: Usercontrol property access speed issue

    how to use a *separate* proxy-class ? any documentation?
    here RowData returns private member
    thanks
  13. Replies
    41
    Views
    6,073

    Re: Usercontrol property access speed issue

    yes, DirectUC1 and DirectUC2 takes same time.

    but, VBFlexGrid1.RowData(0) is 3 times slower than DirectUC1.RowData(0) in Std-EXE !?
  14. Replies
    6
    Views
    1,479

    Re: msflexgrid type mismatch

    VBFlexGrid is much better than MS(H)FlexGrid
  15. Replies
    6
    Views
    1,479

    Re: msflexgrid type mismatch

    ".Object" is 2 times faster (both msflex and vbflex )
    but works only when used as local user control.
    For 'ocx' its not working

    thanks
  16. Replies
    6
    Views
    1,479

    msflexgrid type mismatch

    (MSGrid1 added in design - vb6 form)


    Dim flexgridsp As MSFlexGrid

    Set flexgridsp = MSGrid1.Object

    gives "type mismatch" error.

    Any solution?
  17. Replies
    41
    Views
    6,073

    Re: Usercontrol property access speed issue

    Any documentation to use a typelib in vb6 (for our own ocx with usercontrol)

    thanks
  18. Replies
    41
    Views
    6,073

    Re: Usercontrol property access speed issue

    Any documentation to use a typelib in vb6 (for our own ocx with usercontrol)

    thanks
  19. Replies
    41
    Views
    6,073

    Re: Usercontrol property access speed issue

    in our test also, <UserControl Instance>.Object method reduced time from 5.4 to 2.4 seconds :)
    But for ocx, it is not working,


    Dim UC1 As UserControl1

    Set UC1 = UserControl11.object

    ...
  20. Replies
    4
    Views
    1,814

    Re: VB6 array loop speed and memory issue

    s1Byte = StrConv("vbForums", vbFromUnicode)
    even though it takes 1 byte per character, in my 'type' array of array; memory is not reduced(compared to byte() - when i save
    StrConv("vbForums",...
  21. Replies
    4
    Views
    1,814

    Re: VB6 array loop speed and memory issue

    s1Byte = StrConv("vbForums", vbFromUnicode)
    even though it takes 1 byte per character, in my 'type' array of array; memory is not reduced(compared to byte() - when i save
    StrConv("vbForums",...
  22. Replies
    41
    Views
    6,073

    Re: Usercontrol property access speed issue

    --blank--
  23. Replies
    41
    Views
    6,073

    Re: Usercontrol property access speed issue

    if i cut and paste last property near first, then speed will improve.

    Also i have moved all code inside properties to separate procedures and defined them at the end and moved all constants to...
  24. Replies
    41
    Views
    6,073

    Usercontrol property access speed issue

    Accessing first property of user control (in a large loop) is faster than accessing the last in VB6.

    Further, it depends on number of lines(in other properties) above the last property defination....
  25. Replies
    4
    Views
    1,814

    VB6 array loop speed and memory issue

    Public Type A
    Text() As Byte
    End Type

    Public Type B
    Cols() As A
    End Type

    Public Type C
    Rows() As B
  26. Re: Vb6 – late-binding with COM objects(flexgrid) 2 times slower

    There are thousands of procedures, so cant repeat the code.

    since implementing MSHFlexGrid for first time, cant risk changing all grids in project
  27. Re: Vb6 – late-binding with COM objects(flexgrid) 2 times slower

    There are thousands of procedures, so cant repeat the code.

    since implementing MSHFlexGrid for first time, cant risk changing all grids in project
  28. Vb6 – late-binding with COM objects(flexgrid) 2 times slower

    Public Function gridloop(MSFG1 As Object) As Long
    For i= 0 To MSFG1.rows - 1
    A = MSFG1.TextMatrix(i,1)
    Next
    End Function


    The above code is 2 times slower than below
  29. Re: [VB6] ActiveX VBFlexGrid (Replacement of the MSFlexGrid control)

    Hi Krool,

    I have checked the new update. It is really good
    The new sort options and the row/column autofit features are awesome and very useful

    I have also checked the speed for the late bound...
  30. Re: [VB6] ActiveX VBFlexGrid (Replacement of the MSFlexGrid control)

    Yes, I did
    Here is the report of time taken in seconds for early bound and late bound VBFlexGrid and MSFlexGrid as in the code snippet below

    Case1: VBFlexGrid (early bound), time = 7.271313 s...
  31. Re: [VB6] ActiveX VBFlexGrid (Replacement of the MSFlexGrid control)

    Hello Krool,
    I have just downloaded and tried your VBFlexGrid
    It is nice!
    However, using late-binding slows down the grid performance drastically compared to MSFlexGrid
    May I know the reason...
  32. VB6: “Compile error: Can't find Object or library”

    I have TFS setup in the network and my projects are managed here.

    When i run my vbp project file i get the error saying "Compile error: Can't find Object or library". I searched for the error and...
  33. Replies
    4
    Views
    994

    Re: Msghook alternative

    yes.
    some times the program is not responding. Also scree not drawn properly
  34. Replies
    4
    Views
    994

    Msghook alternative

    i have tried code as in CODE

    but Mouse_MessageProc fires for all window messages (and mouse scroll is managed using MSWHEEL_ROLLMSG)

    is it possible to make it fire only for "mouse scroll" ?...
  35. Replies
    4
    Views
    2,864

    Re: webbrowser navigate error

    post data sent as an array
    http://support.microsoft.com/kb/174923
  36. Replies
    4
    Views
    2,864

    Re: webbrowser navigate error

    if navigate is done with postData, in a pc with proxy internet connection, it is not navigating. any solution ?
    thanks :)
  37. Replies
    4
    Views
    2,864

    webbrowser navigate error

    PC with proxy internet settings,
    104735

    navigate with [postData] method is not navigating to webpage
    (web.WebBrowser1.Navigate buildURL, 4 + 8, , byte_array)

    any solutions ?


    ...
  38. Replies
    0
    Views
    1,375

    Passing arguments to clickone application

    Hi,
    We are trying to use clickone deployment for updating our application.My application is winform application and targeted to .NET Framework 3.5. Since we cant pass commandline arguments to...
  39. Re: Deploying ClickOne application with network share

    Hi,
    I have created a application for passing arguments to clickone application using following code

    Imports VB = Microsoft.VisualBasic
    Public Class Form1
    Dim argsToPass As String =...
  40. Replies
    0
    Views
    603

    own user control load from?

    where does my own user control gets load from? The user controls are NOT compiled as ".ocx" files. They are simply user
    controls added to the project itself and are compiled "inside" the .exe file....
Results 1 to 40 of 256
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width