Answer Questions
MarkSad how to read .dbf file in Visual C#.Net?
I got sample of reading excel. can work. but cannot find the sample of reading .dbf (Dbase IV) file. how to read .dbf I can't find examples to read data from .DBF files can you please specify a path where your examples are Since this last email I have also discovered a faster way to create DBFs with less coding required. And it does not require Access to be installed whereas using the Access Interop do ...Show All
Rick Strahl MDAC in Embed WIN98
I facing a problem when i try to install MDAC into an embed WIN98 OS and it need IE 4.01 SP2 to be installed. Is that any way to install MDAC or enable connect to MS-ACCESS database Hi,, MDAC does not include JET which is needd for Access database: Install Jet from here: http://download.microsoft.com/download/4/3/9/4393c9ac-e69e-458d-9f6d-2fe191c51469/jet40sp8_9xnt.exe Regards, Vikram If you are u ...Show All
LMiranda OleDbCommand.ExecuteNonQuery "Insert Into Select From"
Hello, I am working with OleDb to perform a bulk insert from a temporary table to permanent database table, both of which belong to the same database. I am wanting to use "INSERT INTO <permanent_table> SELECT * FROM <temp_table>". The query I run in MS Access to perform this bulk load does process correctly, but not in code using OleDb. After properly setting up my OleDbConnection object, opening it, and properly ...Show All
GregGreco Memomory management in .net
I want to know who is responsible for memory management CLR or OS CLR takes all responsibility for memory management or it only guides to os The CLR uses the OS so I guess you can say both are involved. There tons of docs and blogs about memory management in .NET. http://ww.live.com can help you. This topic is to big and IS out of scope of this forum. For CLR user CLR is managing memory. That's why it's "managed" worl ...Show All
MCTronix.com list of files from another web server?
Hi. I was wondering if there is a way to retrieve a list of files given a specific url from another web server I know I could use the FTP classes in .NET 2.0 but this is for .NET 1.1. I also know I could have used the http web request classes however that will not work. I get a 501 error (Not implemented error) the running server will have .NET 1.1 but as for the files, such as images etc... it will be stored on anot ...Show All
D?vis K?lis Can Table Adapter be Created in C# Express Edition?
Hi! Is is possible to create table adapter in C# Express Edition for SQL Server, if so kindly tell me how. regards. Steve posted a nice blogpost on his blog about Data Access using TableAdapter, take a look at it: http://blog.stevex.net/index.php/data-access-using-tableadapter/ Thanx PJ but I was actually looking for way by which I can create Dataset and then table adapters for SQL Server from C# Express Edition which later ...Show All
Nick Kramer - MSFT MultiView Control
Hello, I'm looking for a MultiView control for ASP.NET 1.1. Has anybody seen one Thanks. Hey, I did and I do. Didn't find one that suites me (free). Brian Hi! Thanks for asking! I'm a member of the ASP.NET team, and was just popping over here to see what was going on. The best place to ask ASP.NET questions is over on the ASP.NET forums at http://www.asp.net/w ...Show All
yanjie_li sql express connection
Message: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) Issue: My host won't allow direct connection to sqlserver connection. though it allows access connection. anyone knows the sol ...Show All
Scimatic Software ImportRow does not work?
I tried to import a data row into a data table. It didn't import the row and no execption was thrown either. Any trick to make it work Thanks It would help us to help you if you show us a snippett of the code you are trying to get to work! ...Show All
eam0n Implementing Identity Columns
Hi All, Have Anybody ever tried to implement Identity Columns without using stored procedures select number from numbertable where key = key; update numbertable set number = number + 1 return number; How do we implement such a logic using ADO.NET disconnected datasets Hi, My first question is why don't you use the identity property in your database Do you think you really have to make it you ...Show All
Bertrand JURADO Can I use ZIP files in C#?
Hi, I've been watching around for a while now but in the end came up with nothing. I want to write an application in C# .NET 2.0 that can handle ZIP files. It must read any files from archives into memory or disk files and create new archives from files on the disk and from memory. I have read and tested the J# article from supposedly 2 years ago but failed with the writing to memory part due to incompatibilities between C# and J#. (That ...Show All
stephan mantler .NET library to draw math function
Hi all experts, I'm looking for a managed library that can draw two-dimensional Math functions (y=2*x, y=sin(x), etc.) Have tried to Google it but cannot find a satisfactory result. Is there anyone here who has come across such a component Thanks very much. Dotnetjunky Fantastics. This is exactly what I want. Thanks a lot. I have developed such an a ...Show All
Jan Romell HttpListener and Sessions
I'm sure someone here will no doubt be able to answer this one easily - I've been trying (unsuccessfully) for a good part of this afternoon to figure out how to make 'Sessions' + a httplistener work for me. For example, there is some code available at http://weblogs.asp.net/pglavich/archive/2005/09/04/424392.aspx . This code uses the httplistener classes to implement a simple webserver module. And then host asp.net to handle the requests - ...Show All
Geek Squad Programmatically create xml document: multiple namespace errors? : URGENT
Hi, I have a xml document displayed below, which I want to programmatically create. <rootABC xmlns=" http://www.xyz.space.com/land "> <ele1 xmlns:xsd=" http://www.xyz.space.com/Airschemas " xmlns:xsi=" http://www.xyz.space.com/AirschemaInst "> <ObjVal> <Name>POC2</Name> <Age>tempCube</Age> <Height>dimension1</Height> <Weight>MeasureId1& ...Show All
Charles Nicholson Marshal.Copy(IntPtr to IntPtr) why is it missing :( in CLR
Hello, I am striving after Marshal.Copy(IntPtr src,IntPtr dest) implementation! I need a platfrom independent functionality of block copying in unmanaged heap. The requirements exclude the use of unsafe pointer like operations as well as invocing Win32 specific functions. So far I am doing with by allocating a byte[] in managed heap and twice calling Marshal.Copy. (sorry but do not have the code sample handy) It is highly inefficent first beacu ...Show All
