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 strongm 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. DigitalGeek

    developing in a team?

    Sorry chip, I missunderstood youp post, can you(or any one) suggest a good repository that works with VB.Net
  2. DigitalGeek

    Recommended reading?

    The book I got the most info from was: Visual Basic .NET step by step. It's a Microsoft Press book. although it was a little pricey, it has changed my programming point of view greatly. Have fun and Good luck!
  3. DigitalGeek

    what should I assign to my date variable, if the value is null?

    In you class, validate the Date and ignore... VB.net will store a null by default, as you pull the data back, validate again and treat it accordinbly.
  4. DigitalGeek

    developing in a team?

    I figured it was a VB.net Error, so I posted in the VB.NET form...
  5. DigitalGeek

    Is It difficult to create a table in SQL Server using A Dataset???

    Once you have read the XML file to a DataSet, the field is wide open to manipulate it as you need. Which includes create new SQL tables.
  6. DigitalGeek

    VB Newbie. Needs help from VBA

    I have a similiar project in Excel, very power app, very BIG app. I found about a half dozen books and soked up the material and dove in to start from scratch, my first release is almost ready. I am a happier man for this task!!!!!!!!!!!!!!!!
  7. DigitalGeek

    developing in a team?

    I am working on a project with a freind, I have shared the project directory... when I run the executable on my friends machine, I get an exception on MyBase.New() (or start the project in VB) We have installed all the .net patches on both machines. When I execute the app on my computer at...
  8. DigitalGeek

    MS Access security?

    The network drive has read/write permissions for the people requiring access to the application... (I figured out the read only thing from a CD...) basically I will (X)copy the app and files to the destination... Development OS is WinXP, Deployment OS is WinNT... Could you give me specific...
  9. DigitalGeek

    MS Access security?

    I am tring to use an ms access db for a programming project(building an interface with VB). everything works great from the db owners sign on, the distribution is on a compltely different network. When I try to open the DB, (from another sign on on my computer or on distribution network) I am...
  10. DigitalGeek

    Connecting fields with data

    I you set up the conn/adapter/dataset with the IDE, then bind the dataset field to the text box(the same way)...
  11. DigitalGeek

    VB.NET, XML, and Nested Relations

    If you know the table format, why not create the dataset/table and then ds.writexml after you have read the file.
  12. DigitalGeek

    MS access permissions

    I am using win xp/office xp, deployement is W2K/OXP(I know I need .NET for 2K)... I create the tables in access to make life easier, I am using OLEDB for the connection. My local sign on is Admin, when I login as a user on my machine I get the same message. I have tried create another user in...
  13. DigitalGeek

    MS access permissions

    I am trying to read and write to a access database. It works fine on my logon at home, at work I get an exclusively or no permission error, I have tried to change the permissions but now no user can access the tables? what can you suggest?
  14. DigitalGeek

    Database problem...

    I created the connection, adapter, and dataset using the IDE... 'OleDbSelectCommand1 ' Me.OleDbSelectCommand1.CommandText = "SELECT Article, Code, Desciption FROM Articles" Me.OleDbSelectCommand1.Connection = Me.adotstolec I don't know if this is what...
  15. DigitalGeek

    Database problem...

    what parameters? I coppied the example from a book... this works in another program I have written... it even worked in this program...
  16. DigitalGeek

    Database problem...

    with the following code... imports System.Data Imports System.Data.Oledb . . . dim dradotst as OleDbDataReader connadotst.Open() Try dradotst = Me.OleDbSelectCommand1.ExecuteReader(CommandBehavior.CloseConnection) Catch oledbexception As Exception MsgBox(oledbexception.Message) End Try...
  17. DigitalGeek

    Mod 10 barcode checkdigit?

    I need to now the method to create a "UCC MOD 10" check digit...

Part and Inventory Search

Back
Top