mojoshaneman's Q&A profile
Architecture getting in to "serious" programming, help needed with ER modeling
Hi I have been a programmer for a long time and got a MSDN Universal / now visual studio professional with pro MSDN sub. I always used to just get straight on with programming and do what was needed, however not worked on anything that can be classed as a very big project. I am just starting to get in to needing to do big projects and ER modeling. I used to have Visual studio 2003 enterprise architect, and now have 2005 professional. I was wondering if doing this, did I take a step down because I can not find anything to do with modeling, and I am sure there used to be :S Any help here is appreciated. Thanks Hi, Visual Studio Team Edition for architects have all the related tools.. u ...Show All
SQL Server Image .BMP only shows on first page, place holder on the rest
I am printing a batch of Explanation of Benefits and the image only shows on the first page for each person. If they have additional pages all I get is the little red X. Thanks, Phil I wasn't clear on that from the initial post. It really depends on the report layout. From what you say I'm assuming that you have a list control that's grouped by person with page break option checked. In addition to that some users data spans multiple pages. What's confusing is that you mention that you get a red X (image place holder) but no image. Where is the image placed In the header, the body, a list control To my knowledge there are 2 things you can have repeated when paging: The overall report header The ...Show All
.NET Development WSE2127: Operation timed out
Hi, I'm using WSE 3.0 and I am getting a ' WSE2127: Operation timed out ' when I try to invoke several webservices simultaniously on seperate threads (not using the asyc methods generated by the web reference). This works fine when iis is running locallly, but when I run the web application using iis on a server I get an error when ever I trying to invoke more than 2 web services. Any help would be greatly appreciated. Thanks. Hi, im facing the same problem. I created multiple PROCESSES also but only works for about 20 instances or less, then i receive the timeout error. I need more than that 80 instances. how did you solve your problem . Thanks a lot. Alejandro. ...Show All
Visual Studio Trouble installing the December MSDN Library
I received the latest MSDN DVD distribution the other day. The package included the December 2006 version of the MSDN Subscriptions Library. When I try to install this updated version of the library my XP/SP2 system totally hangs trying to do something on/with the DVD. If I put the DVD in a system that does not have VS 2005 installed and does not have any previous version of the library installed I can read the DVD without any problems. My question is has anyone else seen this problem with the December library If so, have you found any workarounds other than to stay with the previous library version Thanks Neil Thanks for the reply. I'd really rather try to get an answer to what changed on the Library DVD that is causing DLA the is ...Show All
Community Chat Windows Vista Gaming Performance
I just read over on Neowin that gaming performance in Vista will be 10-15% slower in Vista. Can someone tell me whether or not this is true Thanks! - James Oh yeah, it is probably the RAM. I remember it takes 60% of 1Gig RAM without running anything else. But I have only tried Beta1 though. I haven't try my RC1 nor the games. ...Show All
Visual Studio Express Editions Virtual Variable
Hi All, I have these two class class Base { public int number = 1; public override String ToString(){ return number.ToString(); } } class Derived : Base { public new int number = 2; } static void Main(){ Base base = new Base(); Derived derived = new Derived(); Console.WriteLine(base.ToString()); Consolt.WriteLine(derived.ToString()); } I was expecting to print out: 1 2 but I am getting: 1 1 Is there a work around to achieve what I was intended to do Thank you, Riady Try it like this: public class Base { private int mNumber = 1; public virtual int number { get { return mNumber; } } public override string ToString() { return number.ToString(); } } public class Derived : Base { private int mNumber = 2; public over ...Show All
Visual C# VS 2005: "Key not valid for use in specified state"
Hi all- I'm running VS 2005 final release version. I have a solution with two projects in it; an ASP.NET website in C# and a VB project which is my data access layer. Yesterday, this code was working fine. I can compile and run the solution, and all the code works. But when I try to access or add a new datasource through the VS 2005 Data Sources Explorer, I get a popup which says: "An unexpected error has occurred. Error message: key not valid for use in specified state." This message pops up after I select database as the source of my new datasource. The wizard does NOT fail if I use a Web Service as my new datasource. Any ideas on what is happening, and how to clear up the problem ...Show All
Visual Studio Does ReportViewer run in Medium trust ?
Hi guys. Just wondering if this thing runs in Medium trust, haven't found anything about it anywhere on internet. If not , are there any workarounds Regards. ademar When are Microsoft (and Crystal Reports for that matter) going to realize that not all web-server environments grant ASP.NET apps full trust What is needed in a web reporting component is the ability to run in a medium trust environment, and xcopy deployment for when only FTP access to the server is available. ...Show All
SQL Server "Do not replicate DELETE statements" still replicates deletes to subscribers
I previously asked What does "Do not replicate DELETE statements" do to make sure I was correct on my thinking of what "Do not replicate DELETE statements" does. And after finding out it does what I would like it to do, create an archive db, I've tried several testing scenarios to see if it would work. So far I have been unable to not replicate delete statements. I'm not sure if I'm not setting a property right or what and any guidance would be appreciated. Here is what I've done. Created a blank db to be used as a subscriber and created a test db with some random data in a table. Setup a New Publication on the db with the random data as "Transactional Publication" Selected the following artic ...Show All
Visual C++ Unable to find MSVCR80.DLL, etc. on some machines?
After we install our application on some machines, the executable cannot run because it cannot find MSVCM80.DLL, MSVCP80.DLL, MSVCR80.DLL and sometimes MFC80U.DLL. Yet on other machines it works great. What is the difference between these 2 types of machines Our application uses .NET Framework 3.0, WPF, both native and mixed-mode C++DLLs and a C# DLL. The application has an embedded manifest file with the correct stuff in it (pointing at 8.0.50608.0). Our install installs .NET Framework 3.0 and the VC 2005 redistributable. If I look in C:\Windows\Winsxs I can see the x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_f75eb16c folder. And in the C:\Windows\Winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww-77c ...Show All
.NET Development .NET and C++ newbie Question, HELP Needed
HI, i have used visual studio 6.0 for a while (a while ago) i downloaded the visual studioC++ 2005 eedition recently, but couldnt install it(it doesnt even goe into the install process), i have bought the studio .NET (i have not installd it yet) and i was wondering will i be able to compile, debug, and run(create the exe's) if i would install it on my pc will i be able to imput visual C++ code into it and be able to work with the things that i have worked on in the past in visual C++ 6.0 I do apologize if this is the wrong spot for postng this questions, but i didnt know where else to post it. Thank You for all replies. Hi, I have VS 6 and VS .NET on the same machine, I have been running code on c++ .NET from my old C++ 6.0 com ...Show All
Windows Live Developer Forums GetCampaigns returns errors. Does Sandbox has a problem now?
Hi, Now we are receiving the errors at the time of get campaigns operations (and other gets) The URL is https://beta6.api.idss.msn.com/v2/CampaignManagement/CampaignManagement.asmx wsdl The Request is < xml version="1.0" encoding="UTF-8" ><SOAP-ENV:Envelope xmlns:SOAP-ENV=" http://schemas.xmlsoap.org/soap/envelope/ " xmlns:xsd=" http://www.w3.org/2001/XMLSchema " xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance " xmlns:SOAP-ENC=" http://schemas.xmlsoap.org/soap/encoding/ " xmlns:tns=" http://adcenter.msn.com/syncapis"><SOAP-ENV:Header><ApiUserAuthHeader xmlns=" http://adcenter.msn.com/syncapis "> <UserName>XXX< ...Show All
Visual Studio Debug | Start Without Debugging missing
Upgrading from VB 03 to VB 05, and one of the virtual labs says... "Select the Debug | Start Without Debugging menu command to run the application." There is no such option in my VS 2005 Professional, and I don't see how to add it. Please advise Bob Hi That's interesting. I haven't used this feature in VS 2005 before but I was convinced it existed but even in my Team Suite edition I can't see it. I have also looked in the Options section and don't see any mention of it. Maybe somebody else might be able to shed some light on that. Having said that however, if you hold down Ctrl and press F5 you will be able to start your application without debugging. I tested this by placing a breakpoint on a Form_Load r ...Show All
Visual Studio Team System MS Project file in Sharepoint marked as read-only
Hi, We are experiencing the same problem as this person (http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=8011&SiteID=1). Even though no one has the project file open, MS Project says that the file is in use and is locked for editing (but no specific person is named, like when someone really has the file open). This happens even when I am the only one editing a MS Project file. After X number of minutes, the file can be opened in read-write mode again. This bug makes it practically impossible for us to use Sharepoint as it makes us re-saving documents in other filenames to be able to save the files, which means we could as well use a file system to save our documents in. Now, my colleague has dug up a KB article (http://support.mi ...Show All
Visual Studio Team System Problems with extracting hidden form fields
1) Problems with extracting hidden fields After parameterising the requests, that were meant to extract the form hidden fields, the scripts threw errors. The test server wasn’t being picked up by the script. The following were displayed in the Web browser section of the results: Request failed: context parameter’ $HIDDEN2.BasketID’ not found in test context. 2) Has the service pack for fixing issues related to hidden fields been released Tester The beta for the service pack has been release at http://connect.microsoft.com/visualstudio Please try this out and see if it helps with your problems. ...Show All
