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

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

MarcelG

Member List

Gooom
Lemonsprig
John Tacke
Netliner
ColdPolarBear
ljw1611
Julien Ellie
Rajprit Arora
jmparks
Marcello1965
barry123
Shamez
Mike Whyte
zeeshan hirani
Srikar
ThirtySix Software
Samuelson Ido
Big--Ben
h hagar
jcvecka
Only Title

MarcelG's Q&A profile

  • Visual C# .ngen problem

    Anybody know what everything i need to do for regenerate managed .exe file to native .exe file Because i tried to convert some easy program (managed) with ngen.exe (fw1.1 and fw 2.0), and no one works. Why Help. Thanx Well you should still start the old executable, not directly run the one in the native image cache. The runtime will handle the rest. ...Show All

  • Smart Device Development Network Timeout 2005 VS Beta DE

    I successfully connect to the Internet using 2005 VS beta DE, however, if left idle, the DE appears to disconnect and can no longer navigate to different websites.  I poked around the registry and found the setting: hklm\comm\parms\allowsuspend set to 1 vs. the default listed on msdn as 0.  Should this setting be set to 0 to disable suspend   Is there any other reason why a connected DE might suspend/disable network connectivity   Thanks for the help Well, I have followed the instructions re: using a global saved state with no network, however, when resuming [using the saved-state (guid={C ...Show All

  • Visual Studio Team System Team Build - Security

    Hi, we would like to implement multiple team-build types, but only certain users must be allowed to execute certain team-builds. I have not found a way to ristrict which users may execute a specific team-build. Will this be an RTM feature - or must we use alternatives for all restricted Team-Build functionalities ie. a scenario would be deploying to a staging area - which causes different version-numbering to be applied. this may only be done my project-managers or team-leaders. TB would be perfect for it, but the rights-management is desperatly needed for it! ...Show All

  • Visual Studio 2008 (Pre-release) select in with many to many relationship

    I've an entity Profiles containing Tags with a many to many relationship. I want to return all profiles that contains at least a list of some tags e.g. all profiles containing tags with id=10 and tags with id=12 This is my method: public List < Profile > GetProfiles( List < int > tagIds) { List < Profile > profiles= new List < Profile >(); Query < Profile > q; q = from p in db.Profiles , t in db.ProfileTags where t.TagId==tagIds[0] select p; tagIds.Remove(tagIds[0]); int check; foreach ( Profile profile in q) { check=0; foreach ( int tagId ...Show All

  • Visual Basic How to add to the base class library?

    Suppose I have a simple class that I use so frequently that I don't want to have to add a referency to it for each new project, but wrather have it act as if it were part of the base class library. Is there a way to do this I realize that I could create a code snippet but I would wrather not have to see the code in my projects. Thanks, SteveJ You could create a new project, add the references you use most often, etc., and then save it in the templates folder, then load it whenever you make a new project ...Show All

  • SQL Server Export Schema and Data

    This is a totally newbie question, but... I've create a database, I'm able to script the schema to a query window, file, etc. I can't for the life of me find out how to export my data so that it is scripted into insert statements. The data is standardized lists of data I will be distributing with the DB. For those of you familiar with mySQL, this would be the output of the mysqldump command which dumps schema and data all into one file mysqldumb <db> -u user -p > mydatafile.txt thanks, -David You won't be able to export it to INSERT statements, but it can be exported to a flatfile ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Disable FSAA for some primitives each frame? (disable it temporarily)

    If I set my device to use 4x FSAA for example, can I temporarily disable it when rendering primitves or somehow make primitives that isn't affected by the FSAA I have a graphical user interface that render text and quads with point filtering, that way making it "pixel perfect". Much like blitting a sprite but I'm using triangles instead. However this method breaks miserably when I add antialiasing, since the pixel precision is lost and it looks horrible. I would like to render the GUI and text triangles without FSAA and terrain / player / whatever else with FSAA enabled... I'm using MDX if that matters. Any help / ideas are appreci ...Show All

  • Visual Studio Express Editions Running access sql code with VB

    Hi, I have some SQL code that used to run on an access file writing data from a table to another table. I need to run the same code on some computers without Access but with access mdb files and I thought VB Express Edition would be a good tool. The only thing the program needs to do is to execute the previous code when a button of it would be pressed, but I don't know how to do it, so I need your help! Thanks hi, yes you can do that but that will require other software to run on the computers to connect to the access database (i.e. odbc) imports system.data imports system.data.ole ...Show All

  • Visual Studio Express Editions can't install SQLServer2005express

    I tried to install VS 8 and get this error from SQLServer2005 express: Product : Microsoft SQL Server 2005 Express Edition Product Version : 9.1.2047.00 Install : Failed Log File : C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0001_._SQL.log Last Action : InstallFinalize Error String : Failure creating local group SQLServer2005SQLBrowserUser$.. Error Number : 29511 My OS windows xp prof. It was simple.I created local net work. (Network setup wizard.) Then added my account to Network Configuration Operators. That's it. And now I have ...Show All

  • SQL Server SSMS Express: Creating Parent-Child Table via LEFT OUTER JOIN - Error Message 156

    Hi all, I got an error message 156, when I executed the following code: ////--SQLQueryParent&Child.sql---//////// Use newDB GO ----Creating dbo.Person as a Parent Table---- CREATE TABLE dbo . Person ( PersonID int PRIMARY KEY NOT NULL, FirstName varchar ( 25 ) NOT NULL, LastName varchar ( 25 ) NOT NULL, City varchar ( 25 ) NOT NULL, State varchar ( 25 ) NOT NULL, Phone varchar ( 25 ) NOT NULL) INSERT dbo . Person ( PersonID , FirstName , LastName , City , State , Phone ) SELECT 1 , "George" , "Washington" , "Wash ...Show All

  • Visual Studio 2008 (Pre-release) AsyncCallback threw an exception

    I have created WIndows Service & deployed it on Win 2003 Server. This service just has Add/Multiply function. My WCF client is noramal WEB App. which is consumming this service the Service returns me the Result but after proxy.End MethodName ( IAsyncReslt ) gets executed it gives me the Error saying AsyncCallback threw an exception. Can anyone please help me on the same. Following is my Web Page Code. public partial class _Default : System.Web.UI. Page { NTServiceProxy p; protected void Button1_Click( object sender, EventArgs e) { PageAsyncTask task = new PageAsyncTask (BeginInvoke, EndInvoke, EndT ...Show All

  • Visual C++ error when using a mixed mode dll in a windows service

    under the dot net 2.0 framework I get the following error when i use a mixed mode dll with in a vb.net windows service. System.BadImageFormatException: Invalid access to memory location. (Exception from HRESULT: 0x800703E6). This dll works fine if used in a vb.net standalone application. Any ideas what may be the cause Hi, I had similar sittuation, the trick was to add the nonmanaged dll to the system PATH. The problem (if I recall cofrrectly) was that my managed dll was copied and executed from some cashed .NET location, not from the directory where I compiled it, so it was not able to find my nonmanage ...Show All

  • SQL Server Report Viewer control and ASPX

    I am trying to use the Report Viewer Control in an ASPX page but getting the following error "For security reasons DTD is prohibited in this XML document. To enable DTD processing set the ProhibitDtd property on XmlReaderSettings to false and pass the settings into XmlReader.Create method". This is with September CTP of SQL Server 2005. I am not trying to set any DTD, the same report works if displayed using the WinForm viewer control...so I am not sure why this is happening. is there any samples available for using the Report Web viewer control in an aspx page Thanks Krishna This happens, when y ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Page hits in DX

    Hey everyone I’ve been experiencing some severe framerate drops that seem to stem from DX. I built a real simple embedded profiler and started debugging the app to see where these “spikes” were coming from. I wrapped all DX calls within the profiler and sure enough I noticed right away that the spikes were originating from the DX calls. I started up DX Pix to see if that would tell me anything and sure enough I was seeing the drop in framerate in Pix as well, but I also noticed that the drop in framerate also correlated to an increase in page hits. Timing on these page hits seem to appear once every full second. The primary m ...Show All

  • Visual C# How can I store settings in the registry for the current user only?

    Hello, I think the title says it. Please help. ...Show All

©2008 Software Development Network