debasisdas 580 Posting Genius Featured Poster

Have you tried as suggested in post #2.

debasisdas 580 Posting Genius Featured Poster

You need to handle the Key Down event . Set the KeyPreview property of the form to TRUE.

debasisdas 580 Posting Genius Featured Poster

You mean to say the remaining text will go to next line or be hidden ?

debasisdas 580 Posting Genius Featured Poster

Try using looping through all the controls on the form that have font property.

Estella commented: a peace logic +1
debasisdas 580 Posting Genius Featured Poster

What exactly you want to achieve and what you have done so far ?

debasisdas 580 Posting Genius Featured Poster

Simply try using SUM(column_name) using SQL query.

debasisdas 580 Posting Genius Featured Poster

What name ?
Name of the file ?

or something randomly.

debasisdas 580 Posting Genius Featured Poster

Our little time of suffering is not worthy of our first night's welcome home to Heaven.

debasisdas 580 Posting Genius Featured Poster

Have you tried as suggested in previous posts.

debasisdas 580 Posting Genius Featured Poster

WHAT YOU HAVE TRIED SO FAR ?

debasisdas 580 Posting Genius Featured Poster

If you want the connection string then find it here.

debasisdas 580 Posting Genius Featured Poster

Please do not start duplicate threads for the same question.

Check your other thread for answer. I have already replied to that.

debasisdas 580 Posting Genius Featured Poster

Check that you have enough disc space and RAM.

debasisdas 580 Posting Genius Featured Poster

You need to convert the access database into 97 format .

debasisdas 580 Posting Genius Featured Poster

ASCENDING is default for DESCENDING you need to specify DESC after the field name.

debasisdas 580 Posting Genius Featured Poster

Have you tried refreshing the recordset ?

Are you commiting after every new insert / update ?

debasisdas 580 Posting Genius Featured Poster

What exactly is your project about ? You are using VB only or any third party component ?

debasisdas 580 Posting Genius Featured Poster

My previous code adds the items to listbox on check of check boxes and removes them from the list on uncheck.

debasisdas 580 Posting Genius Featured Poster

Look to be treated by others as you have treated others.

debasisdas 580 Posting Genius Featured Poster

Kindly the post the code that you are working on.

debasisdas 580 Posting Genius Featured Poster

try using this sample code.

Private Sub CHKCOLOR_Click(Index As Integer)
If CHKCOLOR(Index) Then
List1.AddItem CHKCOLOR(Index).Caption
Else
For L = 0 To (List1.ListCount - 1)
If List1.List(L) = CHKCOLOR(Index).Caption Then
List1.RemoveItem L
End If
Next
End If
End Sub

The code uses control array for the check boxes.

debasisdas 580 Posting Genius Featured Poster

How you are saving data. Is it related to database ?

debasisdas 580 Posting Genius Featured Poster

Try to use ADO code for better result.

debasisdas 580 Posting Genius Featured Poster

Try using data report.

debasisdas 580 Posting Genius Featured Poster

Please check for the connection string here

debasisdas 580 Posting Genius Featured Poster

The problem you are facing is not because of this code . You might have specified something else in other parts of the code.

debasisdas 580 Posting Genius Featured Poster

Man can be happy with much less than he seems to think essential.

debasisdas 580 Posting Genius Featured Poster

elow..debasisdas...
by the way the code that you given it not working....
their no error but only listview without any data...
my datagrid contain some..but my listview dont have any one...

That code works fine for me.
Try to run the code in debug mode and check .

Actually that code was to populate the list view from a tree view selection.

Try using on button click event

debasisdas 580 Posting Genius Featured Poster

You need to hard code that.

debasisdas 580 Posting Genius Featured Poster

You can try to refresh the recordset.

debasisdas 580 Posting Genius Featured Poster

Please refer your other thread for reply. I have already answered your second question there.

debasisdas 580 Posting Genius Featured Poster

you need fetch the data from recordset and assign the same to the corresponding text boxes. You need to use index or field name on the recordset.

debasisdas 580 Posting Genius Featured Poster

