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 Mike Lewis 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. Mootser13

    LDAP Authentication when logged in as local admin

    Hi all I am working on a app that helps load up a pc. It goes out to AD and retrieves the listing of users. I am logged in locally as the administrator, not the domain. Here is my LDAP code that I am using, Dim child As New System.DirectoryServices.DirectoryEntry("LDAP://DC=domain,DC=com") '...
  2. Mootser13

    VB.Net 2005 Change control default properties

    I think I have found a way that I can live with. I'll just set the form font , size and properties to the how I want it and the buttons lables will inherit those properties from the form.
  3. Mootser13

    VB.Net 2005 Change control default properties

    Right now I am using some snippets to set the properties using code, but this is a little bit cumbersome to perform every single time.
  4. Mootser13

    VB.Net 2005 Change control default properties

    Stupid question: How do I change the default properties for controls like a button ? Every time I create a new form and add buttons I end up changing the Font size, and font type to something like size 11 and book antigua. I would like to set these properties as the default. Or any other control...
  5. Mootser13

    External USB drive not recognized in BIOS Xseries 3650

    Working on an IBM Xseries or X series 3650 server and I am trying to get the bios to recognize an external 20 gig HD via USB. A flash USB drive works, but this 20 gig drive doesn't. Bios version is completely up-to-date. System type: 7979G5U Want to boot to the external drive with BartPE...
  6. Mootser13

    Pocket PC SQL deployment + SQL + NETCF

    Here is the link I was looking for, but it does not say how to this with netcf or sql mobile... http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetcomp/html/deploy_cf2_apps_cab_msi.asp
  7. Mootser13

    Pocket PC SQL deployment + SQL + NETCF

    Hi all, I have created a pocket pc application and have it ready for deployment. I created the cab file, but it uses a sql db. I have included that also in the Cab file. My question is how do I get the netCF and sql mobile to be packaged with it so that it can be installed right along side my...
  8. Mootser13

    Pocket PC Datagrid help, Binding Navigator

    But I like the Bindingnavigator object, it's small, includes all the buttons that are small, it perfect for Pocket PC. I have finished this project up any ways. thanks for the help. Mootser13
  9. Mootser13

    Pocket PC Datagrid help, Binding Navigator

    OK, so the net cf 2.0 does not support any access db (OleDB provider) or the use of the binding navigator. What good is it to even have any database support at all then ? I'll just write the code myself. Thanks
  10. Mootser13

    Pocket PC Datagrid help, Binding Navigator

    trying to include Datagrid in a pocket pc aaplication, I can get the grid but the binding navigator does not get created. Why did MS not include this feature in the netcf ? Now i have to write the code to actually update/create new/delete. Is there some easy thing I am missing ? Am I even in...
  11. Mootser13

    Add rows in MS Access with Autonumber + Primary key

    I appreciate it. Sometimes looking at your code helps me to understand the thought process. I can't imagine this is a unique situation I have run into. Thanks for the help..
  12. Mootser13

    Add rows in MS Access with Autonumber + Primary key

    I am actually adding a row by using the add row, then using the update method. Can you explain further how to build the insert command ?
  13. Mootser13

    Add rows in MS Access with Autonumber + Primary key

    But why would I not want to have an autonumber on the primary key field ? Isn't there any VB/net 2005 code I can use to "trigger" this autonumbering event for this field. If I do nothing to update this field in my row addition, it will not add the row at all. "Field cannot be null".
  14. Mootser13

    Add rows in MS Access with Autonumber + Primary key

    Using VB.NET 2005, I am trying to update a primary key column that is set to AutoNumber. I can use this code Dim drNew As DataSet1.tablerow drNew = Me.DataSet1.nameoftable.NewnameoftableRow drNew.Item("NameofColumn") = Me.DataSet1.nameoftable.nameofColumn.AutoIncrement But this does not...
  15. Mootser13

    Editing an MS access record , getting the current row.

    rjoubert yeah, I tried that try catch block and it returned an error since in the catch block I cannot return an empty Row(). I actually got this to work, the code above is actually working, but the database isn't getting updated in the project, it is actually getting update in the bin folder...
  16. Mootser13

    Editing an MS access record , getting the current row.

    rjoubert (Programmer) 28 Jul 06 10:29 Try dv.Row(1) This returns the first columns' value. And not the row itself.
  17. Mootser13

    Editing an MS access record , getting the current row.

    I am just using VB.NET 2005. Binding is in the properties of the Adapter, dataset, So forth... My form does show the data from the table fileds to textboxes... I guess I need to get the row that I want to modify.
  18. Mootser13

    Editing an MS access record , getting the current row.

    No it just shows the .NET namespace being accessed.
  19. Mootser13

    Editing an MS access record , getting the current row.

    Maybe it's just me, but this seems correct. I have a dataset pointing to an MS Access db, I can fill the dataset and seea ll of the information in there. But When I go to update the DB, I want to update the row selected in my combobox. Here's the code I have: Public Function GetRow() As...
  20. Mootser13

    Getting the Page count from a Printer

    I want to write a script that I can run to get the page count from a print device. I know that WMI can retrieve the setting and status and such, but it does not appear that it can get the number of pages it has printed. Mootser13

Part and Inventory Search

Back
Top