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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by aviles1973

  1. aviles1973

    Binding Data to Controls - RunTime Vrs DesignTime

    I am usig VB.net with a SQLServer2005 database. I create my database directly in VB.net and I have a question and would like some advice from others. When I bind my labels, textboxes, etc. to DataFields in VB.net I really don't like the behind the scenes work that VB.net creates. I feel like I...
  2. aviles1973

    VB.NET - SQL SERVER

    Thanks to all! That initial guidance is sometimes all thats needed to learn alot. I actually learned programming that way! Went to school for computer repair!
  3. aviles1973

    VB.NET - SQL SERVER

    OK Thanks to all! I may sound like a "dummy" with SQLServer2005 but I have actually no problems with creating databases and using ADO.net to manipulte the data! I was just very unsure of the connection and manipulation of the main Database on a network. So to recap: 1)I must install my VB.net...
  4. aviles1973

    VB.NET - SQL SERVER

    I have a couple of questions about a database program I am writing. I created a test database program using SQLServer2005 from within VB.Net 2005. Now I want to setup the small test program on another computer on my small network. What I need to share the database(.mdf) so both computers can...
  5. aviles1973

    Do I even need a DataSet?

    I am using these OBJECTS without using VB.net wizards to connect and manipulate my database(SQLServer2005): m_cnADONetConnection As New SqlClient.SqlConnection() m_daDataAdapter As SqlClient.SqlDataAdapter m_cbCommandBuilder As SqlClient.SqlCommandBuilder m_dtContacts As New DataTable I can...
  6. aviles1973

    Retrieving value of Identity column after insert?

    Thanks to everyone who has helped! Now I can move on with programming. After I inserted the row and updated the Dataset and moved my RowPosition to point to the last row in the Table I used this: 'Update AutoNumber Fields Dim cmdGetIdentity As New SqlClient.SqlCommand("SELECT...
  7. aviles1973

    Retrieving value of Identity column after insert?

    I have recently created a topic about retrieving the value of an Identity column that is an autonumber primary key field in SQLServer2005. Thanks to all for the posts. Even though I do understand the SQL Language and the insert command. I still am stuck on this topic because I am only using SQL...
  8. aviles1973

    SQL datetime & VB DateTimePicker

    I currenty am moving my knowledge from Access to SQLServer and already I am stuck at the PrimaryKey Autonumber Identity issue when adding new rows. I am replying to this post because I havent used date and time values yet in SQLServer but I am too interested in the answer. I would guess it...
  9. aviles1973

    AutoNumber Primary Key Field not updating

    I didnt get a chance to try this link yet: HOW TO: Retrieve the Identity Value While Inserting Records into Access Database By Using Visual Basic .NET because I went to Barnes & Nobles to find a good book on SQLServer2005 & when I got home I was fooling around with VB.net & found some info I...
  10. aviles1973

    Reports

    Thanks Guys! I love this place!
  11. aviles1973

    Reports

    Sorry! One more QUESTION: I use Microsoft Access for my Database and thanks to jebenson I am trying to learn SQLServer2005. My question is if Access is powerful and fast enough to use when my Data becomes very large in the database? WILL IT CRASH or is it recommended to learn SQLServer2005?
  12. aviles1973

    Reports

    I am buliding a sophiscated application in VB.net. Its a program that I plan to go commercial with when I'm done. Its a HVAC program that keeps track of customers, service calls, etc. and all the neccesary features to run a HVAC Business. I have a couple questions: 1) Is VB.net powerful...
  13. aviles1973

    AutoNumber Primary Key Field not updating

    Thank You! I had an alternative way of fixing this problem: m_dtContacts.Reset() m_daDataAdapter.Fill(m_dtContacts) I just re-filled the DataTable and the primary key auto number updated itself but my question is: 1)Will this slow the program down noticeably as the Data in the database...
  14. aviles1973

    AutoNumber Primary Key Field not updating

    I have a basic 3 field database example that I have written in VB.NET 2005. I am creating my data connection, data adapter, command builder and datatable at runtime. I have 3 textboxes: FirstName, LastName, PhoneNumber I have 1 label: EmloyeeID All 4 are not binded to the datasource or table. I...
  15. aviles1973

    Help finding animation in .X Model

    OK I have this game I downloaded which is a Horse Racing game and the Directories include C:\Game\Textures, C:\Game\XObjects, C:\Game\Sounds, C:\Game\Shaders,etc. As you can see all the game data is neatly arranged making it easy to understand. My problem: I want to use the .x animation named...

Part and Inventory Search

Back
Top