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

Software Development Network >> Evan Mulawski's Q&A profile

Evan Mulawski

Member List

yjslash
GrindCrusher
Russ McDaniel
A.Carter
EWANAME
dreadjr
Scott Miers
Carl Bruneau
css29
No Progress
Ziation
DINESH CHAUDHARI
Bhavna_sharma
Chuck Cobb
Rohit Tela
Mile Petrov
Gurpreet_Sodhi_69db48
Opfer
Kamen
Igor24
Only Title

Evan Mulawski's Q&A profile

  • SQL Server Sql Express SP2 and Visual Studio 2005

    Will the SQL Express SP2 update the Installer package that comes with Visual Studio 2005 so that SQL Express SP2 is included with a ClickOnce or MSI based installer Including SP2 on Windows Update is a step in the right direction, but I (and I assume others) really hate the idea of burdening our users with the additional step of obtaining the SP2 update immediately after installing our application. This is especially cumbersome if they are using dial-up Internet connections which, unfortunately, many of our customers continue to use. Thanks, Travis No it won't, but I will be releasing a SQL Express SP2 Bootstrapper that you will be able to use with VS 2005. I expect this to be available within a cou ...Show All

  • Visual Basic FileNotFoundException error with pictures

    I a seem to be having a simple problem. In VB6 I had no problems loading pictures. when I converted the program to VB2005, it modified the code to frmDetails.Elm_Pict.Image = System.Drawing.Image.FromFile( "Pictures\h.jpg" ) which is giving me a FileNotFoundException error but the path is correct ! I would greatly appriciate any advice how to fix this simple error! Thanks, Campsoup1988 Sorry I didn't mean to suggest you couldn't use relative paths, you can certainly. The key is understanding where that exe is actually running from and making sure the image is in the correct path. If you're debugging the project it will be under the Build Output P ath which is found under the project proper ...Show All

  • Visual Studio Express Editions adding a arraylist in a datagridview

    what’s the fastest way of adding a row of values in a arraylist for example, if I have a arraylist arraylist arrayvalues = new arraylist(); arrayvalues.add("name1"); arrayvalues.add(3.56); how do I add this arraylist as a new row in a datagridview and how do I add it as a new column Solved my own problem: in: this.dataGridView1.Rows[counter].SetValues(curObj); the .SetValues("Column1", "Column2") and so on. ...Show All

  • Visual Studio Express Editions Updating Data, take 3...

    I am amazed at how difficult it has been trying to figure out how to update data. Please help me!!!!!!!!!!! Here is my attempt to update a data table with an update command: Dim oCon As New OleDb.OleDbConnection( My .Settings.FantasyConnectionString) Dim oCommand As New OleDb.OleDbCommand Dim oAdpt As New OleDbDataAdapter oCon.Open() If IsBench = False Then strSQL = "UPDATE Table1 SET Field1 = 1 WHERE ID = 1" oCommand = New OleDbCommand(strSQL, oCon) oAdpt = New OleDbDataAdapter(oCommand) oAdpt.UpdateCommand = oCommand oAdpt.Update( Me .DataSet1.Table1) dt = me.DataSet1.Table1 I put a break just after the last line up there to see if my changes were made ...Show All

  • SQL Server insufficient system memory

    Just wondering if anyone else has seen any memory issues with cross instance communication. Just this last week we moved from single instance to cross instance communication. I started up a process that will move 3,000,000 messages through service broker, but after a couple of hours the server tanks out and we get insufficient system memory errors in the sql error log. If no one else has seen or experienced this then I'll probably get a ticket opened to see what it may be. It's just that the change in our service broker network was the only change I was aware of on this instance. Regards. Can you confirm that is SSB who consumes the memory Run this query to see where the memory goes: select ...Show All

  • Visual C++ Why is base class destructor unresolved in Release mode (VS2005)

    Abstract base class, Foo, exists in library F Derived class (from Foo), Bar, exists in library B Module M uses Bar (but never Foo directly). Linking M to B satisfies all external references in Debug mode. In Release mode, however, linking of M complains that the reference to Foo’s destructor is unresolved. This seems inconvenient. It is caused by optimization because if you disable the optimization on M, there is no link problem. Can this behavior be justified Does anyone understand what sort of optimization is happening that causes this behavior Is there a way around this other than either disabling optimization or linking M to F (also setting M’s C++ Properties/Optimization/Whole Program Optimizat ...Show All

  • Windows Forms Shared Dataset

    Hi Friends. I’m Braziliam Develop and I'm New in Windows Form Program. My Question: I Have in FLogin a Dataset with name DsDbVendas and I need view the same dataset in FDLogin but I Don’t Know How I resolve this Big Problem. Sorry for my Bad English ! :( Sds, Marcos Nogueira ''' <summary> ''' As seen above in c# code, you can have a shared(static) dataset, ''' that you reference by class.variablename ''' If you programming this way, ''' then one good place to have you shared ds is in your main menu, ''' notice that each time all forms that will refer to ''' one same table will display the same values, and this is refreshed ''' in all forms on updates/inserts/delete., ''' usi ...Show All

  • SQL Server Help to a query

    Hi In acces i use this: [varebetegnelse] & " Med ordennummer:--" & [ordenummer] AS tekst Where [varebetegnelse] and [ordennummer] is column in my query How can i do this in a view in SQL Second also in acces i use a criteria based on a form like this WHERE (((kategori.katId)=[Forms]![samlekursus]![kategorinr])) How can i do this in a view in SQL I work from access cnoocted to SQL sever Regards alvin You will either have to do the filtering on the view (using the view as a mapped table and building a query in access on top of that) Select SomeColumns FROM Viewname WHERE (((kategori.katId)=[Forms]![samlekursus]![kategorinr])) Or use a parametrized query, passing the parameter to ...Show All

  • Visual Studio 2008 (Pre-release) How to debug a web method of a WCF service hosted in a windows service?

    Hello everybody I am hosting a WCF web service within a managed windows service. Now I'd like to debug some of my web service methods. But how can I achieve this I attached my hosting process (-> the windows service) to VS2005. This works so far - the debugger breaks for example in the stop method of the windows service. But when I call a web method from a 2nd VS2005 instance, which runs the webservice client application, the debugger does not stop within the web method - even Debugger.Launch() has no effect. What am I doing wrong Does the windows service starts a seperate process, when starting the web service Do I have to attach Visual Studio to another process than the hosting process Best wishes ...Show All

  • Visual C# foreach error?

    Hi.. i am developing a windows application using c#. i have two list boxes. If the user selects an item in the list box and clicks on the button, the selected item should be in the selected listbox. I tried this code, but i am getting an error. private void btnForwardOne_Click( object sender, EventArgs e) { if (lstAvailableGroups.SelectedItems.Count > 0) { lstSelectedGroups.Items.Clear(); foreach ( ListBox item in lstAvailableGroups.SelectedItem) { lstSelectedGroups.Items.Add(item.ToString()); } } } In the above code, i am getting error as: foreach statement cannot operate on variables of type 'object' because 'object' does not contain a public definition for 'GetEnumerator' . ...Show All

  • Visual Studio Team System MOSS 2007 - My Sites

    Hi, I have a ques. I have setup "My Site". I have several web applications and several site collections. My understanding is that the "My site" will pick up all my documents from all these differenet sites and show them to me in "My sites". Problem is I only see 3 documents in total (2 from my sites page and 1 from "records center"). It does not see my documents from the "document center" or "internal portal", etc. I have farm admin rights on the whole farm. I have also manually added myself to the "members" group of these sites. Under "sharepoint sites" it only show the records center, sites and my site but does not show these other sites (like document cen ...Show All

  • Visual Studio Team System Can "Show Project Portal" be redirected to another URL?

    I'm currently on-site with the second customer who has asked me this, so I'm asking the community: Is there a way to force the "Show Project Portal" right click menu to redirect to another URL This particular customer already has extensive Sharepoint portals in place for many of the projects they'll (hopefully) be importing into Team System. We'd like the "Show Project Portal" menu to redirect them to the existing Sharepoint site instead of the new, empty Sharepoint portal Team System creates. Seems easy enough, if there was a way to edit that URL.. is there Jeff, Does this not help http://msdn.microsoft.com/vstudio/teamsystem/reference/technotes/tfs/conf_for_remote_ss.aspx <HACK& ...Show All

  • Visual Studio Team System automatic bug creation

    I am currently running tests in Team suite edition for testers. Upon a test failure, is there any way to automatically generate a bug in TFS as opposed to right clicking the failed test and generating the bug that way Thanx Hello, We currently do not support that option. Tests can fail by several reasons, and sometimes it could be that something weird or external happened and made the test fail. If this was the case, then Visual Studio would automatically open many bugs for you, and they may not even be bugs. This was one of the causes that lead us not to go for the automatically-generated bugs feature. We do appreciate your feedback and will consider adding a switch to enable that in future ver ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. MAP loader problems with index buffer and backfaces

    Hello everyone, this is my first post on these forums.   I have been using XNA for quite a while now and I find it quite enjoyable to work with.   For the past few days I have been working on a MAP loader for half-life maps. I wrote code to process the map file, build entity lists, process the properties and build the brush vertices from the plane intersections.   Everything was going great until the point where I needed to turn my vertices into mesh data.   My plan was to build a vertex buffer and index buffer per brush, however this has caused many problems with faces not rendering correctly (I believe it is because some of my polygons may have the wrong winding, and if anyone knows of a way to fix ...Show All

  • Visual Studio Express Editions Making a static library to work across different solutions

    I’m trying to make a Solution that contains various functions and classes that I use regularly and compile it to a static lib file which could be then used in other projects and solutions. I got the example static lib project described in help working, but for that both the maker and user projects were in the same solution. He is the process I used to make it. Steps: Created a new console project in solution “Solution A” called LibMaker set as a static library set use no pre-compiled header create a new item called LibTest.h This class contained the code: void testFunction( int a, int b, double c); create a new item called LibTest.cpp This class contained the code: ...Show All

©2008 Software Development Network