Click here to Skip to main content
15,891,253 members
Home / Discussions / C#
   

C#

 
Generalobfuscator/urgent!!! Pin
rabi kumar21-May-05 1:39
rabi kumar21-May-05 1:39 
GeneralListbox Context Menu Pin
Da`Sooty20-May-05 23:06
Da`Sooty20-May-05 23:06 
GeneralRe: Listbox Context Menu Pin
S. Senthil Kumar21-May-05 0:16
S. Senthil Kumar21-May-05 0:16 
GeneralRe: Listbox Context Menu Pin
Robert Rohde21-May-05 0:26
Robert Rohde21-May-05 0:26 
GeneralProblem reading stream Pin
AnonymousTwo20-May-05 22:50
AnonymousTwo20-May-05 22:50 
GeneralRe: Problem reading stream Pin
Robert Rohde21-May-05 0:48
Robert Rohde21-May-05 0:48 
Generaljoin DBF files Pin
Bedevian20-May-05 20:07
Bedevian20-May-05 20:07 
GeneralRe: join DBF files Pin
Robert Rohde20-May-05 20:56
Robert Rohde20-May-05 20:56 
This has to be slow. Dbf files dont have a very good performance and copying all this together for just some queries is probably a bit overhead.

Some hints you might try out:
1. Try out the Visual Fox Pro Ole Db Provider. It can be found somewhere on MSDN. I dont know it but its probably faster (I used it once and never had performance issues).
2. What kind of report are you making? Do you really need one big DBF file? Consider getting all data at once into one DataTable and then calculating whatever you need on this DataTable. You can use the UNION ALL statement to get all tables in one statement:
Select TYPE,EMPLOYEE from MyDbfFile1 UNION ALL Select TYPE,EMPLOYEE from MyDbfFile2 UNION ALL Select TYPE,EMPLOYEE from MyDbfFile3 ...
3. Use some real Database Wink | ;)
GeneralRe: join DBF files Pin
Bedevian20-May-05 23:56
Bedevian20-May-05 23:56 
GeneralRe: join DBF files Pin
Robert Rohde21-May-05 0:15
Robert Rohde21-May-05 0:15 
GeneralRe: join DBF files Pin
Bedevian21-May-05 19:34
Bedevian21-May-05 19:34 
GeneralRe: join DBF files Pin
Robert Rohde21-May-05 20:02
Robert Rohde21-May-05 20:02 
GeneralRe: pass dataset to new database Pin
sevan22-May-05 21:03
sevan22-May-05 21:03 
GeneralShortcut key for C# Application Pin
Anonymous20-May-05 20:05
Anonymous20-May-05 20:05 
GeneralRe: Shortcut key for C# Application Pin
ekynox20-May-05 22:47
ekynox20-May-05 22:47 
GeneralNTFS Folder Security Permissions Pin
ekynox20-May-05 17:18
ekynox20-May-05 17:18 
GeneralWebResponse and UTF8 Pin
Danny Mark20-May-05 16:00
sussDanny Mark20-May-05 16:00 
GeneralDifference between WebClient and HttpWebRequest/Response Pin
Jason Manfield20-May-05 15:19
Jason Manfield20-May-05 15:19 
GeneralRe: Difference between WebClient and HttpWebRequest/Response Pin
minhpc_bk21-May-05 7:34
minhpc_bk21-May-05 7:34 
GeneralClient/Server application question Pin
StephenMcAllister20-May-05 14:48
StephenMcAllister20-May-05 14:48 
GeneralRe: Client/Server application question [edit] Pin
Luis Alonso Ramos20-May-05 14:56
Luis Alonso Ramos20-May-05 14:56 
GeneralPrinting only half a page Pin
Luis Alonso Ramos20-May-05 14:39
Luis Alonso Ramos20-May-05 14:39 
GeneralRe: Printing only half a page (found the problem, not yet a fix) Pin
Luis Alonso Ramos20-May-05 15:02
Luis Alonso Ramos20-May-05 15:02 
GeneralImplementing CommonDialog::RunDialog() Pin
zorifila20-May-05 12:29
zorifila20-May-05 12:29 
GeneralApplication deployment question Pin
Asad Hussain20-May-05 12:15
Asad Hussain20-May-05 12:15 

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.