Software Development Network Logo
  • Microsoft ISV
  • Visual Basic
  • IE Development
  • .NET Development
  • Windows Vista
  • Visual Studio
  • SQL Server
  • Visual FoxPro
  • Windows Forms
  • Visual C++
  • VS Team System
  • Smart Devicet
  • Game Technologies
  • SharePoint Products
  • Audio and Video

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

Lbo

Member List

hayek85
LiamD
SorcererXIII
Saif Hasan
xshua
bharathi_tunes
Bijaya Kumar Pathia
dragoncells
MillBear
khaleel
CLOlds
clint 2
calmal20
UsingBytes
m ghandour
AdriaanDavel
LotusExigeS1
Darren Mombourquette
SOTY_Programmer
Alexei_shk
Only Title

Lbo's Q&A profile

  • .NET Development runtime error in eventlog from System.Messaging

    Hi all, I just found the following eventlog entry in one of our test machines: EventType clr20r3, P1 linecontrol gui.exe, P2 4.1.1.43, P3 4512623a, P4 system.messaging, P5 2.0.0.0, P6 4333af0f, P7 226, P8 b, P9 system.nullreferenceexception, P10 NIL.   "linecontrol gui.exe" is the application that I created. Looks like a NullReferenceException in System.Messaging to me Anybody got information about that   I wonder why my application just closes. I don't get an exception in my application that I can catch.   Best Regards Bernd Ritter I just installed an event listener for the AppDomain.CurrentDomain.UnhandledException delegate. The excption that is reported ...Show All

  • Microsoft ISV Community Center Forums open a workbook with events turned off

    Is there a way to open a workbook with the events disabled   In other words, I would like to open a workbook so that links can be updated, but without executing the workbook_open or workbook_activate event procedures. Nice one Joe, just encase anyone else needs to know here is an example: Application. EnableEvents = False ActiveWorkbook.Save Application. EnableEvents = True ...Show All

  • Visual Studio Language filter on earlier version of MS Document explorer ?

    Hi, I prefer earlier version of MS document explorer( which still ships with MS Platform SDK ) to MS document explorer 8. However language filter settings (am I right ) are not persistent and preserve default values after displaying each new page. I just want to set language filter once, and never use it again. Is it possible thanks Vilius Hello Vilius, The language filter is actually a feature of the documentation as opposed to the viewer (dexplore). The documentation that shipped with earlier versions of Visual Studio (2002, 2003) used a technology that had the limitation you describe. Only with the Visual Studio 2005 content did we rework that feature so that it is persistent from page to pag ...Show All

  • Visual Studio 2008 (Pre-release) Many-to-many mapping in EDM Wizard?

    I'm using the recently released Mar2007 CTP. Bring up EDM Wizard using the pubs database and select authors, titles, titleauthor tables. Traditional many-to-many design through a "join (relationship) table". Model gets generated with errors. The Primary Key in the table 'titleauthor' cannot be used as a foreignKey for the relationship 'FK__titleauth__au_id__0AD2A005', the relationship between table 'dbo.authors' and table 'dbo.titleauthor' was excluded. The Primary Key in the table 'titleauthor' cannot be used as a foreignKey for the relationship 'FK__titleauth__title__0BC6C43E', the relationship between table 'dbo.titles' and table 'dbo.titleauthor' was excluded. No Associations or AssociationSets in the model. Why I th ...Show All

  • SQL Server Updating column values on Insert trigger

    Hi all. I am new at programming ms sql. I have a table with a date field : EventDate DATETIME NOT NULL DEFAULT GetUtcDate(); Now I need to make sure that if anyone tries to insert a null(ie : the object-mapping mechanism) I replace it with GetUtcDate(). I think I remember that Interbase had a Before_xxx trigger, and in that one you looked at the value of the fields and modified it accordingly. Could not find such a thing here. How do you do that in SQL Server 2000 All I need to do is look at the value in the column and if it is null replace it with GetUtcDate(); Thanks very much for your help, EnriqueM Hi! Thanks for your answer. The null will be sent to the database ...Show All

  • SQL Server Management Studio connection

    I receive the falling error when trying to connect to Reporting Server through SQL server management studio. I can connect to the reporting serve and run reports through http://localhost/reportserver with no problem. Error: Program Location: at Microsoft.SqlServer.ReportingServices2005.RSConnection.MissingEndpointException.ThrowIfEndpointMissing(WebException e) at Microsoft.SqlServer.ReportingServices2005.RSConnection.ValidateConnection() at Microsoft.SqlServer.Management.UI.RSClient.RSClientConnection.CreateConnection(String connectionString) at Microsoft.SqlServer.Management.UI.RSClient.RSConnectionInfo.CreateConnectionObject() at Microsoft.SqlServer.Management.UI.RSClient.RSConnectionInfo.RSTypeImpl.GetConnectionObject( ...Show All

  • Visual Studio 2008 (Pre-release) Entity Model Designer - System.Data.Mapping.MapConnectionStringBuilder error! - urgent

    Hi everyone! I installed the ADO.net vNext august CTP, and the Entity Model Designer prototype. I know other people have used the "Generate from database" function and it has worked all right. But when I select the "From database" and press "next" I get this error message: "An error has occured! Error message: Could not load type 'System.Data.Mapping.MapConnectionStringBuilder' from assembly System.Data.Entity, version = 2.0.0.0 ... " I can load the Assembly and create a MapConnectionStringBuilder object just fine... Anyone knows how to fix this I have uninstalled and reinstalled the CTPs. I have Visual studio 2005 Team Suit installed. Thank you! Ok, thank you for the fast reply Sanjay! Here it goes: Microsoft Windows XP [Version ...Show All

  • Commerce Server Server Error in '/OrdersWebService' Application.

    Hi, I've had this error on 2 separate sites (CsharpSite and StarterSite). Am really struggling to resolve it. Looks like the AllowedStatusTable is expecting data but doesn't have any. I've found another post on the forum for the same problem http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1083101&SiteID=1 but he didn't get an answer. I'm sure we'd both appreciate some help. Thanks very much. Server Error in '/OrdersWebService' Application. The specified value for the newOrderStatus attribute is not valid. The value provided was: 'NewOrder'. Please make sure an entry for this value exists in the AllowedStatus table in the transaction config database. Description: An unhandled exception occurred during the execution of the c ...Show All

  • Windows Forms Remember Login

    Helloo Is there a way that I can remember login, like cookies in web applications you can, store it to say a database or xml file then look it up next time you are loading the application. However it would be pointless doing this if the user can use the application any way...so you would need some authentication perhaps to compare the stored credentials against a database for example to see if the credentials are the same or not ...Show All

  • SQL Server problem with custom conflict resolution

    Hi all, I am doing a work were i have to syncronize data between a Publiser (PC, SQL SERVER 2005), and a subscriber (Pocket PC, SQL CE MOBILE). I studied lots of articles and i managed to put the syncronization to work, the problem is in conflict resolution! The subscriber can’t insert or delet, only update!! For exmple: I have a table that contais the quantity of a product X, for example 100 units, this goes to Pocket, but later arrive move 100 units that are increased in the PC, so we get 200 in the PC, (but 100 in Pocket), no problem if i syncronize now (Pocket will have 200 too) , but if remove in Pocket for example 50 units, i've changed the same column in both Publisher and Subscriber database, if i syncronize now, ...Show All

  • Windows Live Developer Forums Virtual Labs and Windows Live

    Hello, I've taken two Virtual Labs over the last few days and when I attempted to go to the Comment Form to get credit I received a Windows Live error. There is a statement that it's a know problem, however I was wondering how I would go about getting credit for these labs Thanks, Leeland Leeland: Based on your description, I would guess the problem occurs when you sign in into your Windows Live account. Check the Windows Live support page for potential solutions: http://support.live.com/default.aspx . ...Show All

  • SQL Server ssis will not display package

    When I try to open the designer (with exiting, e.g. tutorial or new project/package) I get the following error message: Microsoft Visual Studio is unable to load this document: Index (zero based) must be greater than or equal to zero and less than the size of the argument list I reinstalled (repair) - still not usable - I saw another post with this issue and the only recommendation was reformat and reinstall - seems drastic, looking for a less intrusive solution thanks Richard ...Show All

  • Windows Forms Retrieve data from a selected row in DataGridView

    Hello, I'm using a DataGridView where I select a full row of data. I already selected: MultiSelect = False SelectionMode = FullRowSelect I need to fill up several textboxes and a picturebox with the information contained in the selected row. So far, I think I have to use the property SelectedRows of the DataGridView, but I haven't managed to have any success. Any ideas Thanks ICC If Not Me .DataGridView1.SelectedRows.Count = 0 Then 'There is only a selected row at index 0, when the grid is loaded, 'there is no selected row, you can force it to prevent 'error Dim i As String = Me .DataGridView1.SelectedRows(0 ...Show All

  • Windows Live Developer Forums Problem with PageDriving

    Hi, i have tested the page driving(to launch an url in the same window as the conversation window, e.g. encarta bot) and it works, but i dont know why, sometimes i call the function to launch an url, it says on the msn messenger: MSN Messenger is currently unable to start this program. Please try again later. and this happens a lot of times, other times i can launch it with no problems, what can be the problem it can be because is the demo bot, and when i pay for hosting and for msn this problem should persist thks erick You are using the Colloquis Buddyscript SDK and the sample that Francois provided right   Where do you live   Messenger displays that error when it cannot find the page that was requested. I h ...Show All

  • Visual C# Windows Service Install and verifying help

    Dear All, I am creating a windows service. So I have put my supposing code in the protected override void OnStart( string [] args). The problem now is how can I verify if my code is working or not because I tried to use MessageBox.show but is not available. So how to run my windows service base on interval of every 20 minutes. I dont how to go about installing it and testing it. Any help please. Thanks. InsallUtil doesn't have UI; It is a command-line executable. As for creating custom installer, read this... http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfSystemServiceProcessServiceInstallerClassTopic.asp   ...Show All

©2008 Software Development Network