AlGor456's Q&A profile
SQL Server Add space between matrix row group
I have a 2 row groups in a matrix and I need to add some space between the top one so that all the columns don't run together. Is there a way to do this ELA Math Below Basic Basic Proficient Advanced Below Basic Basic Proficient Advanced 17% 46% 37% 1% 14% 36% 30% 20% 9% 57% 30% 4% 22% 49% 16% 13% 16% 36% 44% 4% 13% 39% 22% 26% See the space I've added between ELA and Math sections Thats what I want. ...Show All
Visual C# question marks in parameter list
I have a Fill Method and when i mouse over it the parameter list reads int, bool, string....this means nullable right How do i pass values to nullable types....when i pass it 12, false "hello"....It tells me that the arguments i have specified are are invalid for this method any help with this..... Hi, Tryin If you just pass params to it, regard this method as public int Fill( ETFreightDataSet1 . LegRateConfimationReportDataTable dataTable, int StopID, bool IsShipper, int OrderID, int CustomerID, bool IsPrimaryContact) It's quite easy to understand. :-) PS Since the Fill method is a virtual one, don't forget to implement it before using it. ...Show All
Visual C++ calling a non-member function from another assembly
When I want to use a class from another assembly, I just need to make sure the assembly is referenced and the class is public and voila, everything works without even a #include of the class header. However, I can't see any of the non-class-member functions in the other assembly. Is there any way to declare a non-class-member function as "public" so it is visible outside the assembly I tried to #include the header for the function I want to call, but then I get a C2011 error for class type redefinition because that header includes the header for one of the public classes. Here's what I'd like to do in pseudocode: Assembly #1 File0.h public ref class Foo { }; File0.cpp (implementation of Foo) File1.h #include " ...Show All
Windows Forms MSI..
Hi! I'm using .NET Framework 1.1 (VS 2003) and I'm having trouble when I generate MSI packs for my Web Projects. When the machine has more than one IIS Site, the installer installs the application on the last site in the IIS Manager list. I want to the users who are installing my application to select which IIS Site the application will be installed in. I've searched Internet and I found a lot of information, but I can't implement what I was thinking in the beginning... I want to have a dialog after welcome screen in which the user will choice between the currently IIS sites in the machine. Then, my Web App will be installed in this selected site.. I want an example that implement it (or the most seemed), because I didn't obtain to do this ...Show All
Smart Device Development Pause Aplication
I want to pause my application in specific precedure for couple of seconds but I dont want to use System.Threading.Thread.Sleep coz I want all buttons to work during pause. I was thinking about using Timer that counts down but have some problems with implementation i posted here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=711772&SiteID=1&mode=1 I also thought I could use it in a separate thread but also have problems to do so coz the method is run via delegate. Sorry if someone will feels this thread is spam but I wanted to poste something more general and I open for sugestions how to do it. I stuck with this porblem for 2 days now and realy have to move one the program. And maybe it sounds lame but plz help. ...Show All
Internet Explorer Development running an hta from another hta
Hi, I have two HTAs. One that is run automatically and the other that should be opened by clicking a link in the first HTA. When I put it a regular link (<a href...) it notifies on a security issue. To workaround this issue I did the following: 1. Created a Wshell script that will run the hta. Sub OpenHTA(link) set wshell=createobject("Wscript.shell") wshell.run("mshta.exe " & link) End Sub 2. In the link i created an Onclick event handler that calls the subroutine I created above. Unforyunately, it creates an mshta.exe process but the hta itself does not display. Any idea how to resolve this By the way, I did the same thing to run a .chm file and it works fine. ...Show All
Software Development for Windows Vista Screen capture win32 api can be blocked
Can we block the win32 API screen capture in any programming language i.e "gdi32.dll" provide the facility to capture the screen. i want ot disable the screen capture by any tool. saqib This forum is for questions about Window Workflow Foundation, not win32 apis or gdi32.dll. Try going here to find a better forum to ask your question. ...Show All
Windows Forms updating ListView from another Form
I am trying to update a ListView on frmNewCustomer from frmAddContact but items are not getting added. I have no problem using the same code from the frmNewCustomer. frmNewCustomer NewCustomersForm = new frmNewCustomer (); NewCustomersForm.lstContacts.Items.Add(cboCategory.Text); NewCustomersForm.lstContacts.Items[NewCustomersForm.lstContacts.Items.Count - 1].SubItems.Add(txtNumber.Text); NewCustomersForm.lstContacts.Refresh(); this .Close(); stull having the same problem.. I also tried this code to update a textbox on Form1 from Form2: frmMain MainForm = new frmMain (); MainForm.mnuSearchCustomer.Text = "731004167" ; this .Close(); ...Show All
Windows Search Technologies Windows Safe Search Filter - Application Error
I use Windows Desktop Search and recently starting getting an error message. Details: WindowsSafeSearchFilter.exe - Application Error The exception unknown software exception (0x0eedfade) occured in the application at location 0x7c812a5b Followed by the error: Runtime error 217 007F0EEE What do these errors mean Been geting the same error with IE 7 on shutdown. Updated Acrobat Reader - also disabled the Reader Plugin - also disabled Shockwave Plugin (the last thing I installed before the problem started occuring) - problem seems to be solved - I'll reactivate one then the other - hopefully one is the culprit. In either case, it seems Adobe is the culprit. ...Show All
Visual Studio 2008 (Pre-release) svcutil & [OnDeserializing]
Is it normal that the proxy class generated by svcutil does not contain the method marked with [OnDeserializing] [ OnDeserialized ] public void OnDeserialized( StreamingContext context) { _objects = new Objects (); } I suppose svcutil is not compatible with [OnDeserializing] Thanks ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Managed -> Unmanaged Interop
Hello to the XNA team! Looks like some pretty awesome work you've got done here guys! Me and my colleague are professional game developers considering writing "Yet Another 3D Game Engine(tm)" for XNA. So I have two questions for the team: 1.) Is there any chance of getting a preview of XNA before december so we can start developing immediately 2.) It would be nice if we could do a bit of interop between XNA, managed C++ and unmanaged C++. What are the chances of us being able to achieve this Thanks in advance! AndyL wrote: 2 - As far as I understand, interop will be possible only on the PC version, and both platforms are C# only. Just to clarify - for now it's C# only. Other lang ...Show All
.NET Development I get the message "Could not find installable ISAM"
I'm trying to get a record deleted, they way i want to do it is , that the user enters in the id and then clicks on the delete button, I've used this code and everytime i try to test the delete i get "Could not find installable ISAM" and idea's on whats going wrong Private Sub BackDelete_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BackDelete.Click Dim db1 As ADODB.Connection db1 = New ADODB.Connection db1.Provider = "Microsoft.Jet.OLEDB.4.0;" db1.ConnectionString = "C:\db1.mdb" db1.Open( "DELETE FROM data WHERE ID= " & txtId.Text) If MsgBox( "Deleted" , MsgBoxStyle.OkOnly) = MsgBoxResult.Ok Then End ...Show All
SQL Server SQL Server 2005: Backward Compaibility Errors
I am running a SQL Server 2000 enterprise default instance and SQL Server 2005 standard named instances on a machine. I uninstalled the default instance and tried to instance 2005 but was unable to with the error: 'an installation packages for the product Microsoft SQL Server Backward Compatibility cannot be found. Try the installation again using a valid copy of the installation packages sqlserver2005_bc.msi' I have tried to repair the backward compatibility currently installed and have also tried runing the msi file again but it will not install. I have also put back 2000 as the default instance. then tried to apply sp1 to the 2005 named instances and i cannot do that either. anyone have any ideas Thank you. ...Show All
Visual Basic Can you digitaly sign your program?
hey i was wondering can you digitaly sign your program and also make to be able to install into C:\Program Files is this possible thank you. That is correct - you are limited to clickonce deployment in VB Express (One of the limitations in the free version). If you want to start creating windows setup packages - then you can either. Buy a version of visual studio / VB that includes these templates. Buy a 3rd party tool which will assist you in creating install packages (Intstallshield or Wise are two) ...Show All
Visual Basic Need Help/Ideas for Program
I'm making a program that changes the size of a group of user-selected images stored on the hard drive (JPEG, GIF, BMP, ect.), but I'm kind of stuck on how to approach this. I was wondering if anyone had any ideas/suggestions. I know how to resize each single image, but I don't know how I should automate it to do a group of images one after another. I was thinking about storing a list of filepath addresses of the images... Thanks for any help. Would this work for multiple individual files Basically what I want to do is open a file dialog and be able to select multiple images by either holding down CTRL or SHIFT, and then I want to store the filepath addresses of these selected files for later use. T ...Show All
