C Sharp :: Scan Directory Selected From Treeview Control
Jan 20, 2015I am doing "Virus Tracking System" Project. I have to scan the directory selected from treeview ....
View 9 RepliesI am doing "Virus Tracking System" Project. I have to scan the directory selected from treeview ....
View 9 Replies<TreeView Grid.Column="0" Margin="0,-15,0,15" Grid.ColumnSpan="1">
<TreeViewItem Header="Custom"/>
<TreeViewItem Header="All Conferences"/>
<TreeViewItem Header="Atlantic Coast Conference" MouseDoubleClick="TreeViewItem_MouseDoubleClick_1">
<TreeViewItem Header="Atlantic" MouseDoubleClick="TreeViewItem_MouseDoubleClick"/>
<TreeViewItem Header="Coastal"/>
[Code] ....
I am trying to do a LINQ Query by Double Clicking the child node. When I click on the parent node it brings up the correct data. But when I click on the child node it still brings up the data from the parent node. How do I get the child node to display the correct data?
I want to retrieve the records selected between from_dt and to_dt and also the records of the selected date should be retrieved...
SELECT ChallanDtl.chalID, ChallanDtl.chalTo,
ChallanDtl.chalNo, ChallanDtl.chalDDate,
ChallanDtl.chalYourNo, ChallanDtl.chalPO_NO,
ChallanDtl.chalPO_Date,
ChallanSubDtl.chalsubdescription,
[Code] ...
I am not getting all the records.... when i select the same date in both datetimepicker no record is displayed... i also want the record of the selected dates from both datetime picker..
I'm writing a C++ module that is meant to recursively scan a directory and I'm curious what yall think of my strategy.
The program is a music player and so I'm trying to make the directory scanner as lightweight and efficient as I can. I've decided I want to scan the files in two passes- first I just want to get a list of all music files that are found in a directory/subdirectories and then I want to process the list and search for id3s/other tags.
As I'm a scanning the directory, I've decided to store the temporary list in a linked list where each node is containing an array of 100 strings. I did this because I obviously don't know how long the list will be and I from my understanding of the C++ vector class it basically just makes over sized arrays and moves them when it runs out of space. That sounded rather clunky to me, as did a traditional linked list.. I didn't see the point of allocating memory that many times in a row.
I am working on C# Project [Windows Form Application], to update treeview nodes from excelsheet [xls] Cell [row i, Column 3] Values, while on selecting treenode, it should update corresponding Column 4 Value [row i, Column 4]. For me, Treenode are populated successfully, but on selecting the treenode, it always display first Element of treenode [Not selected one].
Populated Treenode from Excel as: [ Update Child Nodes from Column 3 elements [Column 2 Contain Parent node name and Column 3 have Child Node name], if Column 2 Value is same as Parent node name [My Module], update the child nodeunder same Parent node.]
for (int i = 0; i < worksheet.UsedRange.Rows.Count; i++) {
string mynode = ((Excel.Range)worksheet.Cells[i + 1, 3]).Value2.ToString();
string mynode2 = ((Excel.Range)worksheet.Cells[i + 1, 2]).Value2.ToString();
[Code] ....
On selecting the Child Node, it always give 1st Parent node. Instead of Selected Node.
for (int i = 0; i < worksheet.UsedRange.Rows.Count - 2; i++) {
string mynodetext = ((Excel.Range)worksheet.Cells[i + 2, 3]).Value2.ToString();
string mynodetext1 = ((Excel.Range)worksheet.Cells[i + 2, 4]).Value2.ToString();
if (treeView1.SelectedNode.FirstNode.Text == mynodetext) {
this.richTextBox1.SelectedText += Environment.NewLine + mynodetext1 + Environment.NewLine;
}
}
How to get correct selected Node.
In our Qt application, we have to load several files on application start-up starting from a root directory.
We are recursively scanning the directories and loading the files.
The total time it takes is about 12 seconds. Can we reduce this time if we use multi-threading?
I have heard that multi-threading does not work everywhere and it increases code complexity and debugging issues.
Would multi-threading solve the above problem? We want it to be platform independent (Mac, Linux, Windows).
The main question how to fully traverse/circumvent through all TreeView, for transforming Tree structure into a Table structure.
I want to note that the TreeView may contain a different number of branches, with different depths and different names.
I found a lot of information how to populate TreeView e.g. from DataTable, but I didn't found information how to recursively traverse/circumvent a TreeView and populate/fill data e.g. to DataTable.
As sample I have following TreeView:
Aaron
-Baldwin
--Caleb
---Dale
--Earl
-Fabian
Gabriel
-Harold
-Ian
Necessary to convert the TreeView into e.g. DataTable:
id | Name | ParentId
--------------------------------
1 | Aaron | null
2 | Baldwin | 1
3 | Caleb | 2
4 | Dale | 3
5 | Earl | 2
6 | Fabian | 1
7 | Gabriel | null
8 | Harold | 7
9 | Ian | 7
I'm trying to get a Browse Directory dialog to update a text box with the path selected. I had it working fine in Unicode build but now using TCHAR - I see the variable contains the correct path, but the textbox only gets updated with a single weird character.
setting the text checking WM_COMMAND vars-
Code:
SetWindowText(textBox2,&buttonPush(hWnd));
browse function when Browse button is pressed -
Code:
TCHAR& buttonPush(HWND hWnd) {
BROWSEINFO bi;
TCHAR szDir[MAX_PATH];
LPITEMIDLIST pidl;
LPMALLOC pMalloc;
if (SUCCEEDED(SHGetMalloc(&pMalloc))) {
[Code] ....
How do I get the path for a selected item in a list control?
View 5 Replies View Relatedi have 10 column in my datagridview. i want to get whole value from row(which row i'll select). i have this code but it's shows only one cell value,
richtextbox.Text = dataGridView1.CurrentCell.Value.ToString();
string st=combobox1.selectedvale.tostring();
combo box return 2 item ,
1:text
2:value
The value of combo not type of(int),the value type (string)
How value ofcombobox return data with type(string)?
I have created a form (in ASP.NET and C#) which have 5 dropdown
1.3rd dropdown fill on the basis of 1st n 2nd dropdown value
2.5th dropdown fill on the basis of 4th dropdown value
I applied onselectedindexchanged event on 2nd and 4th dropdown and both are autopostback true.All values come according to the requirement.
Problem is when I select a value in 3rd dropdown and it becoming change when I select some value from 4th dropdown.
passing selected row in gridview to my dropdown. I have 1 gridview, 1 textbox and 1 dropdown list box. My dropdown is populated by SqlDataSource from my table Country. On my gridview, I have 3 columns, which are SELECT, NAME and COUNTRY. Under SELECT column, I have my hyperlinked Select, every time I clicked on a certain row NAME will pass in textbox (no problem with that), but in my dropdown it does not populates the COUNTRY that I choose. For example, I have Jack for name and USA for country. Beside Jack and USA, I have a hyperlink Select, when I click Select, Jack will display on my textbox and supposed to be USA will display on my dropdown but not displaying instead it says an error "'cboCountry' has a SelectedValue which is invalid because it does not exist in the list of items. Parameter name: value".
I have tried the codes below:
protected void GridView2_SelectedIndexChanged(object sender, EventArgs e)
{
txtname.Text = GridView2.SelectedRow.Cells[1].Text;
cboCountry.Text = GridView2.SelectedRow.Cells[2].Text;
}
Only the textbox os working, no luck at all in dropdown...I'm using c# and asp.net.
I'm working in a web aplication in c#, vs 2008, framework 3.5, I need to assign a value to a var, in this case "problemas", when I tried to save the value that I have in the checkboxlist, it does, but if don't selected, can't show 0, besides if I change the value "problemas = 9" to problemas = 111111" doesn't works.
protected void ckblProblemas_SelectedIndexChanged(object sender, EventArgs e){
int problemas = 0; {
if (ckblProblemas.SelectedValue.Equals("9")) {
problemas = 9;
} else {
problemas.Equals("0");
}
I want to set the rootpath of an executable application. This rootpath should be the same as the path of an item that I select from a ListBox. The code for selecting the item is as follows.
namespace Menu {
public partial class Form1 : Form {
private Button button;
private ListBox listBox1;
private string selecteditem;
[Code] ....
Now what I want is: Whatever I get the output as in the :
Console.Writeline(path + selecteditem),
I would want to set this as a rootpath for an application so as to do rest of the measurements or steps only in that path/folder. Is it possible to do something like this?
I have an extremely annoying problem, I am inserting data into an access database and now i have noticed that it is copying itself to the bin/debug folder on ts own and yet i have set "Copy to Output Directory" property to "Copy never"
But without fail, it is copied! It is making any attempted updates to the database's information invalid since its not updating at all.
This all started when i installed crystal reports and it asked me to make a duplicate of the database in order to utilize data-sets that were created for certain reports.
Why this is happening? I cannot test my application properly at all.
regex pattern that takes only directory without file name
private void txtDownloadRoot_Validating(object sender, CancelEventArgs e)
{
Regex driveCheck = new Regex(@"([a-zA-Z]:[^/:*;/:?<>|]+)|({2}[^/:*;/:?<>|]+)");
if (!driveCheck.IsMatch(txtDownloadRoot.Text))
[Code].....
I have tried to use File.Copy and File.Move but non of them would work as I expected .....
View 1 Replies View RelatedThis is for excel . I have a form with 2 combobox and 1 textbox ...
combo 1 : user can select a column ; let say column A
combo 2 : user can select an operator ; let say = (equal)
textbox : user can enter value ; let say 2
so my code is like
if (column A == tb.text) {
execute code here
}
but the problem i have is during run time i allow user to add more controls to the form
if ((column A == tb.text) && (column B == tb2.text)) && //may be more if user add {
execute code here
}
how do i handle this 'cause, how many will the user add to it, and the code should change when user add new control to it.
How to show print preview in control. I have class Printer : PrintDocument that contains what i want to print but how to show that in form and in which control.
updated: To be more precise i have listbox with documents for printing. When user selects document i want to show print preview in some control next to this
I am working with repeater.. Actually i have placed a linkbtn in item template.. In that linkbtn i am displaying names from database.... And i have created an event for the lnkbtn.. In that event i want to get the text property of linkbtn....
View 1 Replies View RelatedRight now I'm working on a TreeView for which I would like to add a TextBlock and a ComboBox as child nodes of a Parent TextBlock node. This would look something like this:
My TreeView is implemented using an MVVM style, and utilizes a HierarchicalDataTemplate. I have had no problems with adding TextBlock nodes and TextBlock children, but the confusion seems to arise when adding child nodes of different UI types.
I have tried implementing a stackPanel, like so:
<HierarchicalDataTemplate DataType="{x:Type Data:Node}" ItemsSource="{Binding Teams}">
<StackPanel>
<TextBlock Text="{Binding IndividualProperty}" />
<ComboBox ItemsSource="{Binding CollectionProperty}" />
</StackPanel>
</HierarchicalDataTemplate>
But then I end up with each node looking like this. It's like each node comes with one TextBlock and a ComboBox (Note: The comboBox is not the child, it and the TextBlock are one node):
How do I allow my treeView to have child nodes of different UI types? I am thinking that my solution has to do with my Hierarchical Data Template.
How can i put double click to open the file in treeview
private void button1_Click( object sender, EventArgs e ) {
XmlDataDocument xmldoc = new XmlDataDocument();
XmlNode xmlnode;
[Code] ....
I have researched quite extensively, experimented, and still cannot seem to change the properties of a control on an active winform from a user control.
So I have a user control which populates each dynamically added tab page in a tab control.
I have a textbox in the user control which I would like to type in, capture the text_change event, and change the text of the label in the winform.
How do I bind a DATE column in a DataGridView Control to a DatePicker control (using C#)? I already have the DataGridView control bound to a database stored procedure which takes a DATE value as a parameter and selects joining table based on the results.
View 7 Replies View Relatedi wrote the following code :
Code:
#include<stdio.h>#include<conio.h>
#include<stdlib.h>
int a[][4] = {15,9,10,25,6,2,4,7,32,19,42,8,21,17,18,0};
void boxes();
void display();
void main()
{int ch,r=3,c=3,t;
[Code]...
not able to esc when i press esc key.how to get rid of this.