Search results for query: *

  • Users: Cavar
  • Content: Threads
  • Order by date
  1. C

    Record Filtering/Selecting Data Access Layer

    So, I've been reading up on creating a n-tier application and understand some of the basics such as selecting, saving and deleting data via custom business objects. All of the samples I have found so far select data using something similar to the following in the Business Logic Layer: Public...
  2. C

    Problems reading Visual FoxPro table

    I have a .DBF file that Windows is identitfying as a Visual FoxPro table and I am having problems reading data from it. The data folder contains the following files: 100046986.DBF 4kb 100046986.I00 175kb 100046986.NDX 1kb 100046986I.N00 1kb 100046986R.NDX 1kb I am trying to automate a process...
  3. C

    Console vs WinForms

    Is there any benefit to writing a utility app, no GUI, as a console app vs. a winforms app that never shows a form? There's the obvious import/using differences, but what else? My boss won't create a console app and forces me to make every small utility app as a winform app. CT
  4. C

    Stopping running process before re-install

    I am using the built-in VS2005 setup project to build my installer. I have set the project to remove the previous version when installing a new version and I was curious if there was a way to see if the previous version was running and stop it before the new installer continues? I think it...
  5. C

    Using Dispose and/or null on objects

    This is a general .NET question, but I provided C# code. If I have an object that implements IDisposable and I call the .Dispose method, should I also set the object to null? I know about the "using" keyword, so no need to explain it or it's benefits. Ex: Should I do this... SqlCommand cmd =...
  6. C

    Migrating from ASP to ASP.NET/Smart Client via Web Services

    Just a quick question... I was thinking about converting a classic ASP to .NET and was thinking that I would code the logic in a web service that can be called from either a ASP.NET web app or a Smart Client. Does this sound like a feasable plan, since I want to support both types of apps? CT
  7. C

    Help: Class, Inheritance

    Hi, I've been programming in VB6 so long that I have no idea how I would go about creating a class (OOP?) that would give me the following intellisense format when using my class. Customer.Name.First Customer.Name.MI Customer.Name.Last Customer.Name.Prefix Customer.Name.Suffix...
  8. C

    HELP/UNDERSTANDING: Custom application settings class interacting with my form

    Hi, I wasn't sure the best place to post this, so feel free to move it to the appropriate place. Anyway, I'm new to VB.NET an OOP and I was having a problem with an application I am writing that runs in the task tray using the Notify Icon component. I created a class that I am using to...
  9. C

    Disconnected Recordset

    I tried to search for what I am looking for, but I guess I don't know the best way to phrase it, so I was hoping someone could help me out. I want to create/open a Connection to a database, get some kind of DataReader/DataAdapter or something filled with data, then close the Connection so that...
Back
Top