blah blah blah is here! blah blah » Close

0
votes
0 answers

How to not pop up the browser

Display the search result only in the form expanding it to seperate the URLs, Title and Description? //Program.cs using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace GSearch2 ...

0
votes
1 answers

C# Search first serveral characters of strings of a genric list using binary search

I have a generic list. The list is sorted. ================================================ List<string> li = new List<string>(); li.Add("Hello"); li.Add("HelloGuy"); li.Add("Zoom"); li.Add( ...

0
votes
1 answers

Encoding issue

AK01
15

Hi! My app sends search queries into the Opera. Sometimes if there are special symbols like "&" I have to do the following: [code] string searchQ = label1.Text.Replace("&", "%26"); Process.Start(@&qu ...

0
votes
1 answers

search a database value by date(providing format dd/mm/yyyy)

I have saved entry(s) in MS Access database using a form(visual C#.net). Now i want to display it on the screen by searching by date. I am using the following code to do this but there is some problem in it. [code] System.Data.OleDb.OleDb ...

1
votes
6 answers

Search ALL Attributes in XML file

q12
349

Search ALL Attributes in XML file. For the moment I make this useful Search for ALL the Nodes in a XML file. I wonder if something similar can be done for Attributes? Here is my findings: [code] string retName; XmlNodeList list = nul ...

0
votes
3 answers

better way to search a list of classes?

Suppose I have a class. [code]public class MyClass { public int ID; public string UniqueIdentifier; public bool Enable; ... // more public vars public MyClass Parse(string parseFrom) { ... // pars ...

0
votes
1 answers

Search and Replace

Hi guys. I really hope you can help. I would like a script which does the following: Imagine there is an xml file called file_test.xls with 4 columns Column A = contains a path name (example: C:\Desktop\Folder1\file_one.php) Column B = ...

0
votes
1 answers

search in access database

hello How can I search in ACCESS database for example: if table1 contain (first name , last name and address) i want to add 3 radio buttons and if RadioButton1 is checked then search in first name column

0
votes
1 answers

Search/replace/remove/etc in an array with multiple items?

Is it possible to accomplish something like this? [code] byte[] bytes = new byte[] { 0x00, 0x01, 0x01, 0x05, 0xa0, 0xa1, 0x01, 0x01, 0x00, 0xa0, 0xa1, 0xa0, 0xa4, 0x00 }; // ...

1
votes
1 answers

search datagridview

Is it possible to search a datagridview column to match entries against another gridview? Example i have 2 datagridviews, in the first gridview column [1] i have an ID number on the second datagrid column [1] there's also an ID number in ...

0
votes
6 answers

Search Database from given String Array and Update correct table at correct row.

Assume that I have a database productcatalog with 4 tables (Fruits, Brreads, Milks, Drinks). From a given string array string[] AllItems with its fields of (Description, Price), AllItems {string[4]} [0]: "Strawberries $0.05&q ...

0
votes
1 answers

Search

Hiii, i have a folder with some resumes,when i give a keyword like c# or java it should search the whole files in that folder for that key word where ever it found tht word the file name should be displayed on my screen i need the code in ...

Feedback