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 Wanet Telecoms Ltd 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. 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...
  16. aviles1973

    VB.NET Database Sharing

    I did change the connection but that is one of my problems as well. I point to the database on MY NETWORK PLACES but the connection still shows that it points to c:\whatever\database.whatever.mdb
  17. aviles1973

    VB.NET Database Sharing

    I forgot to ask one more question....... I created the program as a windows app. Should I have created it as an asp.net app?
  18. aviles1973

    VB.NET Database Sharing

    I have a small network in my home with two computers and I have a small Database program written in VB.Net using ADO.Net connected to an Access(.mdb) database. The program has all the usual functions such as: Delete, New, Update, Refresh, Etc. I have tried to share the database in My Network...
  19. aviles1973

    Slow repaint of a form WHY?

    I have a form that is NOT a parent form. When I call a form on top of the underlying one and then close it, it repaints very slowly causing it to like crap! How can I fix this problem? The underlying form has an image set to it also is this why?
  20. aviles1973

    Some Basic Questions - New to VB.net

    I have been programming in VB6 for a long time. I pretty much mastered database programming in VB6 using ADODC & DAO. I bought VB.net because I was long awaiting the next Visual Basic release. However some forums have told me to stay with VB6. I want to switch my knowledge to VB.net because it...

Part and Inventory Search

Back
Top