Yes, this is correct. but in managed languages, that is not of your business, they were actually invented so that programmers stop thinking about pointers in...
Reference Type: The reference (address) is stored in stack memory and the object may store in RAM (other than Stack , OS) , CPU reg and hard disk depending...
I want to convert an image to text to store in a database and be able to pull it out and convert it back to an image. Does anyone know how to do this in C#?...
Hello Jason, ... Why you want to convert the image in text? You must put the image or the text in a blob field .. You can use the UUENCODE/UUDECODE to convert...
We are using access for use as a Demo cd. I know we can use a object but we do not want a dbsavy person to be able to pull the image because it will be a...
As some other people mentioned, it's a lot wiser to store the image in a blob field instead of converting it. But I'm guessing since you asked the specific...
C#/.Net/VS2005 - How can I write text onto the form of a webpage through the use of a windows form that I can write? My idea is that I would like the text I...
To start with : I'm new to C# and .Net but not to programming. I've read the C# school book on programmers heaven so the basic is not a problem but I have not...
Hi all, Can anyone suggest me how can i lock an USB drive using C#.net? My ultimate goal is to use an independent application which will reside in my USB drive...
Hi everybody, I'm currently working a small test desktop application for smart phones using Visual studio 2005. If I start the application locally on my...
Ivo Verus
ivo.verus@...
Nov 6, 2007 2:53 pm
17147
Hi all, I am deeply perplexed on how I am going to achieve this. I need to create, open and manipulate both word documents and excel spreadsheets from a web...
If you have a budget, you can go with Aspose, Excel writer or some other suitable 3rd party product. They are not free. You can also look at VSTO to do this...
The problem was that current directory wasn't the same where the application was, but the root directory instead. Now, everything is OK. :) Best regards, Ivo...
Ivo Verus
ivo.verus@...
Nov 8, 2007 8:03 am
17151
Hello I have a question in C#2005 I Have an arraylist has a list of integer I want to convert my list to byte of array byte[ ]........ How can I do this Thanks...
can anybody help me to change this vb code into c# or vb.net its code to populate the tree from product table /////My Product Table ProductId ParentProduct...
First Hi Everybody, using System.Data.OleDb; -----> this is your referance you must add this code top of your codes Private Sub Form_Load() ----> private void...
Has anyone figured out how to send or receive arrays from Microsoft Dynamics AX using the .Net business connector. Since it is really cranky with types I am...
Hi I'm new to this site and find the information very interseting, I'm working on an application that uses serveral arrys as shown below: string[] RmID = { "0...
Hi all. I have a little problem, that I think somebody may be able to help with. I think it should be quite simple, and straight forward to somebody other than...
Hello Everybody, i am stuck wth a problem, i am using a third party dll and callng a method frm that dll, bt unfortunately the method doesnt return the xact...
Is it a dotNet generated DLL? May be it's C++ or other compiled dll. In this case your only solution is to decompile it in assembly language... but you may be...
I have a datatable that will need to be sorted and summarized based on an id field and then I will need to display individual records for each id. I'm thinking...
Newbie question: I have a simple Winform app with a 'Close' or 'Exit' button. In the click event handler, should I use Close(); Or Application.ExitThread(); To...
Jeff Nygren
JNygren@...
Nov 14, 2007 5:00 pm
17161
Hi Jeff The Close method of the form just closes the form, and I think it's a side effect that the app exits, for example, compact framework apps don't exit...