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 IamaSherpa 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. jimbledon

    9509 Half duplex

    Hi, I have a Fabric switch which is operating fine but i keep getting messages from the network team that the switch is running half duplex. The switch is running SAN OS 2.0(1b) Is there a way to set the management port to full duplex? I have run the following commands TV1# show interface...
  2. jimbledon

    When Two Vales are the Same

    Hi, I have a spreadsheet that varies often. The first tab as the changing list ("Lun Masking") whilst the second is the definitive list ("Un Assigned Volumes"). The numbers i'm trying to compare have been converted to strings and range from 0000 to 0439 in hex. I'm trying to create some code...
  3. jimbledon

    9509 Director Export/Import Configuration

    Hi all, I have a Cisco MDS 9509 Multilayer Director being used as the mainstay of a fabric. The management software is Fabric Manager 2.0(3) Device Manager 2.0(3) The configuration is split into 6 VSAN's. The 2 VSAN's i'm interested in have over 400 Zones in each and i'm required to rename...
  4. jimbledon

    Binding from a dataset to a textbox

    Hi All, I'm in the process of build a small mobile application (applogies if this post is the wrong area) When binding a textbox to a table in the dataset i get a "System Argument Exception: Argument Exception" This is strange as i can bind the dataset to a datagrid or a combobox with no...
  5. jimbledon

    SQL Exception

    Hi, I have been away for a while but the problem still exists. The SSPI for my connection enables auto-authentication, so it should connect okay? I tested it on a friends machine and it worked fine but for my machine it failed to connect with the following error...
  6. jimbledon

    Passing Value from Combobox to new form problem

    Your a legend!! I'm pretty new to this .Net the hardest part is understanding the framework and the order which the events fire. Works like a charm, the EstNo lost its value when passed into a load datagrid method, so i just put it into a new private variable and bingo! Thanks again James
  7. jimbledon

    Passing Value from Combobox to new form problem

    Hi, In regard i put a status bar on all forms when developing to output any messages to aid debugging. There is a status bar on the EitemsStock Form. Let me try and explain what i'm trying to do. I have a data entry form which is bound to customer table which contains 2 datagrids that covers...
  8. jimbledon

    Passing Value from Combobox to new form problem

    whoops, my mistake. Changed the following. Dim EstNo as Integer EstNo = cmbEstNo.Text using the debugger the final line that is attempted before an execption is thrown is; StatusBar1.Text = "Passed EstNo =" & EstNo Error Message Message is Object reference not set to an instance of an...
  9. jimbledon

    Passing Value from Combobox to new form problem

    Hello, I have built a form with 2 datagrids bound to a underlaying table; there are 3 tables in a dataset with the relations set up. There is a combo box with some values extracted from one of the datagrids. What i would like to do is pass the value from the combobox and open a new form. I...
  10. jimbledon

    SQL Exception

    Hi Chip H, How it is possible to confirm this? Regards James
  11. jimbledon

    SQL Exception

    Hi The TestConnection button worked okay. I read up on connections string and if you use sspi it should connect to the windows guest account as default? private string conString = "Initial Catalog=Project;Data Source=192.168.1.51;Integrated Security=SSPI"; Doing this produced the following...
  12. jimbledon

    SQL Exception

    Hi oppcos, I had a look at the users in the Enterprise Manager and there was no IUSR_JAMES list; I created a new one and granted owner permission to the database. I dont really under what user connects to the datadase that is defined in the connection string, my understanding was that it would...
  13. jimbledon

    SQL Exception

    Hi obislavu, Thank you for you code, the outcome is below Error index # 0 Full Error Message: System.data.sqlclient.sqlerror: Sql server does not exist or access denied. The error is 0 so i assume that the this is down to a SQL configuration. Recently i granted the IIS user the connection...
  14. jimbledon

    SQL Exception

    Hi, I have output the following information by using the following code. I wasn't sure how to get much more info out of it. catch (SqlException ex) { Console.Write("SqlException: "+ ex.Message); statusBar1.Text = ex.Message; } SQL Exception Message: SQL Server does not exist or access...
  15. jimbledon

    SQL Exception

    Hi All, Over the past couple of days i have been having a problem when trying to connect my Mobile Application to my database. The error i receive is SQL Exception. Which is strange as i have transferred the code to a Windows Project and it works fine. System is SQL-Server 2000 WIndows XP Pro...
  16. jimbledon

    Stored Procedure Returns No Rows

    Hi All, I have created a simple query that returns some stock items. The next step is to put some input parameters in there to make my page more dynamic. At the moment i'm testing the stored procedure to return some hard-coded values. SELECT TblStock.StockNo, TblRange.RangeTitle...
  17. jimbledon

    SqlDataReader Exception

    Hi, Thanks for the reply Changed the connection to this, it still bombs out but it is happening quicker now Dim strConnString As String = "data source=192.168.1.103;Initial Catalog=Project;Integrated Security=SSPI" Regards James
  18. jimbledon

    SqlDataReader Exception

    Hi all, I'm trying to build a small mobile app that populates a combo box from a sql server located on a server. The error returned is a 'SQL Exception' and the code bombs out on the connection.open() statement. Imports System Imports System.Data.SqlClient Imports System.Data Imports...
  19. jimbledon

    String Concatenation

    Hi All, Being Fairly new to SQL-Server, I have come up a couple of probems when binding a combobox to a table. The first thing is the connection string being used concatentates the firstname and surname into a new string called CustName. It works okay but because the fields are varchar(22) and...
  20. jimbledon

    Install Problem Internal Error 2349

    Hi All, For the last week i have been trying to install Visual studio .net 2003 on a XP pro machine running a 1.8 GHz processor and 80 Gig drive. Prior to attempting the .net install i installed SQL-Server 2000. Part way through the install the following error is displayed "Internal Error...

Part and Inventory Search

Back
Top