Rustynails's Q&A profile
Software Development for Windows Vista The Microsoft Marketing Machine: the schema name change of the claims
So we go from schemas.microsoft.com to schemas.xmlsoap.org. Looks nice and "open". Too bad the domain belongs to Microsoft. LOL. Sorry about the late response. Quick Check of WHOIS: Registrant Name:Microsoft Corporation Registrant Organization:Microsoft Corporation Registrant Street1:One Microsoft Way Registrant Street2: Registrant Street3: Registrant City:Redmond Registrant State/Province:WA Registrant Postal Code:98052 Registrant Country:US Registrant Phone:+1.4258828080 Yep. Is that really a problem I'm not sure what you intended to say there, other than that Microsoft owns the XMLSOAP.org domain. g Garrett Serack | Program Manager |Federated Identity ...Show All
SQL Server Buildind a report builder.
Hi all, Does anyone have information on coming up with the report builder The Microsoft bookonline do not help to much. Thanx in advance. If you want to play around with some samples, you can use the new BOL samples (which are renewed within the new July release of the BOL) or this link here: http://msdn2.microsoft.com/en-us/library/ms345268.aspx HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
.NET Development DataTableReader is invalid for current DataTable
I'm trying to convert a datatable into a datatablereader but i'm getting this error DataTableReader is invalid for current DataTable does everyboth nows about it i'm running the simple command " mydatatable.GetChanges( DataRowState .Added) " Thankyou.. I forgot the exact same thing! ) ...Show All
Visual Studio Express Editions Window Effects
Hello. 1 - How I can make my application window to fade when it start's or when is closing... 2 - How to make some parts of the window more opacity than other (ex: bottom: 75% opacity, top - 85%). Thanks...... What is happening with the sleep method It seems to work fine for me although I still think the Sleep method is not a professional solution as it "hangs" or blocks the thread executing, so a timer would be more appropriate I believe. If the timer works, then let it be and also believe that it is probably more of a better solution. ...Show All
Smart Device Development add new property for contact?
hi I have seen that contact class has much property, such as contact's name, birthday, and so on. Can I add new property to a contact using c# .net cf 2.0 thanks This forum is intended to deal with issues directly related to the .NET Compact Framework. It appears that this question can better be answered by someone on one of the newsgroups for Windows Mobile or Windows CE. In order to get a quicker and more accurate response, please consider reposting this question to one of the following newsgroups: Windows Mobile API : microsoft.public.pocketpc.developer microsoft.public.smartphone.developer Windows CE API : microsoft.public.windowsce.embedded Gene ...Show All
Gadgets Group Policy behavior: Turn Off User Installed Windows Sidebar Gadgets
Hi, I've been looking at the group policy settings in Windows Vista for the Windows Sidebar. According to information I've found the policy "Turn Off User Installed Windows Sidebar gadgets" should behave like this: Turn Off User Installed Windows Sidebar Gadgets This policy provides administrators with the ability to block all gadgets not placed into the Shared Gadgets or Gadgets folders (in the Sidebar’s Program Files folder), both of which can only be modified by a user in the administrator group. Gadgets in the user’s directory will not display in the Gadget Gallery dialog or otherwise be allowed to run. If I copy gadgets to either c:\program files\windows sidebar\gadgets or c:\program files\windows sidebar\shared ...Show All
Software Development for Windows Vista Free MPEG-2 Encoder Filter
Hi all, I want to create an application for converting wmv video to MPEG-2 movie using Direct Show anyone know where to find free MPEG-2 filter Thanks. It present as directshow filter and appears as "MPEG-2 Encoder by EP" you can use it as direct show filter in your application. ...Show All
Visual Basic Passing value from one form to another (tricky question!)
- On form1 I click a button that opens form2 that has a treeview with options for me to select; -After I select an option from the treeview on form2 I assign it to a variable (public) and close form2; - I then return to form1 (it wasn't closed during the process on form2) and want to assign the value of the public variable to txtDescricao.text field. What event should I use to put txtDescricao.text=ValueSelected Thanks, Joao Pinto DMan1, can you help, please Annyone can help Thanks, Joao Pinto http://senhorpires.blogspot.com/ ...Show All
Visual C# Create a library that work with int that have whatever dimension i want
I created a class Int that work with integer value that have very big dimension(256,512,1024 bits.....) , but i want that normal int (when i write int , in declaration of a variable or as parameters of a function ) to work like my Int ( to overload tipe int). Can somebody tell me pls how can i do that Pls! Thank you! You can't replace the "built-in" int type (unless you build your own compiler). You can create your own int type, but since int is a keyword you'd have to escape it like @int. ...Show All
Visual Studio Retrieving embedded elements
Hi All! I've run into some trouble when trying to present data from an embedded element in a datagridview. The code that should do the work looks something like this. public partial class CompartmentHostShape { public override void OnDoubleClick(Microsoft.VisualStudio.Modeling.Diagrams.DiagramPointEventArgs e) { Form f = new System.Windows.Forms.Form(); DataGridView dgv = new DataGridView(); CompartmentHost ch = this.ModelElement as CompartmentHost; foreach (CompartmentItem cit in ch.TestRole) { //This actually prints out the expected values Debug.WriteLine("ComItemName for cl is: " + cit.ComItemName); Debug.WriteLine("CompartmentHost for cl is: &quo ...Show All
Visual Basic no .net framework?
I did a window application using vb.net and a setup project. But when i installing my system/programm to a new PC, it prompt out a error "Please install .NET Framwork"....... What should i do if the user PC dont have .NET Framework I cant require the user to install .NET Framework....so wat should i do to solve this Actually i dont really know wat is mean by .NET Framwork and why PC need .NET Framework to run the application programm, my application program is just a very simple program.......I am quite new to .NET .....pls help.... Is your using clickonce deployment to create you setup - just add the .NET framework as a requirement and it will check if its installed already - if not then it will install ...Show All
Software Development for Windows Vista Adding parameter of Webservice Input Activity to a list
Good afternoon, I'm looking to use a Webservice Input Activity to add an item to a list, and I was just wondering what the preferred method of doing so might be I was going to simply create and bind to a property where the "Setter" adds the item to an existing list... but this seems a little bit like a hack. Is there a more proper way of doing this Cheers, Brad For the case you have outlined, addition of the incoming value to a list, doing so in the setter would work. However if there needs to more computation done/computation depends on other input parameter values it might not be advisable to do so in the setter of individual properties. One because we shouldn't block in the setter ...Show All
Windows Forms Data binding and Checkbox values
Ok... I have a value in my Sql table called "Disconnected" is a bit type....0 for not being disconnected 1 for being disconnected, Now i have a checkbox in my windows form that will submit information on a product....if the Disconnected checkbox is checked how do i send that value to the sql db...I know the checkbox is a bool value so if its checked it returns true if not it returns 0 for false.......I know i can type cast a bool to a bit, so should i do that within a property or something anyhelp or any links on how to get this done will be most helpful!!! it should be: if (Convert.ToBoolean(IsDe) == true) { ... } ok, well since you are using a DataReader, what I suggested won't work. You will have to in this case ...Show All
Visual C# How to hide code of .NET dll [aspnet + c#]
Hello, I have found few days ago that .NET dll can be reversed to view all source code. I have used Dotfuscator but it only renames variables etc. I want to hide code. Please reply with some concrete solution. thanks in advance with regards, Hi, Is there any other way by which one can hide code .... I also heard about some private/public key mechanism. What is this and how can we use it .... and please also tell me about its merits & demerits. thanks ...Show All
Visual Studio error processing subreport ; LoadSubreportDefinition
Hi, I have a report with several subreports. I load the report and subreports via MemoryStreams using reportViewer.LocalReport.LoadReportDefinition(), and reportViewer.LocalReport.LoadSubreportDefinition(). However the subreports aren't rendered, all I can find in the warnings collection are messages like this : "An error occurred while executing the subreport ‘subreport1’: An error has occurred during report processing." Not very informative. Is there any way to get more detail The report works fine when I go by the usual route of simply specifing the main report path (ie setting reportViewer.LocalReport.ReportEmbeddedResource). However I need to modify the rdlc at runtime, so I have to use Streams. Thanks for any help... ...Show All
