Search results for query: *

  • Users: chime
  • Content: Threads
  • Order by date
  1. C

    Error while using sharepoint dll's

    Hi I hope there is someone out there who can help me this error on my project. This is the first time I am trying to integerate sharepoint and vb. I am trying to use the following sharepoint dll's in my project. Microsoft.SharePoint.Security.dll Microsoft.SharePoint.Dsp.dll...
  2. C

    Check a datagrid checkbox column is checked not working

    Hi I have a datagrid with a template checkbox column. Which I create programatically using the following code 'insert checkbox and load with data Private Sub DataGridFinanceInvoiceHistory_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs)...
  3. C

    Deploy on a virtual server

    Hi Is there a way to deploy a web project on a specified virtual server. Ideally I would like to add something to the installation process so that we can specify which virtual server to install it on. However if this is not possible then maybe specifying it during the deployment process...
  4. C

    Merge/combine similar rows so that extra columns are added

    Hi I have a complex view that pulls data down into this format ClientID, ClientName, FundID, ProductID Each Client can have more than one fund Each fund can have more than one Product Client1, MyClient1, Fund1, 101 Client1, MyClient1, Fund2, 101 Client1, MyClient1, Fund2, 301 Client2...
  5. C

    Sql Insert error for auto incrimental field

    Hi I am trying to insert a row into a sql Server Database The InvoiceID field is an auto incremental field which in increased by 1 each time When I try to run this code I get the following error "Input string was not in a correct format." The code works when the field InvoiceID is...
  6. C

    Datagrid not taking up dataview as a data source

    Datagrid not taking up dataview as a data source - solved Hi In my code I have a dataview which I want to bind to a datagrid I want to use it to sort column on the datagrid itself Public Sub BindGrid(ByVal SortField As Object) Dim strSortOrder As String = Session("SortOrder").ToString...
  7. C

    SQL Server does not exist or access denied

    I have just started to use SQL SERVER for the first time today. I can set up a dataadapter and connection string in vb .net and pull down data But when I try to do it in code it doesn't work and I get the following error "SQL Server does not exist or access denied" I am sure this is...
  8. C

    Error when configuring a dataadapter

    Hi I get the following error when I try to configure my dataadapter I have tested the connections in the server explorer and they work "DRIVER={MySQL ODBC 3.51 Driver};SERVER=localhost;DATABASE=myDatabase;USER=myUsername;PASSWORD=myPassword;OPTION=3;" I am new at this so its probably...
  9. C

    DataAdapter set up for delete/update error

    Hi When I am using the wizard to configure a dataAdapter it works fine for the SELECT and INSERT sections. But it gives an error for the UPDATE and DELETE sections. I have tried it on different tables of the MySQL Database all of which have a primary key. I am also using the simplest SELECT...
  10. C

    dataset into listbox - one works but the other doesn't

    Hi I have a web page consisting of two listboxes ListBoxPublicHolidaysAvailable and ListBoxPublicHolidaysAvailable which are both populated by Datasets. The code is working for the first one (ListBoxPublicHolidaysAvailable) but not the second ListBoxPublicHolidaysAvailable) I am reading...
Back
Top