theManMyth's Q&A profile
Windows Forms How to check that particular file is running or not ?
Hello Friends, I have problem after excel export. I exprot the data in on excel file with file name MainData.xls. now this file is open and i take the excel export again. but it won't open the file again because the same name file is running. So i want to find that the file is running or not. if file is running then i will change&nb ...Show All
Windows Forms Looking for a non-MDI strategy
Are there any strategies for developing a .Net application where some of the user interfaces are broken into smaller peices and can be re-joined at runtime The purpose of this is so multiple developers can each work on a peice or section of the user interface without having to wait for someone else to finish. One idea we have is to use a tab control with multiple pages, but not sure about how to dynamically insert those pages into the tab control at runtime. Any ideas MDI is out of the question. Our usability testing has shown users really hate to "drill down" in MDI applications. What, you d ...Show All
Visual Studio Express Editions error help plz
howdy i am new to this and am doing the microsoft vb express tut i am on number 1 of the tut and i am following him along this is the first bit of code we write Messagebox.show("hello world") then he clicks start debugging up the top to look if it works then looks like a play button everything starts up for him then when i do it i get this error ''Error trying to run project: unable to start debugging the binding handle is invalid but then if i save it and go into that folder and open it it works but i dont want to have to keep saving it every time i wanna see if it works and go into the folder ...Show All
SQL Server Time interval in Data Source View
I am trying to rebuild the reports I made with BusinessObjects with Microsoft Reporting Services. In my Universe I made joins between my time dimension and fact tables based on two dates, BEGINDATE and ENDDATE. E.g.: dim_time.DATE BETWEEN fct_sales.BEGINDATE AND nvl(fct_sales.ENDDATE,'01-01-2999') But when I make joins in the Data Source view I can only make joins which says BEGINDATE = DATE in my time dimension. E.g.: dim_time.DATE = fct_sales_.BEGINDATE Is there no way to make the join like the join I made in BusinessObjects Maybe I should ask it differently: Is it poss ...Show All
.NET Development xsdobjectgen and multiple XSD files
Hi all I am working with some vendor provided XSD files, and using xsdobjectgen to generate classes to deserialize them. I started with one document type, an EDI 850 Purchase order. It created a very useful class that I employed. Now, I need to work with another document type altogether. When I generate this document, it creates another public class that conflicts with the first class completely. These two documents are unrelated, and somewhat fragmented so I don't want to plop them both in the same XSD. Does anyone know how this is best accomplished Thanks! -DMA Solved by generating into differe ...Show All
Windows Forms Visual Basic
Hi a newbie question for anyone who is into VB. Anyhow is VB available ffor Mac OS X Or at least is their an application that will make VB programs and files run... at least for database and all. Thanks. Not directly, there is a product called REALBasic for MAC that is similar to old VB. ...Show All
Visual C++ Problem with ntdll.dll and cl.exe
Hi, I have installed Microsoft Visual C++ Toolkit 2003 (Compiler Version 13.10.3077 for 80x86). When I try to compile with cl.exe, I get an entry point not found error for ntdll.dll (Version 5.1.2600.1106, I am using Windows XP Professional, SP1). If ignoring the error message, the compilation terminates correctly and the exe file works as expected. Therefore, my questions: Why do I get this error message How can I get rid of it Does this error affect the compilation result Thanks in advance for any hint. Regards, Stefan Make sure you are picking the ntdll.dll from the correct place. Place it ...Show All
Visual Studio Team System Visio 2005 unable to syncronize code changes
Hi all, i'm not sure if i'm on the right forum :) If not, please let me know I have a question. I've been wainting for Visio 2005 to help me modeling code. Well, it turns out that Visio 2005 can model code, you can define almost everything, and projects are generated with out much 'trash'. In the end we have a clean solution to work with. Ok, but what if I want to update the model in visio using the code that i've produced or, what if I want to update the code with the latest changes in the model, WITHOUT loosing the code changes Why can't I see in the Visio code editor the code I produced in VS (with or without intellisense ...Show All
Visual Studio VS.NET 2005 / CR Error
I created a very simple .rpt and accompanying .aspx, moved both files to my remote iis 6 server w/ .net 2.0, and attempted to run the report. Much to my dismay, I get the following error message: Parser Error Message: Could not load file or assembly 'CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified. After a good couple hours of research I am still thoroughly confused. What do I need to do to get the runtimes installed on my server to be able to view crystal reports I found this, which I assume is the runtime installer for x ...Show All
Visual Basic explicit conversion from object to array
Can someone give an example for explicitly converting an object to array ...Show All
.NET Development How to get system specs (processor, memory etc...) in C#?
Hello, I would like to know how to find the specs of the current running system such as the memory amount and processor speed in C# Mateusz I don't know if this will help, but it may be a place to start. Try looking for info on the functionality in the System.Management dll. I know this is how you get the processor ID: private string GetProcessorID() { string sCpuInfo = String.Empty; bool bSuccess = false; //*** Declare Management Class ManagementClass clsMgtClass = new ManagementClass( "Win32_Processor" ); ManagementObjectCollection colMgtObjCol = clsMgtClass.GetInstances(); ...Show All
Visual C++ msvcprtd.lib(MSVCP80D.dll) : error LNK2005
I am having problems to port our product from vc7.0 to vc2005: Linking... LINK : warning LNK4076: invalid incremental status file '..\..\..\bigworld\tools\worldeditor\BigBang-debug.ilk'; linking nonincrementally msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::allocator<unsigned short>::allocator<unsigned short>(void)" ( 0 $allocator@G@std@@QAE@XZ) already defined in edgizmo.lib(solid_shape_mesh.obj) msvcprtd.lib(MSVCP80D.dll) : error LNK2005: "public: __thiscall std::allocator<unsigned short>::allocator<unsigned short>(class std::allocator<unsigned shor ...Show All
SQL Server Passing parameter to a dts
I don't understand how to pass a parameter to a dts package from another. In SQL 2000 you can map a variable with a variable of the package you will call. How can I do this For example in the current package execution (package1) I have a variable1 = 5 and when some step complete I call package2 with the value of variable1 in variable2 of package2. I need help with this. Thanks in advance. Ah, no, not during design time. But, during execution time, yes. Tasks that attempt to validate with a reference to the variable will fail of course because they have not been given the parent's collection of variable ...Show All
Visual Studio third party tools
can third party tools be included both in full and express editions ...Show All
.NET Development Problem with web service that involve entity.
I have the following error when I call my web method which have entities as parameters or return value. What is wrong with my call I have no problem with web methods which don't have entities involved. All the related code are shown below: Thank a lot. Error System.ApplicationException: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> There was an error generating the XML document. ---> The type Entity.eWarehouse was not expected. Use the XmlInclude or SoapInclude attribute to specify types that are not known statically. at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadRespon ...Show All
