Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. egil84

    Report

    I have a form that after the user inputs all the information I would like it to print in a word template I created. So basically the information would be inported from my form or my Sql Server database into this template I created. If anyone could point out any articles I could read about it...
  2. egil84

    listview

    How can I populate a listview using data from MS Access. Any help will be much appreciated. Thanks
  3. egil84

    create costumized letter and merge data from sql server

    I have a program for housing applicants. When it's time to call an applicant, I have to be able to choose the application number and then it has to merge that applicant's information into the letter, from the sql database so that I can print the letter. If anyone can point me out any articles...
  4. egil84

    C# and VB.net Comparisson Papers

    Check this article. It might be what you're looking for. Also, there is a download file. It has an article inside it that explains it in great detail. I was also looking for something like that. I'm taking a C#.NET and VB.NET course, and I wanted to know the difference between both of them, and...
  5. egil84

    using DBGrid to make changes to Interbase

    I'm looking for thr same answer. If you could post your code, I'd greatly appreciated it. Thanks in advance.[smile]
  6. egil84

    create and populate table in Oracle through C#

    I can't think of another way of doing this. I just want to connect to my Database and create a table. In the end of my code I have a message box telling me that my table was created, that's how I know it went through all my code. I have this is a try-catch and it doesn't give me any error. But...
  7. egil84

    create and populate table in Oracle through C#

    'm trying to create table through this method. It connects to my database, it givs me a message that it was created but when I want to insert data through my form into the table, it says that the row/column/table doesn't exist. What am I doing wrong? Any help would be greatly appreciated. Thanks...
  8. egil84

    Serialize/Deserialize file

    Gosh, I wished I was as good as you guys are. Anyway, here's the problem: I have a form that once you click on the bottom, it passes the information about a cruise into an array, and from there I store that value to an ArrayList, which is where I have all of the cruises information stored. Then...
  9. egil84

    How do I pass an array to an ArrayList

    Oh my God, thank you very much guys. It worked pretty well!!![thumbsup2]
  10. egil84

    How do I pass an array to an ArrayList

    I have this array in my form: //load values to array string [] dataSetArray = {variable1, variable2, variable3}; //pass array to method Add oDataStore.Add(dataSetArray);//oDataStore is the object instantiated out of DataStore //here is my DataStore Namespace using...
  11. egil84

    Hi guys ... i need ur help

    C# is the first language I'm learning to code. I have no programming background but I think that C# is pretty easy. VB.Net is easy but not as fast as C#. I would say that both would do the work, but I would go towards C#, and it can be easier for you because C# is based on C++. Just an advise...
  12. egil84

    Simple question!

    using System; namespace MyConsoleApplication { class Class1 { [STAThread] public static void Main() { char userInput; string myString; //display "Hello World!" on the screen Console.WriteLine("Hello World!")...
  13. egil84

    How do I pass an array to an ArrayList

    I have an array where I have loaded all the data I need, and then I'm trying to pass that information to go into an ArrayList so I serialize it. I've tried to pass an ArrayList to an ArrayList but it won't work. I have to pass the array through a method and then that mothod will serialize my...

Part and Inventory Search

Back
Top