Click here to Skip to main content
15,914,010 members

Smokeywade - Professional Profile



Summary

    Blog RSS
10
Authority
18
Debator
10
Enquirer
24
Organiser
652
Participant
0
Author
0
Editor
National Marker Company

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
QuestionHow to call an event in datagrid Pin
Smokeywade9-Nov-07 3:07
Smokeywade9-Nov-07 3:07 
QuestionHow to scroll to found item in a treeview or a listview? Pin
Smokeywade23-Oct-07 4:47
Smokeywade23-Oct-07 4:47 
AnswerRe: How to scroll to found item in a treeview or a listview? Pin
Koltz26-Oct-07 6:45
Koltz26-Oct-07 6:45 
GeneralRe: How to scroll to found item in a treeview or a listview? Pin
Smokeywade26-Oct-07 6:58
Smokeywade26-Oct-07 6:58 
QuestionHelp with Treelist View Pin
Smokeywade12-Oct-07 8:36
Smokeywade12-Oct-07 8:36 
My data is populating incorrectly like this in my treelist view
+ parent1
---- child1a
---- child1b
---- child2a
---- child2c
---- child3a
---- child3b
+ parent2
---- child1a
---- child1b
---- child2a
---- child2c
---- child3a
---- child3b
+ parent3
---- child1a
---- child1b
---- child2a
---- child2c
---- child3a
---- child3b

I'm trying to get it to load like this
+ parent1
---- child1a
---- child1b
+ parent2
---- child2a
---- child2c
+ parent3
---- child3a
---- child3b

I'm not sure of how to tell it to place each record in correctly by id - in the past I've used Datagrid with datarelations but I'm not sure if I can do this with a treelist view...
Here is my code:
Dim MyDataSet3 As New DataSet<br />
            Dim command1 As New SqlCommand("Select *, Order_no as [openDays], Order_no as [lateDays] from LateOrders_Header_view", cnn1)<br />
            'Dim command2 As New SqlCommand("Select * from LateOrders_Line_view, LateOrders_Header_view where LateOrders_line_view.Order_no = LateOrders_header_view.Order_no", cnn1)<br />
            Dim command2 As New SqlCommand("Select LateOrders_line_view.item_id, LateOrders_line_view.purchase_class from LateOrders_Line_view, lateOrders_header_view where LateOrders_line_view.Order_no = LateOrders_header_view.Order_no", cnn1)<br />
            Try<br />
                cnn1.Open()<br />
<br />
                'Debug.WriteLine(cnn1.ConnectionString)<br />
                Dim DirAdapter As New SqlDataAdapter(command1)<br />
                Dim DirAdapter2 As New SqlDataAdapter(command2)<br />
<br />
                MyDataSet3 = New DataSet<br />
<br />
                DirAdapter.Fill(MyDataSet3, "LateOrders_Header_view")<br />
                DirAdapter2.Fill(MyDataSet3, "LateOrders_Line_view")<br />
<br />
<br />
                Dim prow As DataRow<br />
                Dim chrow As DataRow<br />
<br />
                treeListView1.Update()<br />
                treeListView1.Items.Clear()<br />
                For Each prow In MyDataSet3.Tables("LateOrders_Header_view").Rows<br />
                    Dim item As New TreeListNode '= New TreeListNode<br />
                    item.SubItems.Add(prow("order_no").ToString)<br />
                    item.SubItems.Add(prow("name").ToString)<br />
                    item.SubItems.Add(prow("order_date").ToString)<br />
                    item.SubItems.Add(prow("requested_date").ToString)<br />
                    item.SubItems.Add(prow("reason").ToString)<br />
                    item.SubItems.Add(prow("status").ToString)<br />
                    item.SubItems.Add(prow("duedate").ToString)<br />
                    item.SubItems.Add(prow("openDays").ToString)<br />
                    item.SubItems.Add(prow("lateDays").ToString)<br />
                    For Each chrow In MyDataSet3.Tables("LateOrders_Line_view").Rows<br />
                        Dim chitem As New TreeListNode '= New TreeListView<br />
                        ' chitem.SubItems.Add(chrow("order_no").ToString)<br />
                        'chitem.SubItems.Add(chrow("name").ToString)<br />
                        'chitem.SubItems.Add(chrow("Order_date").ToString)<br />
                        'chitem.SubItems.Add(chrow("requested_date").ToString)<br />
                        chitem.SubItems.Add(chrow("item_id").ToString)<br />
                        chitem.SubItems.Add(chrow("purchase_class").ToString)<br />
                       <br />
                        item.Nodes.Add(chitem)<br />
                    Next<br />
                    item.Expand()<br />
                    treeListView1.Nodes.Add(item)<br />
                Next


Thanks For Any Help

Thank You

GeneralVB.NeT error Specified Argument Was out of Range Pin
Smokeywade10-Sep-07 11:40
Smokeywade10-Sep-07 11:40 
AnswerRe: VB.NeT error Specified Argument Was out of Range Pin
Smokeywade12-Sep-07 2:56
Smokeywade12-Sep-07 2:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.