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

Search:

Type: Posts; User: vchapran

Page 1 of 26 1 2 3 4

Search: Search took 0.23 seconds.

  1. Replies
    1
    Views
    1,210

    FullPath property

    When I work with Windows Application in VS 2005 I do the following:
    1. I need to make some changes and do not want to lose the original code - I copy entire folder of my solution let's say...
  2. Replies
    4
    Views
    1,392

    QuickBooks like Grid

    Does anybody know an ActiveX control similar to QuickBooks or Quicken grid.
    I need a grid which has 2 lines in the row and cells can be different types (text, calendar, combo, button).
    This is a...
  3. Replies
    2
    Views
    4,906

    Invalid Picture

    I'm using this code to create an image file from the data in SQL Server:
    Dim RS As ADODB.Recordset
    Dim mstream As ADODB.Stream
    Set RS = New ADODB.Recordset
    RS.Open "Select HighLogo from...
  4. Thread: Update db

    by vchapran
    Replies
    0
    Views
    519

    Update db

    I have this scenario:
    1. XML file with schema and data is created from SQL Server tables. XML file
    contains 6 tables, some of them have rows, some of them are empty.
    2. XML file is given to the...
  5. Thread: Using TLB

    by vchapran
    Replies
    1
    Views
    1,691

    Re: Using TLB

    I made it work by doing this:
    1. Created COMInterop5.dll with VB 2005 and copied it to another machine in the application folder. 'Register for COM interop was checked, without this it did not work....
  6. Thread: Using TLB

    by vchapran
    Replies
    1
    Views
    543

    Using TLB

    I created very simple Class Library in VB 2005 (let's call it COMInterop). I
    set Register For COM Interop property to true to make it accessible by VB6
    program.
    After I compiled it, I got...
  7. Thread: Using TLB

    by vchapran
    Replies
    1
    Views
    1,691

    Using TLB

    I created very simple Class Library in VB 2005 (let's call it COMInterop). I
    set Register For COM Interop property to true to make it accessible by VB6
    program.
    After I compiled it, I got...
  8. Thread: SQL Server SP

    by vchapran
    Replies
    3
    Views
    762

    Re: SQL Server SP

    I run both (Query analyzer and VB app) from the same workstation. I'm runing on local database and on the db located on the server. The result is the same. In VB it's 50 times slower.
  9. Thread: SQL Server SP

    by vchapran
    Replies
    3
    Views
    762

    SQL Server SP

    I have a stored procedure with parameters in SQL Server 2000 database. When I execute it in Enterprise Manager, it takes less than 1 second to return rows.
    When I use it in VB 6 code to populate...
  10. Replies
    3
    Views
    801

    Re: Title Bar visibility

    I want to hide Title bar. But I found discussion on internet about exact my problem and one guy gave there the code saying that he solved the problem with TITLE BAR visibility with that code.
    ...
  11. Replies
    3
    Views
    801

    Title Bar visibility

    I set ControlBox = False on all my Children forms at design time. When any of Child form is loaded into MDI, its Title Bar appears for 0.3-0.5 sec making the application look not clear enough.
    I...
  12. Replies
    0
    Views
    641

    Position in DataBindings

    I have DataTable dtAccount populated with records.

    daAccount.Fill(dtAccount)
    I also have
    bdsAccount = New BindingSource
    bdsAccount.DataSource = dtAccount
    I can...
  13. Replies
    0
    Views
    593

    WebBrowser Control

    My current VB 6 application uses pdf.ocx control to display pdf files.
    I have some problems with this control :
    1. It's not presented in Acrobat versions later than 5.0, or I cannot find it. So I...
  14. Replies
    7
    Views
    3,555

    Re: How to find if the file is busy

    After testing this approach within several days I realized that it doesn't work sometimes. Why, I have no idea. It just doesn't make any copy.
    Could anybody suggest anything for either copying the...
  15. Replies
    7
    Views
    3,555

    Re: How to find if the file is busy

    I got a solution on another forum from Terry Olsen:
    Do
    Try
    file.copy(source,dest)
    Exit Do
    Catch
    End Try
    Loop

    It works!!!!
  16. Replies
    7
    Views
    3,555

    Re: How to find if the file is busy

    Thank you.
    I do not need a message. I need to copy file in any case, but I don't know when it will be not busy.
    As a temporary solution I tried a loop:
    For lngAttempt = 0 To 100000
    ...
  17. Replies
    7
    Views
    3,555

    How to find if the file is busy

    I need to copy the file (OutboxLog.txt produced by Fax service) right after it was updated. I'm using:
    System.IO.File.Copy(strSource, strDestination, True) to do that, but if the source file is busy...
  18. Replies
    1
    Views
    886

    Insert Image with SP

    I have a very complex stored procedure for insert/update. I've got a new request to add Image type field in this process. So far there was not any image data.
    I do not have any problem with adding a...
  19. Replies
    1
    Views
    723

    Windows Service Question

    I created Windows Service in VB.Net with the name MSFaxListener.
    It should listen Windows Fax Service events and update SQL Server database when fax job changes it's status. In order to do that in...
  20. Replies
    6
    Views
    5,153

    Re: FaxComExLib document conversion

    No, it doesn't work.
    I already have a code for Word objects, and I hide Word in that code. It's not visible during file preparation (I'm combining several documents into one, replacing some values...
  21. Replies
    6
    Views
    5,153

    Re: FaxComExLib document conversion

    Right.
    MS Word screen appears for a portion of second and I do not want it to do.

    Thanks.
    Vlad
  22. Replies
    6
    Views
    5,153

    FaxComExLib document conversion

    Finally after several days with many problems I made my VB6 app send faxes through MS fax printer on the server and get the status of each job.
    I used FaxComExLib.
    Now when...
  23. Replies
    1
    Views
    614

    Re: What kind of project?

    Writing Windows Service in VB.NET is so easy. I decided to go that way.

    Thank you
    Vlad
  24. Replies
    1
    Views
    992

    Re: Error When Updating via Datagrid

    Does it happen if you start from the second column?
  25. Thread: number pixel

    by vchapran
    Replies
    2
    Views
    790

    Re: number pixel

    Try to use Screen.Width and Screen.TwipsPerPixelX
    You'll get needed values.

    Vlad
Results 1 to 25 of 632
Page 1 of 26 1 2 3 4





Click Here to Expand Forum to Full Width

Featured