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

Search:

Type: Posts; User: vivek_29

Page 1 of 3 1 2 3

Search: Search took 0.08 seconds.

  1. Replies
    1
    Views
    1,422

    Page Totals in Crystal Report

    I want have Page Totals on a field in my report. Can anybody help me out.
  2. Hi, The problem occurs very randomly some...

    Hi,

    The problem occurs very randomly some times on the first run itself,sometimes on 2nd or 3rd or 4th on any random instance.

    I populate the textboxes on form load using the following syntax:...
  3. Hi Thanks for your replies. I have been...

    Hi Thanks for your replies.

    I have been working with vb for last 3years, and as per my understanding also, this piece of code does not have any problem.More Over if you see the code, i am using...
  4. As required by you i m posting the code also ...

    As required by you i m posting the code also



    Private Sub txt_st_LostFocus(Index As Integer)
    txt_st(Index).BackColor = global_module.gvar_NormalColor
    Select Case txt_st(Index).Tag
    ...
  5. Controll Array - Pls. Help asap. Very erratic problem

    Hi,
    I agree that the problem i am facing is erratic and most of you may find it funny also but the fact is that i am facing this problem and not able to find a solution to this problem.

    Problem...
  6. Replies
    3
    Views
    725

    Referencing an existing Form

    Hi.
    This might be a very basic queston but pls. excuse my ignorance for this.
    I am developing a VB.NET Windows based application.
    My Application has got 3 Forms Namely :

    Form1
    Form2
    Form3
    ...
  7. Urgent.MCP for VB.NET Exam 70-306-Resources?

    Hi,
    I am preparing for Exam 70-306(Developing Windows based Applications using VB.NET).
    I will be very greatfull if you can provide the links where i can get free Practice question(some thing like...
  8. Replies
    8
    Views
    1,355

    Hi Chanti,Tim is absolutely correct.The sp that u...

    Hi Chanti,Tim is absolutely correct.The sp that u told suffers from the same problem.
  9. Replies
    8
    Views
    1,355

    Hi thanks for replying. I know that i can get...

    Hi thanks for replying.
    I know that i can get the various attributes of field by using the method that u have suggested.
    But the problem is that i can not get the description of the field.
    I want...
  10. Replies
    8
    Views
    1,355

    Sql Server Column Information

    I want to find out the description of a column in a table.
    Where does the sql stores the various properties of the columns.Such as name,Data-Type,Length,Description etc.

    and how can i get it.
    ...
  11. Replies
    2
    Views
    752

    How to find Column Description

    Hi Guys,

    I have a small problem.I m creating a database in SQL Server.Now because of our naming convention standards me coulnn names are not descriptive in nature.For e.g. 'First Name' will be...
  12. Thread: URGENT

    by vivek_29
    Replies
    1
    Views
    533

    Re: URGENT

    R u talking about Split windows like windows explorer.
    If yes then goto ............There u can find a controll named MBSplitter.

    Hope it helps
    ...
  13. VB and Web Help!!!!! Suggestions Invited Help!!!!!

    Hi,

    I have to do a project in vb.Now the requirement is that the software has to be web enabled.
    Now i m in a fix which approach should i take to make it web enabled.
    Ways I can think of are:...
  14. Thread: text boxes

    by vivek_29
    Replies
    5
    Views
    656

    Re: text boxes

    Use the following code:

    for i = 0 to me.Controls.Count - 1
    If TypeOf me.Controls(i) is TextBox then
    me.Controls(i).Text = ""
    End If
    next
  15. Thread: Combo Box

    by vivek_29
    Replies
    2
    Views
    578

    Re: Combo Box

    You can select a particular value by using following code:

    Combo1.listindex = 1
    where 1 is the index of item in the list
    This will select the second item in the combo box.

    Remember Items in...
  16. Thread: List box

    by vivek_29
    Replies
    2
    Views
    460

    Re: List box

    Hi,
    By default List is configured to show the list items in full that is that the last item visible in the list should be fully vissible and that is why this incrementle height adjustment.

    If you...
  17. Replies
    1
    Views
    553

    Web Enabling Projec

    Hi,

    I have to do a project in vb.Now the requirement is that the software has to be web enabled.
    Now i m in a fix which approach should i take to make it web enabled.
    Ways I can think of are:...
  18. Re: How to include .gif files into my VB application

    Yes it a control available in Microsoft Windows Common Control6.0
  19. Re: How to include .gif files into my VB application

    Well, U can use Image List to create repository for small gif images.
  20. Replies
    0
    Views
    619

    MDI child property in DLL

    hi,
    I have a project containing 10 modules.Each Module consists of 2forms.

    Now i have decided to create each module in seperate dll.

    and in my main project i will have only MDIForm and through...
  21. Replies
    1
    Views
    736

    Persisting Data in Classes Pls. Help

    Hi,
    I m creating an ActiveXDll.In that Dll I have one Class for which I have Persistent property = 1.

    Now I have got two properties in this class namely
    1) UserName.
    2) CompanyNo.

    Since i...
  22. Replies
    2
    Views
    921

    Re: Getting User Info

    Hi,

    I have tried following on NT.Don't know about 2000.
    This example gives u the currently logged in user name


    private Declare Function GetUserName Lib "advapi32.dll" Alias "GetUserNameA"...
  23. Replies
    4
    Views
    886

    Re: Opinion for Checkbox?

    Hi there,I hope i have understood ur problem .
    What i suggest is u fill the flexgrid with the data but start filling from 2ndcolumn and leave the first column blank.
    Now after u have filled the...
  24. Re: Combo width is too narrow, can I show a label flag something to show the whole content?

    Hi,

    Try using combo box of Microsoft Form2 Controls.
    It has a listwidth property.when the combobox is in drop down position,The list expands to show the contents.

    Hope it helps.
  25. Replies
    2
    Views
    856

    ActiveXControl ,BackColor,Font,Read only

    I m trying to create an activex Control and it has a textbox.Now want to have a Font property for it.

    1) Individually I can create various properties i.e. FontName,FontSize,ForeColor,UnderLine...
Results 1 to 25 of 71
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured