Pixel Shader's Q&A profile
SQL Server Formatting text
Are there any plans for RS to support formatting of text within a text box. e.g. some of the text being bold, some of it italics and different fonts etc. As many web apps now support text formating it would be good to be able to display the same formatting in a report. I think the formating is done using html so RS would need to be able to parse the html and format accordingly. Anyone know if this is due to be supported Thanks Refer to post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=259291&SiteID=1 It will allow you to view rich text in a report. It doesn't support HTML markup but you could modify it to do so. Also, the Microsoft rep I spoke with indicated they intend t ...Show All
Visual C++ Linker problems LNK2001
Hey people, im trying to get an old EVC++ to Visual Studio, fixed the /MDd problem and the W_Char problem. but when i try to compile i get over 300 linker errors. ive got the idea im missing lib files or something, but i added the old lib directory's and stil i cant get it going. Linking... RTCView.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertColumn(int,unsigned short const *,int,int,int)" ( InsertColumn@CListCtrl@@QAAHHPBGHHH@Z) stateview.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertColumn(int,unsigned short const *,int,int,int)" ( InsertColumn@CListCtrl@@QAAHHPBGHHH@Z) Tablog.obj : error LNK2001: unresolved external symbol ...Show All
.NET Development .NET 2.0 Remoting with secured TCP and HTTP channels
Can one use and HTTP channel with security on without being hosted in IIS We have a .NET 1.1 service that uses HTTP for remoting. We've upgraded to .NET 2.0 and would like to take advantage of the new security features in remoting, but still use HTTP without having to require IIS. Using the TCP channel we get the security we are seeking, but would prefer continue using HTTP. //This works but is not HTTP and may prove to be // an issue for admin tools on the other side of a // firewall. TcpChannel channel = new TcpChannel (2468); ChannelServices .RegisterChannel(channel, true ); //This fails with the RegisterChannel's second parameter // (enscureSecurity) is true. HttpChannel httpChannel = new HttpChannel (9888); t ...Show All
Visual Basic VB Programs
Disregard. ...Show All
Gadgets Can't add sample gadget from SDK to my Gadget list.
I am following the Gadget SDK instructions to add a gadget to my live.com page using IE7. The sample hello world was proper installed and I could use the http://localhost/Gadgets/Hello/HelloWorldGadget.xml to launch this page on my local IIS. Next, I following the SDK instructions: Go to http://www.live.com Click on 'add stuff, and click on 'Advanced Options' Enter the url to the manifest XML for one of the sample Gadgets in the 'add Gadget or feed by url' edit box. For example, try http://localhost/Gadgets/hello/HelloWorldGadget.xml . but this failed when I hit the "Subscribe button" with error: It trapped to line 518 of shared.live.com/.../liveframework.js {xml.open("GET",o.url,true);} ...Show All
SQL Server Archive & Restore design question
Hi, I have a design question. So, I am designing an web application that will store lots of data. Because of that we need to allow administrator users to archive some of the data. However, the user needs the ability to view the archive data (just to know that it is there) The administrator user can restore the data by using the web application. My design includes 2 databases, one for the actual data, and the second for the archive data, and I manipulate it by moving data from one database to the other. What do you think about that Another thing is the fact that every month administrator will want to empty the archive database and save it on a disk. What is the best way of doing so and lets say i want to take one of the ...Show All
Software Development for Windows Vista Testing best practices?
Hi folks. Do you guys have any best practices for testing Especially around automated testing As I understand it, since Cardspace uses the secure desktop, and since you can't disable that, the Cardspace UI can't be scripted (good thing) and therefore can't be used in automated testing (bad thing). Do you have any ideas about how to work around this Cheers Matt Well, consider this my vote for such a sample! Thanks for the pointer to the msdn docs - I might have to try my hand at this at some point. Can I assume the secured desktop is "Winlogon" Cheers Matt ...Show All
SQL Server How can i make an updatable view???
Please read this example: I got 2 datatables PersonName: wich contains IdPersonName, Name and IdPersonLastName PersonLastName: wich contains IdPersonLastName and LastName I know that i need to make a relation between Person and PersonLastName I want to make a view named Person: wich contains PersonName/Name and PersonLastName/LastName and i want to make updates to the two datatables when i insert data in the PersonView I hope someone can Help Me I Made This code ALTER Trigger Trigger1 ON dbo.PersonComplete INSTEAD OF INSERT AS BEGIN SET NOCOUNT ON IF ( NOT EXISTS ( SELECT C.Name, C.LastName FROM PersonComplete C, inserted I WHERE C.Name = I.Name AND C.LastName ...Show All
Windows Forms Icon from path in treeview
Just would like to know how to do that (the icons) http://miranda.predialnet.com.br/imagens/iniciarewido.jpg In my app i did: http://miranda.predialnet.com.br/imagens/iniciar.jpg Well, my app, list the programs that will startup with the windows. I want to show the icon's of this programs like the screen i've posted in the first post. eg: I need to get the ICON from C:\hl.exe and put it next to Half-Life in the list. but in your pc, you don't have hl.exe, you have firefox, then get the ICON from D:\firefox.exe and put next to Firefox in the list. got it now ...Show All
.NET Development Is this valid a valid XSD element?
Hello all. I received a large XSD file and have been trying to use it in an application but keep receiving errors (from multiple parts of the file). I'm new to XSD. I think this is an invalid element of the supplied XSD file due to multiple 'RejectionReason' names. I was under the impression that you can only have one 'name' per type (but individual names can have the same type). Please let me know if I am wrong. Thanks. Snippet: <xs:complexType name="TransRecordHeaderType"> <xs:all> <xs:element name="SequenceNum" type="LargeSequenceNumberType" minOccurs="1" maxOccurs="1"></xs:element> <xs:element name="RecSeqNum" type="LargeSequenceNumb ...Show All
Visual Studio 2008 (Pre-release) 8-like documentum's logo
Can someone reproduce a blue 8-like figure (which comes along with 2 navy balls) , used in Documentum's logo (right to the Help at the top) using loose XAML, please I managed to create a similar one, using 4 Arcs, but it doesn't look smooth enough, especially when it gets scaled up (say to 200X600 px). I guess it can be done with beziers, in which I'm not really strong. The aim is to connect two circles with the *smooth*, narrowing to the middle link. Thanks. P.S. Apologies, if posted to the wrong forum. The current documentum logo doesn't sound like what you're describing, but if it is "text-like" maybe you could use some FormattedText http://msdn2.microsoft.com/en-us/library/ms ...Show All
Visual Basic How can I retrieve Recordset from webservice?
I have a server and a client the server is implemented by c# and the client is programmed by vb(not vb.net) so how can I get the recordset from the webservice thank you Hi, Thanks!! I have gone through the information given in the links. They are providing methods to be used via VB. I am using C# ans ASP.NET 2.0. Can you please let me know if any help for this is available ...Show All
Windows Live Developer Forums Map Control position
Hi, Is there a way where in I could move the map control from the left hand side to the top as it was earlier (with version 2 of Mapcontrol.js). If yes can you please send me the code snippet. Thanks, Sampat. You can put in where ever you like with simple css positioning: < style type ="text/css"> .dashboard { top : 200px!important ; left : 200px!important ;} </ style > The trick is you have to make sure this css is after the build in VE css styles, in FF the "!important" works, in IE make sure this is the last thing in your <head> http://viavirtualearth.com/Wiki/MoveDashboard.ashx John ...Show All
.NET Development Microsoft .NET Framework 3.0
The previous post on this subject got me to thinking. I am running VB express , Net Framework 2.0 on an XP SP2 PC, with no plans to go to Vista any time soon. I ran Microsoft's 'check for updates, and it shows nothing for Visual Studio 2005. Is the Framework 3.0 useable/recommended/useful for us VB Express users under XP SP2 Hi , .NET 3.0 is next version of .NET .. it should not be linked to Visual Studio . You can use .NET 3.0 even without Visual Studio. .NET 3.0 is surely useful.. you can explore some of the new technologies it brings like windows communication foundation, windows presentation foundation, windows workflow. http://DotNetWithMe.blogspot.com vikas goyal ...Show All
SQL Server Time Calculations and Calculated Measures
Hey Guys, I have used the following document to create some time intelligence in the cube as the standard way that is in SSAS didnt fit to what we wanted. http://www.obs3.com/A Different Approach to Time Calculations in SSAS.pdf I have implemented the suggested solution and it works well, although i cannot add in a calculated measure in the scope statement. Everytime i do, i get the following errors: Error 1 A set has been encountered that cannot contain calculated members. 0 0 Error 2 MdxScript(Sales By Market) (51, 1) A set has been encountered that cannot contain calculated members. 0 0 Error 3 The END SCOPE statement does not match the opening SCOPE statement. 0 0 Error 4 MdxScript(Sales By Market) (118, 1) The ...Show All
