systech's Q&A profile
SQL Server two matrixes export to excel question
hi everyone I have two matrixes in a report the matrix headers visibility property are setted by hidden two matrix is on same row( ont left, one right) question is header visibility i set the header visibility true , the excel show is right but i set the header visibility false, the second matix is not right user property editor , we cannt set the row height with 0 but we can edit the report code set the row height with 0 so, I set the the visibility of header to true. then, set the header row height with 0. ...Show All
Visual Basic Question about instrumentation
They say we use instrumentation when the application is running to monitor the application. Whet does that mean in clear English. Do we send values of variables and specific messages to a log file ot to console or what do we send exactly and where. And where is the output of our values. Is it a og file. Where is it located and how do we specify that in code. thanks it means to monitor the performance of the application and to diagnose errors. You need things like performance counters, tracing and debugging amoungst other things here is a clear explanation about it and hope it helps: http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbcon/html/vbconIntroductionToInstrumentationTracing.asp ...Show All
Windows Live Developer Forums Error
I cant get windows live to work. I keep geting this error code:8004882c Anyone know what this error is Ok, I recieved the same error message when I downloaded the beta. Finaly got the sucker to work and here are all the steps/things I tried. #1 Enable "auto detect settings" in IE -> Tools -> Internet Options -> Connections -> Lan Options #2 Setup an Internet Connection in IE -> Tools -> Internet Options -> Connections -> Setup (Being that my router handes my DSL connection I just selected an always on connection with no signin... adjust as needed) #3 Reset my security options in IE -> Tools -> Internet Options -> Security -> Default Level (I also tried it on "Low ...Show All
Visual Studio 2008 (Pre-release) How to Load InfoPath Form into WPF Page
hi, i want to load an InfoPath form 2007 into my WPF Page. How can i do this TIA Jithendrian.R Hi John Thanks a lot. i was trying to load the form throgh the Window's constructor. now i tried in the loaded event of the window and i am able to load the InfoPath Form. Thanks Jithendrian. R ...Show All
Visual Studio Building conent and then moving it...
Hi there, I am very new to MSBuild and have been reading some samples and such. I got a somewhat working project file, but can't seem to find what I am doing wrong. Any help would be very appreciated. Below is my code .. < Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " > < UsingTask TaskName = " BuildContent " AssemblyName = " Microsoft.Xna.Framework.Content.Pipeline, Version=1.0.0.0, Culture=neutral, PublicKeyToken=6d5c3888ef60e27d " /> < PropertyGroup > < XnaInstall > C:\Program Files\Microsoft XNA\XNA Game Studio Express\v1.0\References\Windows\x86 </ XnaInstall > < ContentSourceDir ></ ContentSourceDir > < Con ...Show All
Windows Forms DataGridView and BindingNavigators
Hello, When I click the Add button on a BindingNavigator (bound to a BindingSource) I cannot get the DefaultValuesNeeded event of a DataGridView to populate a cell with a default value. Has anyone else encountered this issue before Is there a work-around Cheers, sfx1 Hi Ken, Thanks for your reply. Yes, when I click the AddNew button on the BindingNavigator the row is added to the DataGridView, but no default values are supplied to the cell. However, if I just click on the very last row (that is, a new row) of a DataGridView a default value is supplied. Is there a way to keep the BindingNavigator's functionality while inserting default values into a Grid Cheers, sfx1 ...Show All
SQL Server Simple Calendar Parameter question
This is probably pretty simple, but i've never done it before. Im trying to put a Calendar up for the parameter, So they can click a date on the calendar, and get it quiered. Is this done in the dataset or in the report Parameters and what do i need to do One thing I notice a lot of the time is sometimes modifications to the actual report designer do not propogate to the XML code behind the report. Right click your report and choose "View Code". Check out the XML especially the section that calls out your dataset and make sure the right parameters are there with the right data types.<br><br><a Great sql books: http://jhermiz.googlepages.com/sqlbooks Site: http:// ...Show All
Visual C# [otp] How to rewrite URLs like www.website.com/username to .aspx page
Hi all, How to rewrite URLs like www.website.com/username to .aspx page. When ever a user requests for www.website.com/username I have to first parse the URL get the UserName part of the URL ,authenticate ( database authentication and UserName is unique for each user)and fill the current contexts profile with this users info if authenticated and finally redirect to landing page of the site. I researched and found that this can be done by httpURLRewriter module. Can someone pls provide sample code and also let me know if any changes have to be done at IIS level. Thanks, Shilpa Hi, The right forum for this question would be http://forums.asp.net For y ...Show All
SQL Server changing viewing size when viewing report on report server
When the report is deployed to the report server, a user selects their report parameters, then clicks view report, the window in which the report displays is approximately 2x2 inches and the report is squeezed left-right into this 2 inch window. How and where do I change this setting so that when the users wish to view the report it it displays approximately 8.5x11 inches in accordance to how it was designed Thank you. ...Show All
Visual C# How Can I retrieve The real Ip
hello I have a problem .. my project like a Messenger and I want to register The real Ip Of my machine When I login The internet But I Use DsL !! How Can I retrieve The real Ip Not Virtual Ip Log into your Router and check the settings in there ....you will be able to retrieve your IP address from one of the options. ...Show All
Visual Studio Express Editions Listbox drag drop & reorder
Hi, I have 2 listboxes on my form. List1 is filled with alphasorted items from my access database. I need List2 to be filled with items dragged & dropped from List1 Users should be able to reorder List2 using dragdrop. I know this used to be a limitation in VB6. Can someone please point me to a .net/vb2005e solution for this I'm sure it will benefit others as well. Thanks ! Hi Ultrawhack, to solve your problem, you can use the following sample code: this example uses 2 listboxes on a form, Listbox1 and Listbox2, note that the property "AllowDrop" of Listbox2 is set to true.now use the following code to drag data from listbox1 and drop it in listbox2: Private Sub ...Show All
Visual Studio 2008 (Pre-release) 3-Layer Architecture DB Objects
I want to build a 3-Layer architecture based application. In the database layer I want to work with Linq on top of the MS SQL Server. In earlier projects I created my queries in the DB Objects like that: public void statementExecute() { string sSQL; bool bAND = false ; sSQL = "SELECT Person.* " ; sSQL = sSQL + " FROM Person " ; if (existWhereStatement()) { sSQL = sSQL + " WHERE " ; if ( this .PersonID != 0) { sSQL = sSQL + " Person.PersonID = " + this .PersonID.ToString() + " " ; bAND = true ; ...Show All
.NET Development Exception: DataTable internal index is corrupted: '5'. on ...
Hi, I have a problem with bindingsource component in framework 2.0. I have a combobox bound to a bindingsource which is also bound to a dataset with 2 related tables and a datagridview bound to the same bindingsource. What I want to do is : When the selectedindex property of my combobox changes, the corresponding cell value must be changed in the datagridview. But although the value in bindingsource changes, datagridview does not display the new value. That value is displayed after I move the mouse over that cell and make it invalidate its region manually. Another error I caught is the one that you can see as the subject of my post. I do not know why i have that message when I try to change the property of ((DataRowView)mybindi ...Show All
.NET Development NTDLL.DLL NtSuspendProcess Interop
Hello, i just do not seem to get the interop of the undocumented NtSuspendProcess right. Has anybody done this before and got it working I've tried tons of different variations of the declaration shown below but all of them throw a EntryPointNotFoundException: [DllImport("ntdll.dll",EntryPoint = "NTSuspendProcess", SetLastError = true, ExactSpelling = false)] private static extern long NTSuspendProcess(IntPtr processHandle); Any help is welcome! Thanks in advance, Peter Vrenken ...Show All
Visual C++ Exit Instance/Destructor not called
Hello, I am now thoroughly investigating a problem i ran into a few months ago. Basically we noticed that our ExitInstance derived function ISNT called in _DEBUG mode. I traced it back and also noted that the ~destructor isn't called for our CWinApp derived function either, and am currently assuming it is something in that the destructor calls ExitInstance, and as the ~desctructor isn't called ExitInstance isn't either. Weird thing is, in release mode all is well. Anyone got any ideas Thanks I don't understand what "Pop up messages" means. Assuming you are correct that "~destructor isn't called for our CWinApp derived function" then you must be doing something to cause that. The type of thing that could cause ...Show All
