TiKu's Q&A profile
Visual Studio Team System Nothing happens when pressing the Report Builder button.
When I press the Report Builder button on the report site homepage, nothing happens. I can see that IE is trying to open reportbuilder.application on a the report server, but I do not see any dialog requesting me to allow the application to run. When I log in on another PC with the same credentials I can create reports using Report Builder. These are the details I get when running the application directly from the server. PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Common Language Runtime : 2.0.50727.42 System.Deployment.dll : 2.0.50727.42 (RTM.050727-4200) mscorwks.dll : 2.0.50727.42 (RTM.050727-4200) dfdll.dll : 2.0.50727.42 (RTM.050727-4200) dfshim.dll : 2.0.50727.42 (RTM.050727-4200) SOURCES Deployment url : fi ...Show All
.NET Development Tracing to a file from a pooled webservice
I'm able to trace to a custom TraceFile created in and attached to Trace.Listeners in the Global.asax file Application_Start. This works fine on my development environment (WinXP/IIS5) on our production staging server (WIN2003/IIS6) I see that the Application_Start gets called multiple times when the ASP.NET application is pooled (pool size > 1). There for initializing fails (tracelog file already open). How can I trace reliable to a single file from a ASP.NET Webservice Hi, Check first if the trace is already registered, if (System.Diagnostics. Trace .Listeners[ "MyListener" ] == null ) { System.Diagnostics. TextWriterTraceListener t = new System.Diagnostics. TextWriterTrace ...Show All
.NET Development "|DataDirectory|" problem
Hello, I am relatively new to ASP so please forgive my ignorance. I am trying to figure out where to place the code to change the location of the |DataDirectory| setting. The problem is that when I run the web app from the development server the |dataDirectory| setting resolves properly to D:\Web\Survey\App_Data. However when the app is opened from IE the |DataDirectory| setting is resolved to D:\Web\App_Data. The app runs fine as long as I place the App_Data directory one level up within the \Web directory. I found the code to change the setting but I just don't know where to place it. Thanks for your help. Mark ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How make a DirectX app runs on Windows Forms (using C++)
Well, i'm making a simple directX application based on my studies on this book Introduction to 3D Game Programing with DirectX 9.0 , the problem it's how i make the scene created runs inside a windows form to be more clear, i'm trying to render my scene inside a form but don't know how call a specific function to do that. Another thing, the code i'm posting here create by itself a window and i know that to runs on windows form i'll need erase thoses line of code, 'cause that i needed know how do that using a windows form. I'm using native C++ language and the code of the program i trying to run is down below. Thanks for any help (i really need do that). xfile.cpp #include "d3dUtility.h" #include <fstream> #include ...Show All
Visual Studio Express Editions Passing Data Between Forms.
Okay, So I have read the various threads in this forum regarding Passing Data from one form to another form (and the various links from ahmedilyas) . Honestly, this is one subject that I have a HUGE problem wrapping my brain around...I guess b/c some of my questions have never been answered in away that I understand them....Ppl always go off topic when I ask.... So....I will attempt to ask what I want.... I want to pass data such as Integer Information from 1 form to another form. I already have the various forms created (1 -4). But i want to get at the data that is on the Form 1 in forms 2,3, and 4. Eventually, I will want to save all the data from all the forms to a Database....but I will work on that later Tall Dude suggest ...Show All
Visual Studio 2008 (Pre-release) DataTrigger, Value attribute != null?
Hello! I have a DataTrigger. The DataTrigger has a Value which determines when it triggers. It's easy to specify that it must trigger as the value of the Value property is null by Value = " {x:Null} ". Is it also possible to specify, that a trigger must trig when the value differs from null Best regards, Henrik Dahl Check out Bea Costa's June 27, 2006 blog entry - http://www.beacosta.com/ You can accomplish what you want by writing/using a converter. ...Show All
Software Development for Windows Vista Calling WCF service from within an activity (or Workflow runtime host)
I'd like to call a WCF service from within an activity. Before I embark on this, what are the restrictions / recommendations In the first instance I have a very specific WCF service that I want to communicate with and I need to wait until it has completed. The expense reporting sample would probably be a good place to start since it uses WCF: http://wf.netfx3.com/files/folders/sample_applications/entry4267.aspx -- Bryant ...Show All
Smart Device Development Releasing client (ASP.NET) resources after connecting to Winforms SAO
Hello all, I am having an issue with a Remoting application where the server is a VB.NET Winforms application and the clients are ASP.NET pages running on a CE.NET 5.0 mobile device - obviously IIS (v6.0) is the real client. IIS and Winform application run on the same server. The issue I have is related to a known bug in this KB article - http://support.microsoft.com/kb/922952 . When a page is often refreshed, IE on the mobile devices produces the error " Program memory is critically low. You must select one task to terminate (unsaved changes will be lost), or increase the amount of program memory, if available ". I have an ASPX page that refreshes every 10 seconds or so to display status data retrieve ...Show All
.NET Development Win Form Memory Usage
Dear All, I am running win form application based on C#. The problem here is that I notice something that once I exit my program and when I look at my task manager under the processes tab I can still find my application is in it. That means I have not actually exited my application or even closed it. What is the problem because I am worried is eating up memory Can somebody pls guide me on this. If you are running your program from the IDE, there will always be a YourAppName.vshost.exe program running. This is a 'shadow' EXE to assist the IDE debugger. The technical name is "Visual Studio hosting process". You only really have a problem if you see your program back in Task Manager if yo ...Show All
Visual FoxPro Caps lock ON when application activate
Can I trap the 'activate' of my app I want to turn on caps lock every time the user selects the VFP application. I don't want to do this at the start of the app because the user may minimize the app and then get back to it. Thx. That is an amazing amount of work for nothing. Your searches should be on UPPER() anyway, trying to force caps lock is simply poor design and coding. Set your code up properly by coding for this, it takes much less time to Code properly. You have wasted much more time waiting for an answer about the wrong way. ...Show All
Smart Device Development Pinging host from Device
Hello, I am trying to ping a host using the Opennetcf liabrary(2.0) from my device currently using VS 2005 CF 2.0 This always times out but if i use the IE from device it connects and works fine The code is as follows Dim pr As OpenNETCF.Net.NetworkInformation.PingReply Dim op As OpenNETCF.Net.NetworkInformation.Ping op = New OpenNETCF.Net.NetworkInformation.Ping pr = op.Send([Global].Service.PingUrl) If pr.Status = NetworkInformation.IPStatus.Success Then _isPinging = True 'Else _isPinging = False 'End If I am currently using Connection Manager of opennetcf just to figure out connection exist this gives me unknow status don't know why tried all possible options within the Con ...Show All
Microsoft ISV Community Center Forums Can't open regedit
Hai.... Why if I want open regedit (run>regedit), and then show message error like that The application failed to initialize properly (0xc0000005) Please anybody help me... Jebat Thanks I have exactly the same problem, do not know when it started. The information is not helpful. details: XP prof, version 2002, SP2. I can open the registry with an external tool: TuneUp Utilities. Help would be appreciated. ...Show All
Gadgets Windows Vs Web
I've seen many example about live.com gadget. I would like to know the most important differences between Web and Windows gadget in the source code. Thanks for help me! The most obvious difference is access to the System.Gadget namespace, which is documented on MSDN. This adds things like Flyouts and a Settings page. The Gadget Manifest is also slightly different. Apart from that, they're pretty identical. Most Live Gadgets can be converted to be Sidebar Gadgets, but not the other way around as most Sidebat Gadgets make use of the System.Gadget namespace. ...Show All
Windows Forms What control to use for dynamic display of tabular data??
Hi, Ive come from the HTML world where I can do a <table><tr><td>...</td></tr></table> for each table of data. This table can be anywhere from 1 to an unlimited amount of rows. I want to place a control on a form that will grow or shrink based on the amount of data rows. Should I use a tablelayoutpanel like I can do in HTML or a datagrid Basically, i want the "table" to grow based on the number of rows without ever displaying a scroll bar on the control. Any ideas Thanks thanks but is the repeater for asp code I would like the table be an actual windows application rather than an asp program. TIA ...Show All
.NET Development Correct version of .Net Framework
I was wondering if someone could help me figure out how to decide which version of .Net Framework to have installed on my computer. Right now I have installed version 1.1. When I run Windows update it shows me version 2.0 available to download. I want to know if I should download version 2.0 and if I do, should I unninstal version 1.1. The main reason for my question is because of a recent issue that I experienced with Media Center. According to the tech I had a conflict of .Net versions on my computer. Please reply with your suggestions. Thanks. well it depends which you wish to develop with. Both are correct versions, .NET 2.0 is newer and can only be used with VS2005 to develop with and t ...Show All
