heldchen's Q&A profile
Visual Studio Express Editions How to Create Simple Report as HTML ?
I don't have any report generator and i want to build it myself. My reports are very simple with few constants fields that i need to fill them after running some task and i wonder maybe to create a HTML document with const and desin tamplate and i will replace the relevant data in this document(text) and i will save it as temporary HTML file and show it with WebBrowser control as a HTML file . This action save me to deal ...Show All
Visual Basic How I can Start/Stop Sql Server 2005 Express Programatically??
How I can Start/Stop Sql Server 2005 Express Programatically form inside my Visual basic program Thank you all If you mean starting & stopping the SQL Server Express service, you should add a reference to System.ServiceProcess.dll and do the following Dim controller as New System.ServiceProcess.ServiceController("MSSQL$SQLEXPRESS") 'stop the service controller.Stop() ...Show All
Software Development for Windows Vista Conflict DirectShow/DirectX Issue with SampleGrabber: Qedit.h gives errors in d3drm.h and D3DRMOBJ.h
The goal of my program project is to capture bitmaps from a stream and display them in directx. I have finished the video streaming portion with directshow. Even though I have implmented the SampleGrabber I'm still not sure on how to handle the bitmap information. I have a seperate application where it displays a bitmap from a file using DirectX 9. I recently tried to comebine the two applications. The problem is that if I include Qedit.h the ...Show All
Smart Device Development My Pocket PC IE browser does not read XML files!!!!
Hi all, When I uploaded an XML file from my PC to my Pocket PC and tried to open the file with the pocket pc IE explorer, it gives me a blank page, and doesn't show me the contents of the XML file, is there any known issue that I don't know regarding this problem Thanks in advance.. MEDO:where can I find the registry editor of Windows Mobile 2003 You need a 3rd party tool... http://www.kilmist.com/ppcRegistryEd ...Show All
Visual J# Warning - don't use ReSharper
Hi; If you have done much development in C# you probably have ReSharper and it is a tremendous help. But when it get's in J# it slows the system down a LOT and it gets all confused with intellisense. I ended up removing it. Hi David, By any chance have you reported this issue to ReSharper guys Did they suggested you to uninstall it I am just curious to know if the root cause is J# or ReSharper Thanks. ...Show All
Visual Basic System.Net.Mailmessage Namespace
My question is that I cannot access namespace for System.Net.Mailmessage. When I type in the Imports command for the name space it gets to "System.Net." and does not show the Mailmessage part. Does anyone know why it does not I have the Framework 2.0 installed. Is there something else that needs to be installed through Windows or something Any help would be greatly appreciated. Thank you. spotty wrote: I'd check the re ...Show All
Visual Studio 2008 (Pre-release) Dependency Property
I have created a dependency property on a custom control (MarkControl) public static readonly DependencyProperty LatitudeProperty = DependencyProperty .Register( "Latitude" , typeof ( int ), typeof ( MarkControl ), new PropertyMetadata (0)); and a CLR property [ BindableAttribute ( true )] public int Latitude { get { return ( int )GetValue(LatitudeProperty); } set { SetValue(LatitudeProperty, valu ...Show All
Visual Studio Integrated Security
Is there a way to use Integrated Security when displaying a Crystal Report from within a .NET application I'm currently using the below code, but would prefer to not hardcode a username/password into the application. Thanks for your help. sean 'Setup the connection information structure to be used 'to log onto the datasource for the report. crConnectionInfo = New ConnectionInfo With crConnectionInfo .ServerName = "s ...Show All
Windows Forms windows form stops responding during non-infinite loop
Hi,I have a windows form that sends out a monthly opt in newsletter email to all of our community members. The problem is that the list is large, and every time I run the program it sits there appearing to be frozen. I have to watch the program under task manager and watch its resources to see if its running, and checking the queue mail folder for emails. This obviously is not a great way to run the program.In my code I loop thru a sqldatareader ...Show All
Visual Studio Team System Error 28925. TFServerStatusValidator:Calling the Team Foundation Server ServerStatus Web service failed.
I followed the .chm file to the letter installing Team Foundation Server RC on Windows Server 2003 Standard Edition using Domain user accounts specified and running all the windows updates and installing all the patches. But I get this error. Error 28925. TFServerStatusValidator:Calling the Team Foundation Server ServerStatus Web service failed. I had two warnings come up about memory requirements before installing but that was all. I'm running ...Show All
Windows Forms Can suddenly not close forms...
This is a pretty bad situation :-) I am putting togehter parts of an editor that is transposed from .NET 1.1, and when putting the parts together I get a very bad sitaution. I can not close forms. The indication is this: In the Closing event handler that I add ON the form, the closing bool indiacator used to abort the close is already set. The form contains one MDI form and on this MDI form there are two user controls. On the two panels where ar ...Show All
Visual C# Running C# with Crystal
Hi, I need to run a C# application that use crystal reports, but it says that Assemblies is missing Do I need to install something in the server, I have copied the crystal dlls but it does not open the report... Thanks Bruno hi the re, If you are using vs.net, crystal reports component is included in the package of vs.net. Please essure that you include the crystal reports during installation. If y ...Show All
SQL Server Direct access to MSDE tables without providers
Hi, How can get direct access to MSDE tables without providers Thank's Alexei You need a data access provider for accessing the database. HTH, Jens Suessmeyer. ...Show All
Windows Forms Super simple question about adding a row to a DataGridView
Howdy folks, I just recently started playing with the DataGridView and love how superior it is to VS2003's DataGrid. I have a question that sounds so simple, yet I can't figure out the solution. I have an unbound DataGridView and add the columns dynamically via code when the application is launched (columns were not created in the designer). Now I want to start adding rows to the grid, but I'd like to be able to create them withou ...Show All
SQL Server calculate maximum value of childrecords in a trigger?
I have a parent record en some child records. Let's say the child records have a field with a value in the range 1-9 Now I want to find the maximum value in the child records. When I have that value, I want to write this value in a field in the parent record. 1) Should I do this in a (update) trigger 2) How do you write such a trigger in sql-express thanks Klaas Netherlands something like: CREATE T ...Show All
