Software Development Network Logo
  • Game Technologies
  • Windows Vista
  • Windows Live
  • SQL Server
  • Visual Studio
  • Microsoft ISV
  • Visual C#
  • Architecture
  • VS Express Editions
  • .NET Development
  • Windows Forms
  • Visual C++
  • Visual Basic
  • Smart Device
  • Visual FoxPro

Software Development Network >> brian185's Q&A profile

brian185

Member List

bobbyv
Anthony Wong
LUCYCARD
GeorgeKumpuckal
MikeFesta
daWiki
MSSam
Sean F
Chris Cowherd
TungstenSteel
Flame999
DLIRL
Dale
Mariano Iglesias
sayangoin
Manon
galg
Ali Enteshari
dzimmy
Wayne Grincais
Only Title

brian185's Q&A profile

  • Visual Studio Team System Warehouse not updating after upgrading to RC

    Everything except reports seem to be working fine after the upgrade. When I go to run a report there is no data in it. When I run the scripts in the Warehouse Troubleshooting guide the Last processed time is null. I try to go through the controller web service and it dies on the ProcessingOLAP step. I am set up in a dual tier configuration. On the SQL box there are entries in the Event Log every time the Scheduler tries to update the Warehouse with the following error OLE DB error: OLE DB or ODBC error: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.; 42000. Any ideas I have looked at the permissions of the Olap Service and ...Show All

  • Windows Forms Databind the selected row in a DataGridView

    Hi All, I wonder if it's possible to databind the selected row of a datagridview to a business object. (like it's possible with a dropdownlist) I use a datagridview to let the user select the right product to purchase. Now I put the selected row on the SelectionChanged Event in my object, but I don't like this to much... Any suggestions Thanks, Simon Did you remeber to change the Selection mode to FullRowSelect Try this if not we will continune from there since i just did this in work today Itzik Katzav ...Show All

  • SQL Server The underlying connection was closed: Could not establish trust relationship with remote server.

    Hi, I am installing reporting services sp1 in loadbalanced servers. I keep on getting this error upon installation and upon configuration of target url in the config files. The underlying connection was closed: Could not establish trust relationship with remote server. Its not with the ssl since the ssl uses the full dns and is valid. So i was wondering what else needs to be done to fix this error. Thanks! karen What do you mean by "getting the error during installation and configuration" Are you able to access the report server on individual NLB nodes using SSL ...Show All

  • Visual C++ __event alternative

    The following page : http://msdn2.microsoft.com/en-us/library/6f01ek09.aspx says that __event -based event handling is deprecated. In that case, what is the best way to do event handling I have a class HWClass, that talks to a hardware device. Several other classes need to read from this hardware device. However, the reading is asynchronous and HWClass needs to notify the calling object if the reading process is finished. (Bt the way, this is native C++ and not CLR) Thanks! I can not see how the __event keyword would help you Also I can noit see that it is deprectated. Also it has nothing to do with p ...Show All

  • Visual Basic Overloads in a Module

    Can I not have multiple Overloads in a single Module I'm converting from VB6 to .net and I'm having the issue of trying to use the same sub or function with different forms. I thought the solution might be to use an overloads statement, but it seems to only let me use one. Here is an example: Overloads Sub gp_DisableInputs( ByRef frm As frm1, ByRef DIndx As Short ) Overloads Function gf_Method( ByRef frm As frm2 , ByRef DStructure As DirectStructure) As Boolean The first one seems to work fine, I get the blue line under the second and I can't complie. Any suggestions ...Show All

  • Windows Forms Menus

    I want to disable and enable my application menus.  I know that if my menu caption or text is called 'Create Invoice' and the name is mnuCreateInvoice, I can do this in C# (this.mnuCreateInvoice.Enabled = false) to disable it. Now, asuming the name is in a variable, i.e., ci = mnuCreateInvoice, what can I do to disable the menu now   ci.Enabled = false does not work.  What should I do I need help. That is because menuToShow is a String not a MenuItem. You have to now go through each menu item in your Menu and find an item who's name matches that string and then enable THAT Control ...Show All

  • Visual Studio Team System How Extraction rules are useful in a web test?

    How Extraction rules are useful in a web test I dont understand the concept of extraction rules.Pls can anyone tell me how they are useful Regards Golu Extraction Rules helps in extracting information from the response of a page. You can extract the required information into a context parameter . You can assign this context parameter to any of the form post parameters. As an example, to extract the viewstate of the page, use Extract Text . starts with: <input type="hidden" name="__VIEWSTATE" value=" Ends with: " /> Context Parameter : Extracted ...Show All

  • Visual C# ClipBoard is not returning desired object

    Hi guys. I created a simple object that I then implant into the ClipBoard Clipboard.SetDataObject(new MemoryData(image, Text)); Then when I am going to read it, I use this code (taken from MSDN): IDataObject data = Clipboard.GetDataObject(); if (data.GetDataPresent("SLib_Creator.MemoryData")) { MemoryData m = (MemoryData)data.GetData("SLib_Creator.MemoryData"); MessageBox.Show(m.Text); } However the 'm' is always null, it always fails and gives me the message saying the the 'm' is null... Please tell me what I am doing wrong. Sincerely: Jonatan mark MemoryData class Serializable ...Show All

  • Visual Studio Tools for Office Install issue - ServerDocument cannot write to client's Manifest

    First off I know that my VSTO solution works locally and will work with remote assemblies, on my machine and anothers client. But on a third machine (the client), I have run into a situation on a where I am trying the methodology of "Quick Start #3: Deploying a Document to a Local Folder, and an Assembly to a Network Folder" I have created the console application to handle the writing to Excel's manifest using the ServerDocument class. When the process attempts to write to the client's manifest to inform it of the remote dll this exception is thrown: Exception Caught: Could not create a persistence object for the specified fi ...Show All

  • SQL Server xml index not working properly

    When I use xmltype .exist(..) to check whether one xml type instance contains a node with the path and value specified in the xpath, the xml index created doesn't work as what I expected. My xpath is simply like /Book/Title[.="blah"]. According to many tech guides on the web, the query optimizer will map the /Book/Title to a coded path_id, then the path_id will be used to scan the rows in the primary xml index with the matching path_id. After the matching rows are found, their value column will be compared to "blah" to calculate the return value of exist(...). However when the xml instance is untyped, the index just ...Show All

  • .NET Development update web reference fails, "out" parameter converted to a function return result

    I created a C# web method with some out parameters. I then updated the web reference in the client application. The client application had the wrong number of parameters. I could not understand what was happening. I deleted the web reference, re-created it. No luck. I deleted the Internet Explorer cache. No luck. I searched my hard-drive for all files containing the specified web method name. Surprisingly, all of those looked OK. They all had the right number of parameters. I restarted my computer. No luck. I decided to create a new web method with a different name. A simple test case. [WebMethod] public void Test ...Show All

  • Windows Forms How to remove all rows in a DataGridView

    I have a DataGridView that takes data from a textbox that user inputs. Then, a button that lets user save all rows to database. After saving, I want to remove all rows in the DataGridView. However, the DataGridView always keeps one row undeleted. My code is: private void button2_Click( object sender, EventArgs e) { for ( int i = 0; i < dataGridView1.Rows.Count; i++) { dataGridView1.Rows.RemoveAt(i); } } What is wrong with my code Thanks, The conditional of an if statement is evaluated on every loop; your i is increasing at the same time that Rows.Count is decreasi ...Show All

  • SQL Server Connecting Sql Server 2005 from ASP?

    Hi We are planning to move over to SQL Server 2005 in near future. At the moment Website is on a seperate server then the Database. OS for both the server is Window 2003 and currently our data is on SQL Server 2000(on which everything works fine). Part of the testing process we tried to connect our website on SQL 2005 and it does not work at all. I get this ---------------------------------------------------------------- ADODB.Connection error '800a0e7a' Provider cannot be found. It may not be properly installed. When i use following connection string "Provider=SQLNCLI;Server=127.0.0.1;Database=dbName;UID=UserName;PWD=Us ...Show All

  • Microsoft ISV Community Center Forums Creating AD user with profile & home directories

    I am using Excel VBA to create AD users from a spreadsheet of names. I can create the users in the correct OU and can add the home drive and profile path to the user object. However, unlike when creating the User from the "AD Users and Computers", the folders themselves and the relevant permissions are not created automatically. Creating the folders themselves will be no problem, but how can I then assign the correct security permissions to the folders. I do not want to share the folders, just implement NTFS security rights so that the Group Policies work correctly (we redirect the My Documents to the users Home Drive) Any help in pointing m ...Show All

  • SQL Server 2005 SP1 install, another can't authenticate...

    win 2003 sp1 with sql 2005 enterprise. Tried SA.. Tried AD Admin, tried local administrator. Set up in mixed mode so i tried windows and sql authen... I can log in normally with SA and the password and the windows admin account. Nothing works, tried services off and on. Tried clearing everything Reinstalled completely... Only the SQL Server part fails because it requires authentication. All the other parts succeed. I don't get a log since it just thinks im typing things wrong. Just this 06/06/2006 21:24:59.641 Authenticating user using Windows Authentication 06/06/2006 21:24:59.641 SQL Service MSSQLServer was previously run ...Show All

©2008 Software Development Network