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

Software Development Network >> John Kozlowski's Q&A profile

John Kozlowski

Member List

Keehan
Pr0fess0rX
spregula
Albert Valls Rovira
Chris Zamanillo
Brian Fitzgerald
david22
Rigo Castillo
TempusTI
PugJ
azarc
EvanHennis
dsoto
kbe
Burtraskkutaren
swordman
gladelu
wael78
MLR
gjhdigital
Only Title

John Kozlowski's Q&A profile

  • Visual Studio Team System Problem when changing status from active to closed

    Hi, We have Agile based team project which contains the bug.xml file from CMMI process template (Beta 3). When opening a bug, and changing the bug status from active to closed (in all other cases work fine), we get an error message: "tf20012 field 'closed date' cannot be empty" "tf20012 field 'closed by' cannot be empty". What is the problem Thanks, Michael Would you mind providing a link or email the entire bug.xml file. There can be other parts that could be affecting the ClosedBy transition settings etc. ...Show All

  • .NET Development Close() and streams/readers

    Hi, After creating a chain of  a stream within a buffered stream within a reader (or writer), must I call each object's Close()  What I want is for the stream to 'live on' and be wrapped by a different reader later, but I'm afraid that in not performing some sort of specific cleanup on the reader, that it will not be collected (or cause an unmanaged resource leak). When trying to Close() the reader/writer, I found that it also closes the underlying stream causing an exception to be thrown the way I'm currently doing it. The MSDN lib Docs are rather scarce on exactly how each of the disposable's, closable's do their inter ...Show All

  • Visual Basic Website error

    Not sure if this forum is the proper place for this question, but I have a new server, which 2.0 beta framework was just installed (2.0.40607.42).  From VS 2005, I created an ASP website on the server in VB. Other than putting "Hello World" in the body of the default page, I changed nothing, and when I brought up the page, I received the following error:   Parser Error Message: Could not load type '_Default'. After removing the Imports="_Default", I then received the error:   Parser Error Message: Error parsing attribute 'codefile': Type 'System.Web.UI.Page' does not have a public property named 'codefile'. I then changed ...Show All

  • Visual Studio Tools for Office Preventing Folder Sync in Outlook

    I am writing an add-in with VSTO 2005. In the add-in, I spin up some folders that hold some 'views' for user ease of understanding. My issue is how to prevent those folders from sync'ing back to Exchange and on to other machines. I looked at InAppFolderSyncObject and set that but the sync still occurs. Am I missing something Hi, I would suggest that you post this query to the Outlook Programming Discussion group, you might be able to get a quick and effective response: http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.office.developer.outlook.vba&lang=en&cr=US Tha ...Show All

  • Visual Studio Express Editions data type from datagridview

    I have a datagridview bound to an Acess DB. I want to set the values from the datagrid into a textbox and assign them to an integer variable. Whatever I try I get the message that the datagrid cannot be converted into the necessary datatype (string or integer) Help or please point me to a source. Private Sub PictureBox1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles pic.Click 'Draw line on picturebox 'Put a picturebox on the form named pic Dim bit As Bitmap = New Bitmap(pic.Width, pic.Height) Dim h As Integer Dim w As Integer Dim g As Graphics = Gra ...Show All

  • SQL Server The connection manager 'OLEDB' is not properly installed on this computer

    Please help someone from MSFT! I've just finished installing the Sep CTP on my laptop.  I previously had the April CTP and June CTP.  I followed the instructions for removing a previous installation of SQL 2005. Now, when I try to create an SSIS package, I get a message that says: TITLE: Microsoft Visual Studio ------------------------------ The new connection manager could not be created. ------------------------------ ADDITIONAL INFORMATION: The connection manager 'OLEDB' is not properly installed on this computer. (Microsoft.DataTransformationServices.Design) For help, click: http://go.microsoft.com/fwlink ProdName=Microsoft ...Show All

  • SQL Server Unable to add user to a role

    I'm having dificulty trying to add a user to a role in SSAS. I am operating in a development enviornment with two servers, 1) a domain/file/print server running Windows Server 2003 and 2) my SSAS server running on my laptop with Windows XP Professional. When I try to add a user to a role it seems that I am only able to add users which have local logons to my laptop. That is the only location listed when trying to browse the users. Is there any way to add a user from my Windows Server 2003 domain i.e. domain\username Every time I try this it doesn't allow me to continue. I'd appreciate any ideas. I'm not much of a network/secuity person s ...Show All

  • SQL Server Merge replication with dynamic filter

    Brand new to SQL Server 2005 and replication, I was able to use online books info to get a replication topology set up (using wizards) and successfully replicate an article (a single table) to a SQL Server Express database. I then cleared the subscription table and added a simple dynamic filter (colx = SUSER_SNAME()), which I can't get to work. Based on what I read, I'm thinking that SUSER_SNAME() is not returning the proper value because the merge agent is set to connect to the publisher and distributor by 'impersonating the process account'. This is on the subscription merge agent security form. However, 'using a SQL Server login' is gr ...Show All

  • Visual C# Saved Data

    Ok. I have a problem. Basically I would know how to save data. I have 2 forms. The first form is where the main program begins. The second form has a textbox. If I put something in the textbox, I want the information to be saved even after I close the form. Can someone tell me how to do this. cwi wrote: Hi paul, I have a question regarding saving data to the registry. How do you do that Do you have any source code that does this function I am looking to storing a password for an application in the registry. I know that this is not advisable as anybody can change it. However, i cannot think of any where else to store thi ...Show All

  • Visual Basic ListView doesn't refresh list when called again after variables change ?

    I am using the code below to display a list of values using ListView, this works fine when this is called for the first time but then after the values of the variables have changed I have then called this code again but I just shows the same values. Any ideas Thanks again for your help For lp = 1 To 20 'Set the List to Detail View ListView1.View = View.Details 'Create ListViewItem Dim itmp As New Windows.Forms.ListViewItem(Number(lp)) 'Create SubItem 1 Dim itms1 As New Windows.Forms.ListViewItem.ListViewSubItem _ (itmp, Colour(lp)) 'Create SubItem 2 Dim itms2 As New Windows ...Show All

  • Visual Basic Using ContextMenus with AxHost'ed ActiveX Controls

    I am upgrading from VB6 to VB.NET. I place a third-party ActiveX control on a VB.NET form. I cannot set a ContextMenu for the control because AxHost does not support it.  (I can set the property in the start-up code but nothing happens when I right-click.) Instead, I handle the MouseDownEvent for the control and call myContextMenu.Show(controlname, point). The context menu pops up as expected. When I move the mouse up and down the list of items on the menu, I get myContextMenu.Select events. When I click on a menu item, however, I do not get a myContextMenu.Click event. This technique works fine for .NET controls. Can anyone help ...Show All

  • Visual Studio Crystal XI Release 2 on vs2005

    I have installed Crystal XI Release 2 on my dev machine .it works fine before install Release 2   but when I installed Release 2 and run it on the server the Report Viewer displays  the report it displays: load Report Failed Error: Object reference not set to an instance of an object Any Ideas I had the same problem, I just un-installed and re-installed CrystalReports11_5_NET_2005.msi Regards Pete ...Show All

  • Visual Studio Tools for Office Full trust is there : Still not working : VSTO, WSE 3.0 Permission / Security error

    I'm using VS 2005 RC1, VSTO with Excel, and WSE 3.0 Oct CTP.  I've encountered permission when I tried to instantiate the wizard-created classes (the Wse class).  The exception is found to be a permission issue on the get configuration section of WSE. The error was the "An error occurred creating the configuration section handler for microsoft.web.services3: That assembly does not allow partially trusted callers." How do I grant the WSE permission   I tried using CAS policy to give to the WSE .dll full trust, but it still is giving the same error.  What can I do next More error details as follows:  Message="WSE032: ...Show All

  • Visual Studio Express Editions demo projects

    Hi, I installed VC++ Express yesterday (including the platform SDK) and (I believe) succesully made all the changes to built native applications rather then .Net. I can't find any demo projects in the installed folders. Are there any If not, someone knows where I can download these Thanks! Look here for lots of C++ samples to play with. ...Show All

  • Visual Basic click once updates exe but miss dll

    My application includes one exe file and 3 dll files, I am using click once to publish update. I have seen a problem, exe file gets updated but not dll files. What could cause the problem Thanks Sorry, there is no such problem. My bad. I wish I can delete the post. Thanks for the explaination of how it works, I will do more investigation on my problem, It is not very straightforward to find where the dll is stored on workstations when you do click once installation. And I am not very sure about missing update now. Will get back to this thread after I find what happened exactly. ...Show All

©2008 Software Development Network