Search:

Type: Posts; User: Smartchap

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    18
    Views
    4,346

    Re: Compile Error

    There may be the mistake in typing name of an object in your code. Actual name and typed name in code may be different. Post your zip file to check it.
  2. Re: How to use vertical scrollbar bars for the form in vb6

    Just add it on form and fill properties like Min Value, Max Value, Change, etc. It is used to scroll the form by small steps and big steps.
  3. Replies
    4
    Views
    1,497

    Re: Printing with TextOut API not working

    With Dot matrix printers you can't print in Grey, it will be black only. For giving shade effect characters are printed again and again with different number of times on same characters. For graphics...
  4. Replies
    5
    Views
    1,283

    Re: Report based on input search

    Dear Sam
    Thanks for the link but the link tells about a simple report generation and my query is a paraterized query based report genaration. Please help me in that.
    Thanks
  5. Replies
    5
    Views
    1,283

    Re: Report based on input search

    Dear DataMiser and Sam can you please attach some code example to achieve this without DataEnvironment as I am very poor in creating reports.
    Thanks
  6. Replies
    5
    Views
    1,283

    Report based on input search

    I want to generate a report depending on user selectable field and search item. My table “Address” has three fields viz. “First Name”, “Last Name” and “Address”. Form has one textbox “txtText”, one...
  7. Replies
    11
    Views
    1,636

    Re: With statement using multiple list boxes

    Change the following line:

    Input #1, strFileName

    to

    Input #1, App.Path & "\" & strFileName
  8. [RESOLVED] Parameterised Report with Access 2007

    Earlier I was using Access 97 based .mdb database file, DataReport and DataEnvironment to display a Report based on parameterised query, i.e. as per input from user records were displayed in the...
  9. Re: need some help with deleting a data

    In which part / line you are getting error. May be after deleting it gives error in rs.Close. Please send your full code along with Data file and detail of error so that we may help.
  10. Re: How to enabling a command only after text boxes are filled

    In form load make command button disabled. In each textbox's change event check for emptiness (Len(Text...)=0) of all text boxes, if any one is empty keep Command Button disabled.
  11. Re: Copy selected file (CommonDialog) to another folder?

    Yes it is possible. After selecting a file from Open Commondialog1, save its name with full path to a text box. Now in command button use CopyFile method to copy file to a new folder C:\New. May use...
  12. Re: Save an array of text box data to a single multi line textfile.

    Sorry I have not corrected the comments which should be as follows:



    Private Sub cmdWrite_Click()
    Dim sFileText As String
    Dim iFileNo As Integer
    Dim iCount As Integer

    ...
  13. Re: Save an array of text box data to a single multi line textfile.

    Taking your code as base required code is:


    Private Sub cmdWrite_Click()
    Dim sFileText As String
    Dim iFileNo As Integer
    Dim iCount As Integer

    iFileNo = FreeFile
  14. Thread: MSFlexgrid

    by Smartchap
    Replies
    3
    Views
    1,139

    Re: MSFlexgrid

    May use below code:



    Private Sub Text1_Change()
    For i = 1 To Me.MSFlexGrid1.Rows - 1
    If UCase$(Text1.Text) = UCase$(Left$(Me.MSFlexGrid1.TextMatrix(i, 0), Len(Text1.Text))) Then
    ...
  15. Re: VB6 - Hide graphics in specific area in a picturebox

    I think use 2 picture boxes. Picture2 in Picture1 and use Picture2 to show the required area by setting its dimensions either programmatically or during design time itself (as per your requirement)....
  16. Replies
    2
    Views
    581

    Re: Parallel port

    Google Parallel Port and get a lot of sites for answer with circuit and code also.
  17. Re: problem adding right dates to table

    Your line

    dteRunningDate = DateAdd("m", 4, INTSTRTDTE)

    is out of

    Do While dteRunningDate <= INTENDDTE
    .
    .
    .
  18. Replies
    3
    Views
    1,349

    Delete an open .mdb file

    In vb6 I am using Microsoft.Jet.OLEDB.4.0 to open an existing .mdb file. Before opening it I want to Kill (delete) it so that new data is inserted in it.
    When first time it is opened, Kill statement...
  19. Re: Recordcount is more than actual records

    Seenu_1st: There was no blank record.
    Bobbles: Thanks for the solution. Thanks for making me remember the solution. Actually some 2-3 years back I had given this solution to someone and forgot now....
  20. [RESOLVED] Recordcount is more than actual records

    In vb6 I had written a program and using an MSAccess database named 'Task' for reading records. Yesterday I made a copy of Task named "Copy of Task" and made some changes in the copy and saved. Both...
  21. Replies
    13
    Views
    1,758

    Re: Reading data from a site

    Hi jcis

    I could not understand the use of Watch Scope, i.e. how to use it and get information.
    Second, from an htm page we can get data with the help of your code. But what about an .aspx page....
  22. Re: [RESOLVED] Putting Pictures in a FlexGrid

    Thanks for the code.
  23. Re: [RESOLVED] Putting Pictures in a FlexGrid

    If you tell us also the code, we will know how to obtain it.
  24. Replies
    13
    Views
    1,758

    Re: Reading data from a site

    Thanks for the help. I will try for other sites also.
  25. Replies
    13
    Views
    1,758

    Re: Reading data from a site

    Seenu_1st, there is nothing about sorry. We all are here to help one another and thus learn a lot with new methods. I think jcis is going to help both of us learn this technique.

    Thanks for quick...
  26. Replies
    13
    Views
    1,758

    Re: Reading data from a site

    Hi seenu_1st

    I could not use the code provided on the link. I checked this code a lot of times but as I don't know how to extract data from a site using its html code, I could not use it.
    ...
  27. Replies
    13
    Views
    1,758

    Re: Reading data from a site

    Thanks jcis

    It worked as I desired.

    Now I want to get some knowledge from you. First of all I want to get NAV for Jeevan Plus (and not Jeevan Saathi Plus). Second, what is this 552 and 672?...
  28. Replies
    13
    Views
    1,758

    Re: Reading data from a site

    I want to get data for these two funds for "Growth type". I am sure someone will help me.

    Thanks again.
  29. Replies
    13
    Views
    1,758

    Reading data from a site

    I want to make a program in VB6 to get current NAV of "JEEVAN PLUS" and "MONEY PLUS" from LIC's site "https://www.licindia.in/plannav/plan_navs_new.htm" in two text boxes when the user clicks command...
  30. Replies
    12
    Views
    19,725

    Re: Copy Folder And Progress Bar (vb6)

    On www.planet-source-code.com once I had uploaded the solution. You can search Copy_PBar or something like that there (exact name I don't remember now).
  31. Re: selecting folders only with common dialog control

    Thanks LaVolpe

    With slight modifications it worked.
  32. Re: selecting folders only with common dialog control

    Suppose first time I selected folder "D:\Test". Now when I go for browsing again, I want that in browser window folder "D:\Test" is preselected and I should be able to either select a folder above...
  33. Re: [RESOLVED] Reading Path from Windows Explorer

    Thanks I will try it.
  34. Re: [RESOLVED] Reading Path from Windows Explorer

    When I want to browse for a folder and click on a folder name in Windows Explorer window I want to get full path of clicked folder.
  35. Re: [RESOLVED] Reading Path from Windows Explorer

    I am querying in a resolved post but can you help me how to have the full path from address bar (which you know). Because I searched for it but no success.

    Thanks
  36. Replies
    5
    Views
    767

    Re: Coloured Text on Picture

    Oh dear

    It was really a silly mistake by me. Actually after setting colour of text I was using wrong index of label during saving, which resulted in black printing. Now its OK.
  37. Replies
    5
    Views
    767

    Re: Coloured Text on Picture

    Thanks RhinoBull

    This method is known to me. My problem is I want user to write many texts on a picture at different-different places or should say that write text and move it to the desired place...
  38. Replies
    5
    Views
    767

    [RESOLVED] Coloured Text on Picture

    I want to write and save coloured text on a picture. For this I am using a picturebox, a transparent label on picturebox (for writing text). When I change colour of the label to any other colour than...
  39. Replies
    26
    Views
    151,368

    Re: VB - Color a row in a ListView

    I tried Martin's code but in some rows it colours only 2-3 items, in some rows 3-4 items and in rows all items, whereas we requires each item to be coloured as required for the clicked row.

    For...
  40. Replies
    26
    Views
    151,368

    Re: VB - Color a row in a ListView

    Dear uzzeierrll

    Can you post your code with database file,etc so that I could help you.
Results 1 to 40 of 100
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width