From you code i am not at all sure what you want to do. Could you explain a bit.

debasisdas 580 Posting Genius Featured Poster

in sql *plus type HOST

in the command prompt type

exp username/password@databasename

then just follow the instructions as prompted

peter_budo commented: Nice and quick explanation +7
debasisdas 580 Posting Genius Featured Poster

I don't know whether i can post name of other sites here or not. You can easily find all that by investing some quality time by web searching.

debasisdas 580 Posting Genius Featured Poster

He who has learned how to obey will know how to command.

debasisdas 580 Posting Genius Featured Poster

To read binary files use PUT and GET.

debasisdas 580 Posting Genius Featured Poster

Please mention the error clearly.

BTW this is an English only forum so please use English only as your mode of communication.

debasisdas 580 Posting Genius Featured Poster

From where you want to capture the score ?
Are you using any database ?
BTW the above code is a procedure not a function. A function must have a return type and must return a value.

debasisdas 580 Posting Genius Featured Poster

Simply try to use this sample code .
This is the best option.

con.begin trans
con.execute "update table_name set field_name= text1.text"
con.committrrans
debasisdas 580 Posting Genius Featured Poster

Try use this sample code

Private Sub tv1_NodeClick(ByVal Node As MSComctlLib.Node)
LV1.ListItems.Clear
rs.Open "select * from EMP", con, adOpenDynamic, adLockOptimistic

Dim li1 As ListItem
Set li1 = LV1.ListItems.Add()
If Not rs.EOF Then

If IsNull(rs(0)) Then
li1.Text = ""
Else
li1.Text = rs(0)
End If

If IsNull(rs(1)) Then
LV1.ListItems(1).ListSubItems.Add , , ""
Else
LV1.ListItems(1).ListSubItems.Add , , rs(1)
End If

If IsNull(rs(2)) Then
LV1.ListItems(1).ListSubItems.Add , , ""
Else
LV1.ListItems(1).ListSubItems.Add , , rs(2)
End If

If IsNull(rs(3)) Then
LV1.ListItems(1).ListSubItems.Add , , ""
Else
LV1.ListItems(1).ListSubItems.Add , , rs(3)
End If
If IsNull(rs(4)) Then
LV1.ListItems(1).ListSubItems.Add , , ""
Else
LV1.ListItems(1).ListSubItems.Add , , rs(4)
End If
If IsNull(rs(5)) Then
LV1.ListItems(1).ListSubItems.Add , , ""
Else
LV1.ListItems(1).ListSubItems.Add , , rs(5)
End If
If IsNull(rs(6)) Then
LV1.ListItems(1).ListSubItems.Add , , ""
Else
LV1.ListItems(1).ListSubItems.Add , , rs(6)
End If
If IsNull(rs(7)) Then
LV1.ListItems(1).ListSubItems.Add , , ""
Else
LV1.ListItems(1).ListSubItems.Add , , rs(7)
End If

End If
rs.Close
End Sub
jaasaria commented: thxx 4 the help +1
debasisdas 580 Posting Genius Featured Poster

Then better change the row width.
It is always better to use some reporting tool than controls for reports.

debasisdas 580 Posting Genius Featured Poster

Go back a little to leap further.

debasisdas 580 Posting Genius Featured Poster

Is that some sort of an assignment for you . Why not use some multimedia tool for all that.

debasisdas 580 Posting Genius Featured Poster

Can you mention your exact requirments in details please.

debasisdas 580 Posting Genius Featured Poster

To avoid duplicate addition you need to check that before adding the item to the tree view.

debasisdas 580 Posting Genius Featured Poster

To run .NET application framework is compulsory.
You can easily install the framework using windows live update.

debasisdas 580 Posting Genius Featured Poster

This one is one of the best in the business.

debasisdas 580 Posting Genius Featured Poster

Then you can directly call the form with its corresponding event. But i am not sure what do you mean by I made a menu with ListView.

debasisdas 580 Posting Genius Featured Poster

I am bit confused with your logic. Not sure what do you mean by that suspect.