Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #16.0K
Ranked #2K
~1K People Reached
Favorite Tags
Member Avatar for choralqiu

[code] Dim subString As String() = Nothing subString = textBox.Text.Split(" ") searchSource.SelectParameters.Item("ContentText0").DefaultValue = subString(0) searchSource.SelectParameters.Item("ContentText1").DefaultValue = subString(1) [/code] Here's what i'm trying to do. So if I two words put into the textBox, this will work. But I'm really not sure how to modify this so it can fit the …

Member Avatar for choralqiu
0
72
Member Avatar for wlalth

Hi. I need to get unique information of runnig programs. I dont want to get ProcessName or MainWindowTitle. Because im working on anti-cheat program. Im tried lot of method of GetProcess() but any of them give me the uniq. information. So is it possible to get uniq data of running …

Member Avatar for wlalth
0
359
Member Avatar for judithSampathwa

hi there, i have a datagridview in that i have coded the CellBeginEdit. how can i attach the CellBeginEdit event in another function that i have implemented in C# ??? thanxxx

Member Avatar for judithSampathwa
0
272
Member Avatar for shahrukh90

In windows based programming there is some confusion about the data grid and data binding. What to do first and where to do in code?

Member Avatar for shahrukh90
0
99
Member Avatar for bbman

Hey, I have the code as follows: [CODE] public Form1() { InitializeComponent(); string[] _args = Environment.GetCommandLineArgs(); if (_args.Contains("options")) { this.Show(); } } [/CODE] This will be a tray app (and close quickly after the work is done), so if I add a notifyicon above the InitializeComponent(), could I move that …

Member Avatar for CFusion
0
365
Member Avatar for sdhawan

Hi Guys , I am trying to load a xml file as follows and i am getting file not found exception even though the file is on the desktop.I have checked the file name and extension they are correct , can anyonehelp please [code] private void button1_Click(object sender, EventArgs e) …

Member Avatar for CFusion
0
111
Member Avatar for SBA-CDeCinko

I have a DetailsView that I use to update some database data. In the footer of the DetailsView is a label I am trying to use as a status message panel. For instance, I display validation errors in this label. After updating a record, which causes a postback, I am …

Member Avatar for SBA-CDeCinko
0
157