PublicError's Q&A profile
SQL Server surface area configuration
Hi, we are having a strange problem when trying to configure the surface area of my sql server 2005. When we open the tool the only nodes that appears are: Reporting Services and Integration Services. But the Database Engine node is not showing. What do we have to do to access the Database Engine node and configure Remote Connection. Any help would be extremely appreciated... I got my hosting provider to re-install SQL Server. That fixed the problem. For whatever reason, their default drive image didn't work right. Once the install completed I was able to get into SA Config and enable remote connections. Hopefully, anyone else having this problem can re-install MSSQL with similar success. ...Show All
Visual Basic Sort with gridview
Hello, I have been trying to get this to work now for 2 days and I must be missing something cause I don’t think it should be this hard. I have a gridview that I fill without using a datasourceid. All I want to do is be able to sort the columns however the user wants to. I have been able to find C code that helps but no examples with VB. I have got as far as being able to get to the sub gridView_Sorting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewSortEventArgs) but cant get past this point. Can anyone please give me a hint or send me to a good example on the web. Thanks Hi, How do you add the data to the grid manually Is the data in some sort of array that can be sorted If y ...Show All
Visual C++ Corrupt Builds After Cancel
Our team has a ~50 project solution with a few dlls, lots of libs, and three executables. If I do a build solution, and at any point during the build hit Control-C to cancel it, whatever is being built at the time I hit the button is now corrupt. It looks like it leaves the partially created .obj, .exe, or .dll around and doesn't detect that it only got halfway through. Is this a common symptom Is there some known fix (MSDN and google searches didn't turn up any hits) Our projects and solution are all converted from 2003, if that's any help. Thanks for any info, Chris Jurney Senior Programmer Relic Entertainment http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=101331 Closed ...Show All
Visual Studio Tools for Office Convert word doc to pdf
Hi, I need to convert word document to pdf file using C#.2 Iam having MS visual studio 2005 professional (and also MS VS.2003 enterprise ed) MS Office 2007 I have downloaded SaveAsPDFandXPS (used to convert doc to pdf) Microsoft Visual Studio 2005 Tools for Office Second Edition Runtime (VSTO 2005 SE) My question is Do i need "MS visual studio 2005 for office tools" version to work with ms word, so that i can convert word to pdf. If you're targeting Office 2003, then make sure the documents are saved in Word 2003 XML file format. You can then transform the result to the PDF XML format. There are already third-party solutions available; searching the Internet should turn them ...Show All
.NET Development pass argument to the Thread
hello Everybody I want to pass argument to the Thread Currently i m having the code like this createthread() { this._WatchThread=new Thread(new ThreadStart(RunWatch)); this._WatchThread.Start(); } private void RunWatch() This works fine, but i m not able to pass the parameter I want to pass the this parameter i.e. the whole class. Thank you in advance As david Said, Please see this example: Thread someThread = new Thread(new ParameterizedThreadStart(SomeMethod)); SomeClass someObject = new SomeClass(); someThread.Start(someObject); private void SomeMethod(SomeClass someObject) { // Do work with someObject here } I hope this will work like a Charm! Best Regard, Rizwan ...Show All
Visual Studio 2008 (Pre-release) Can't see System.ServiceModel in Add Reference
Hi: I've just installed the July CTP of .Net 3.0 and its accompanying SDK. However, when I attempt to Add a reference to System.ServiceModel to a project in VS2005, I do not see System.ServiceModel listed on the .Net tab of the Add Reference dialog. However, the System.ServiceModel is in the GAC. This is happening on 2 machines. Anyone have any idea as to what may be going on here Thanks Lionel Madhu: Unfortunately, following these instructions caused a few problems - that seemed to show up after I had done the latest Microsoft Update. The 2 problems that showed up were: a. On attempting to view the design properties in VS for any control, a dialog pops up saying something like: "Package 'Presentat ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Use of professional 3d Game Engines with XNA - Port
hi there, I got some questions about the compatibility of the XNA Framework with 3d or game Engines. By now where are a Team of 7 Student of the Games Academy in Berlin producing our game with the trinigy Vision Engine and the Standard Visual Studio 03. -> www.project-barcode.com My main questions is if its possible to combine the trinigy vision engine and the XNA Framework/ studio Our Programmers got experiece with c# but are not used to create games on it. Whats the overall state of campatibility with engines and the XNA Framework Or is there by now just a support for the Torque X Engine the trinigiy Vison 6.0 is a fully Dirext X engine coded in C++. Would it be possible to correct our ...Show All
Visual C# count number of files in c#
hi all i am trying to find a way to count the number of files in a particular folder. i have done the same very easily in visual basic 6 but as i am creating a similar application in c# i am stuck up with this.. can anyone please help me with a code snippet or provide me some kind of assistance.. thank you. it would be really greatful if someone helps me ...Show All
Visual Studio Tools for Office 2 OWC with HTTP Connection in 1 ASP page, Session reset
I having a webpage which hold 2(or more) owc11 pivot table. Becuase it is an internet access project, so I use HTTP Connection for the owc to connect with the Analaysis Server. When I load this asp page, the web session will be reset/destroy, and I have to go to the login screen again. Any solution or workaround for this issue I'm afraid you're in the wrong forum :-) This forum concentrates on the VSTO technology, which doesn't cover OWC, controls or web pages. You might try in the OWC newsgroup . ...Show All
.NET Development Automation Error Raised by VB6 App on a .NET component ever since installing .NET 2.0 Framework
I noticed that a VB 6 app is no longer able to properly call a .NET component exposed with a COM interface that was compile via Visual Studio 2005, it raises an Automation error . Setting the application configuration file to point to the .NET framework v2.0.50727 does not help the situation. However, when the .NET component is compiled via Visual Studio 2003 it works provided I have the infamous application configuration for the VB6 app set to: < xml version ="1.0" > <configuration> <startup> <requiredRuntime version="v1.1.4322"/> <supportedRuntime version="v1.1.4322 ...Show All
Audio and Video Development Taking Screen Snapshots
Is anyone aware of a way to take screen captures of the video and save those to the player storage for later viewing Real code I stole from my boss, the playlist has a scheduled event when the capture is required: application.addEventListener( "scheduled_event", OnScheduledEvent, false ); function VideoMainCaptureCallback(i,uri) { Player.playlist.play(); } function PlayerVideoMainCapture(filename) { try { Player.video.main.capture(filename,VideoMainCaptureCallback); } catch (ex) { DebugOutput("PlayerVideoMainCapture(" + filename + ") Exception: " + ex.message); } } function OnScheduledEvent(evt) { if (evt.id == 'Five') { Player.playlist.pause(); PlayerVideoM ...Show All
Windows Forms Bitmap Images
Hi there! I am making images out of data arrays, and then displaying them in a form inside a picture box. The thing is, the display seems to be interpolating between pixel values in order to smooth out the image, to make it look better I guess. But I actually want a purely pixelated image, so that each pixel looks like a square block of a single colour (gray scale actually). I havent been able to find any setting or methods in the bitmap class to change the interpolation method, so if anyone can help me out that'd be great! Thanks a lot Joe Unfortunately I've done some tests with using Graphics to draw to a panel control and I get the same issues as a picturebox. But I must be missing something. You ha ...Show All
Game Technologies: DirectX, XNA, XACT, etc. importing files from other programs ex: 3ds max
will i be able to import animated scenes and renders of characters from maya, 3ds max or other 3d modling programs to xna angel1 wrote: will i be able to import animated scenes and renders of characters from maya, 3ds max or other 3d modling programs to xna I need clarification. What do you mean by renders Images Presumably those are just Texture2D's. As to the animated scenes... I'm not exactly how a whole scene would be used in a game. Individual models I can understand, but whole scenes ...Show All
SQL Server SP2 Copy Database Wizard better, but still problems
I installed SP2 today and started transfer databases from our old production server with SQL 2000. The Wizard is much better now when using SMO Online transfer and I succeefully transferred several databases. But I now have three databases with a strange error: Here is one error when I try to copy the database OEWRegister. It seems like all objects are transferred and it fails in the end with: OnError,JABBA,VD-ISP-NET\SQLServer,QUI-GON_JABBA_Transfer Objects Task,{FD7EE38E-70E0-4D01-8E4E-9CC1D44BA7B4},{19F9A272-F90C-446D-BF0E-EA333D06ACD3},2/21/2007 9:06:15 PM,2/21/2007 9:06:15 PM,0,0x,ERROR : errorCode=-1073548784 description=Executing the query "IF EXISTS (SELECT name FROM sys.databases WHERE name = N'OEWRegister') DROP DATABASE ...Show All
SQL Server transactional replication newbie, badly need help!
hi there! i am a newbie with replication. i am trying to implement one, however due to lack of references, there are some difficulties. here are some of my questions, i am hoping anybody could take their time to help me out in details. Thanks and appreciate it! (1) i could not publish all tables. tables that do not have primary keys are not included, and i need to publish all tables. (2) tables that i sucessfully published does not replicate the table's primary keys, relationships and triggers, how do i update the subsciber (3) for some reason, i could not replicate schema objects - views, UDFs, stored procedures. its giving me an error. Please advise. Again, thank you so much! thanks Gre ...Show All
