User Profile

Collapse

Profile Sidebar

Collapse
godhulirbalaka
godhulirbalaka
Last Activity: Jul 17 '08, 03:26 PM
Joined: Oct 9 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • godhulirbalaka
    started a topic Datagrid in VS 2005
    in .NET

    Datagrid in VS 2005

    Hello sir,

    I have a datagrid which is getting data from a Access datatable.

    my data table has 4 field and datagrid is showing 4 column according.

    now i want to add a new column means column number 5. along with other 4 column.

    when my form is loading that time I need five column(4 from database and 1 is manually added=5 column).

    how can i do this
    See more | Go to post

  • NO table ID is not a factor. I just want if i checked a checkbox in the form and save it then in database the linked filed which datatype is yes/no that will checked or unchecked accordingly...
    See more | Go to post

    Leave a comment:


  • VS 2005 checkbox with MS Access 2000 database

    Dear sir,

    I am making an application in visual studio 2005. In a form i have two checkbox and in access database i have two field which datatype is Yes/No. That means there is a checkbox shows it checked/unchecked

    Now i want if i check in the checkbox in the form and save it then in the database field that field will checked or unchecked accordingly.

    and when i will recall the data then according to...
    See more | Go to post

  • godhulirbalaka
    replied to Datagridview in Visual Studio 2005
    in .NET
    DatagridView in VS 2005

    Hello sir,

    I have a datagrid in a form with 4 column and a database table in access 2000 with 3 field.

    Now i want to set those 3 field in the datagrid 3 column and in the 4th column i want to make the cells edible. that means there is no data and i can enter data manually by typing

    how can i do this??????
    See more | Go to post

    Leave a comment:


  • godhulirbalaka
    replied to Datagridview in Visual Studio 2005
    in .NET
    I dont understand clearly. please explain in details
    See more | Go to post

    Leave a comment:


  • godhulirbalaka
    started a topic Datagridview in Visual Studio 2005
    in .NET

    Datagridview in Visual Studio 2005

    Hello sir,

    I have a datagridview in a form with few items. There is 4 columns. ID, Name, TotalPrice, PaidPrice.

    In the number 4 column there is no data. Now i want to enter data for each items in that column manually. when i will click any specific row and that column then there will be the cursor point and the amount i will type it will be there.

    Another is Serial number. There is a fixed colum for each...
    See more | Go to post

  • godhulirbalaka
    started a topic List Box in Visual studio 2005
    in .NET

    List Box in Visual studio 2005

    Dear Sir,

    I have a list box with checkbox. So many items are there. Now i want to know if click on a button then the checked items of the list box will enter into a datagridview. how can i do this
    See more | Go to post

  • godhulirbalaka
    replied to Text box formating in vb 6.0
    Hi would you please clear more...
    See more | Go to post

    Leave a comment:


  • godhulirbalaka
    started a topic Text box formating in vb 6.0

    Text box formating in vb 6.0

    Hai, I wana to format a text box.

    TextBox Name is txt_amount

    So i want when the program in run mode then the text box has automaticly 0.00 will appear and when i worte any number then first 0 will delete and there will be my pressed number and when i press . point (.) then cursor will automaticly come after point and new neurmaric value will after the point.

    i. e . 25.36
    See more | Go to post

  • godhulirbalaka
    replied to Shell command in visual basic
    I got few reply but those not helpful please give me total solution
    See more | Go to post

    Leave a comment:


  • godhulirbalaka
    started a topic datatype mismatch in vb

    datatype mismatch in vb

    Hi, I set a table in access first column type number and other text because first column contain item number. and in a form in vb a textbox for item number. so when in run mode i want to search a item by txt_item_number field then it shows data type mismatch. please help me
    See more | Go to post

  • godhulirbalaka
    started a topic Shell command in visual basic

    Shell command in visual basic

    Hi guys, I am making a shop management program in visual basic. I want to a menu name Utiliti where Calculator, notepad, heart game, solitair game will be shown. In Utility menu I added this submenu. and now i want if i click on calculator submenu then the calculator which is built in with windows will call. and another thing when the calculator will appear if i click again to the menu then it should not open again.

    that mean only...
    See more | Go to post

  • Hi Veena,
    Sorry there was a mistake.

    the code was

    Row=.rowsel ' there was no dot before Row

    so i think there modified could should not be

    txt_Name.text=m fg_Item.textmat rix(.Row, 1)
    See more | Go to post

    Leave a comment:


  • Hi Veena,
    Sorry there was a mistake.

    the code was

    Row=.rowsel ' there was no dot before Row

    so i think there modified could should not be

    txt_Name.text=m fg_Item.textmat rix(.Row, 1)...
    See more | Go to post

    Leave a comment:


  • godhulirbalaka
    started a topic Checkbox in VB 6.0

    Checkbox in VB 6.0

    Hai, I have few checkbox in a form in vb 6.0. I want to set a command by which i can change all check box at a time
    Enable=True
    Enable=False
    .value=1,
    .value=0

    the code may something like for each checkbox....

    please give me the suggestion
    See more | Go to post

  • MSFlexGrid in Visual Basic - subscript out of range

    Dear all, I have a problem with MSFlexGrid.
    I have few field and one MSFlexGrid
    So i want if i doubleclick any row then the datas of that row distribute to those field
    I already wrote the command

    Private Sub MFG_Item_dbclic k()
    with mfg_item
    .Row=.rowsel
    txt_Name.text=m fg_Item.textmat rix(row, 1)
    txt_Id.text=mfg _Item.textmatri x(row, 2)
    txt_quantity.te xt=mfg_Item.tex tmatrix(row,...
    See more | Go to post

  • Hi please clear me more. I dont use any index...
    See more | Go to post

    Leave a comment:


  • Problem with MSFlexGrid in Visual Basic

    I have a problem with msflexgrid. I have few field in a form and a msflexgrid with few rows. I want if i double click on the row then the information should go to the relevant field. I have done it but the problem is when i click 1st row or 2nd second then it is OK but when i click more than that means 3rd 4th... then the message is appear. "Subscript out of range" and when i click on debug then it is highlight

    private sub...
    See more | Go to post

  • Problem with MSFlexGrid in Visual Basic

    Dear all, I have a problem with MSFlexGrid.
    I have few field and one MSFlexGrid
    So i want if i doubleclick any row then the datas of that row distribute to those field
    I already wrote the command

    Private Sub MFG_Item_dbclic k()
    with mfg_item
    .Row=.rowsel
    txt_Name.text=m fg_Item.textmat rix(row, 1)
    txt_Id.text=mfg _Item.textmatri x(row, 2)
    txt_quantity.te xt=mfg_Item.tex tmatrix(row,...
    See more | Go to post

  • godhulirbalaka
    started a topic Visual basic FlexGrid

    Visual basic FlexGrid

    Hi,I have flexgrid with many column. I want to hide few column from a MSflexgrid. Currently i do this by using cloumnwidth=0. I want to know is there any more option to hide specific column. please help me
    See more | Go to post
No activity results to display
Show More
Working...