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

Search:

Type: Posts; User: VB_Learner

Page 1 of 7 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    5,004

    Re: Reading printer model name

    check the link, which direct to the answer posted at VBForums.com

    Hope, this will help.


    http://www.vbforums.com/showthread.php?t=111383
  2. Replies
    4
    Views
    5,712

    Runtime Error 6 Overflow

    Dear Experts,
    we have a VB 6.0 application, which uses a number of OCX and DLLs developed
    using VB 6.0 ActiveX projects. The application works absolutely fine on our
    development environment. One...
  3. Replies
    0
    Views
    1,365

    Edit Visio files in ASP .Net pages

    Dear experts
    I have a application, which is used for Desk allocation in different floors. This uses a Visio file as Floor Layout. The layout will be filled with Desk Details, like Port #, IP address...
  4. Copying Lotus Documents from one DB to Another

    Dear Experts
    I am currently facing issue in copying documents from one folder in one database to another folder in another database. Please find below the code. I am not able to view the documents...
  5. Replies
    1
    Views
    633

    Positioning the Background Image

    Hi,
    I need a help. I have developed a form in VB .Net (2003) and there i have put a image in the background. I want that Image should be centered. Currently the Image is Tiled. I didn't find any...
  6. ForeColor change for List Item in ListBox

    Hi,
    Can anybody help me solving this problem. I have a listbox and a button on a page, i want that, when an item is selected in the listbox, and the button is clicked, the ListItem forecolor to be...
  7. Replies
    3
    Views
    600

    Re: Resizing controls on form

    many thanks for the links, but this thing, i have already done, i want to do the same using an API. Can you suggest me? please...
  8. Replies
    3
    Views
    600

    Resizing controls on form

    Hi,
    I want to resize my controls according to my form size. Like, as i resize my form, my controls on the form, should be resized and should be enlarged if i enlarge the form. I want to know, hw...
  9. Replies
    3
    Views
    1,116

    Re: How to get the title of a window?

    yeah..that's the best option to use...
  10. Replies
    3
    Views
    1,116

    Re: How to get the title of a window?

    check in the following link, to get an idea on your query...

    http://www.freevbcode.com/ShowCode.asp?ID=526
  11. Replies
    1
    Views
    765

    Re: using CDOSYS to Talk to Exchange

    welcome to the forum, if u search on google u will get a log on this. c the following links...which may help u...

    http://support.microsoft.com/kb/327219
    ...
  12. Replies
    6
    Views
    741

    Re: Setting the ListIndex in a ComboBox

    could u plz post ur code...
  13. Re: I´ve migrated to sqlserver from access 2000

    have you verified your database on the reports...you can do so..

    open your crystal report....go to Database in the main menu...either u get a dialog box with the connection details, when you click...
  14. Re: Loop through controls on form and disable controls

    try this..




    Private Sub Form_Load()
    Dim ctl As Control

    For Each ctl In Me.Controls
    If TypeOf ctl Is Frame Then
  15. Re: COM component works in group but not compiled.

    cud u plz, post ur code here..i tested it, it's working fine...
  16. Replies
    2
    Views
    712

    Re: regarding photo retrieval

    hi,
    check this article i found on codeguru, this may help you...


    http://www.codeguru.com/vb/gen/vb_database/sqlserver/article.php/c7427/
  17. Replies
    2
    Views
    712

    Re: regarding photo retrieval

    I think, if u search the forum archive u will find many examples and many articles to refer...
  18. Re: Redistributing MS Hierarchical FlexGrid control

    i feel when u create the setup package using PDW, it automatically takes the required OCX files and if your Visual Studio 6.0 is a licensed one, then you don't need a License for the MS Controls...
  19. Replies
    2
    Views
    882

    Re: Combo Box list from database field

    Here you go...use this code..it will help you...



    Private Sub Form_Load()
    Dim oAdoCon As New ADODB.Connection
    Dim oRecSet As New ADODB.Recordset
    Dim sSQL As String
    Dim sAdoConStr As String
  20. Thread: Date

    by VB_Learner
    Replies
    9
    Views
    882

    Re: Date

    why don't u use the calendar control instead...that will help you and your user to enter the correct date and will help you in getting the correct date to compare with the data in your database...
  21. Thread: Date

    by VB_Learner
    Replies
    9
    Views
    882

    Re: Date

    use the format function to change the date to any format, else u can use to_date function in ur sql query to change the date as required......
  22. Replies
    12
    Views
    1,744

    Re: need help urgently... =)

    you can use the fileSystem object to store that msg...but before that could u plz, let us know, that u getting the message as a string or any other format? if u getting the message as a string, then...
  23. Re: Drop-down Menu Options to go to Website or Email

    to open your own home page try the following...

    go to the menu Project-->references

    In the references window search for this "Microsoft Internet Controls" or you can browse the control from...
  24. Re: Drop-down Menu Options to go to Website or Email

    you are getting the message box, the reason is that, after opening the outlook to write the mail, you are trying to close the object and all it's references. remove the last 3 lines of code, then...
  25. Re: TreeView Problems - Expand All TreeNodes and +/- Not Displaying

    add the following code after the code in the form load to expand...

    'add to expand the parent nodes
    TreeView1.Nodes.Item("root").Expanded = True
    ...
Results 1 to 25 of 157
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured