Apollo Strong's Q&A profile
Visual Studio 2008 (Pre-release) Running WBA in an IFrame
I want to embed a web browser application in an HTML page by running it in a IFrame. There are 2 issues: 1. How can I get rid of the navigation chrome in the WBA It looks very bad in the IFrame. 2. If I have a <Hyperlink> in the WBA , how can I navigate the HTML top page to a new page by clicking on this hyperlink (like <a href="..." target="_blank"> behaviour in HTML) Thank you, Valentin Iliescu 1. If you are running IE7, the navigation chrome shouldn't appear at all (please let me know if it does -- that would be a bug). On the September CTP, the way to remove the navigation chrome is to style it away. Here's ...Show All
SQL Server Sharing time intelligence across cubes
I have a couple of cubes (orders, deals, etc) and they all share the same Time dimension. For one of the cubes (Orders) I added time intelligence features like Year Growth %, etc. This process added one attribute to my Time dimension. My question is, do I have to go through this process again with every cube if I want the same time intelligence features This means the process will add more attributes to the time dimension for every other cube (Deals) that wishes to use the same type of time intelligence. Is there a way to share the Time dimension attributes so I can have time intelligence with all the cubes using that dimension Thanks ...Show All
Visual Studio Sql server 2005 trial version
I ordered a trial version of Sql Server 2005 from Microsoft that is supposed to be valid for 180 days. Yesterday, after only some 30 days of usage I am told that the trial time has expired! Have anybody experience the same problem Any help/suggestion would be most appreciated. Thanks, the Cicada The RTM version of SQL Server 2005 Evaluation Edition should work for 180 days after you installed it. What exactly was the error message, and where did you encounter it What Edition and Version of SQL Server do you have Thanks, -Jeffrey ...Show All
Visual FoxPro How to print a Table structure?
Hi, is there a way to print a table structure (table fields, not the table contents) on the printer either programmaticaly or by a menu What I mean is when you modify a table their is no way to print the structure of the table! This is what I m trying to achieve. To print the structure of the table on the printer. So far I always had to press the PrintScreen button and then go to the Paint program, Paste and print . But of course this is not the best way to do it. I'm using VFP 8 . Any advices Athan > So is there a way to use smaller fonts to print from VFP Yes. Here's what I usually u ...Show All
Windows Forms bind to combobox
hi, i have at this dataset that has a table(BankMaintenance), it contains two columns(BankCode and BankName). My question is that how can i place the contents of the two columns in a single combox every row will be an item in the combox... thanks. You can use the following select statement to get the data from the database. "SELECT BankC ...Show All
SQL Server SQL2005 SP1 install messages
Hi After SP1 install completes successfully, I checked the log file and next to all the products it shows "Not Applied" yet it seems to have worked. Can I ignore these messages Cheers If you are looking at the log files in the product folders, then yes this is expected since it was a snapshot in time. You should see in the log file at the highest level (root of %windir%\hotfix) the final status... We are cleaning this up in SP2. Thanks, Peter Saddow ...Show All
Visual Basic Export data to excel
What code do I need in VB6 to take numbers from boxes in my display and append them to the end of a excel sheet , i would like to do it once per day and have it just added onto the end, so that I can graph the data later. Thanks Ryan, from http://www.experts-exchange.com/Programming/Programming_Languages/Visual_Basic/Q_21195163.html Write (appends data to an existing file): Dim intFileHandle As Integer Dim strRETP As String strRETP = "Hi There" intFileHandle = FreeFile Open "path to file" For Append As #intFileHandle Print #intFileHandle, "---------------------------& ...Show All
.NET Development Login programmatically using Membership and Profiles
Login programmatically using Membership and Profiles in .NET 2005 I need to perform a login-operation from a program in a web-application. I make sure the user is valid by checking the membership: IsValidUser = Membership.ValidateUser(MyUserID, MyUserPW) Now, I want to "login" this user - how do I do this "Login" means: I want to do the same the user would do when clicking "Login" on the Login-Control. So I want the user's profile to get loaded and the user be the My.User.Name. Your help is very much appreciated Beat ...Show All
Windows Forms It debugs.. then it won't debug?
I have spent hours today with a winform with some comboxes bound to data. And something really weird has been going on. I set some*space space*points and lately it just ignores the*space space*points.. THEN it might stop at one so I continue and I press the button again which has a breakpoint and it ignores the breakpoint Any idea what could be going o ...Show All
SQL Server Error 1706 SQL Server 2005 Express Installation with command prompt
The foolowing coomand: "en_sql_2005_express.exe /qn ADDLOCAL=ALL SECURITYMODE=SQL SAPWD=12345sa DISABLENETWORKPROTOCOLS=0 INSTANCENAME=Example" or "setup.exe /qn ADDLOCAL=ALL SECURITYMODE=SQL SAPWD=12345sa DISABLENETWORKPROTOCOLS=0 INSTANCENAME=Example" return error 1706 I have OS Windows XP with SP2, .NET Framework 1.1, .NET Framework 2.0, MSDE, VS 2003 Please check the file template.ini (located at the same path with setup.exe) or BOL for sample command line to install SQL Server 2005 Express. In your command line, you forget to specify the SQLBROWSERACCOUNT and SQLBROWSERPASSWORD. You need ...Show All
Software Development for Windows Vista Dual Boot Vista Beta 2 build 5231 bcdedit entry for XP Pro sp2
After reading http://www.microsoft.com/technet/windowsvista/library/85cd5efe-c349-427c-b035-c2719d4af778.mspx I have still not find a way to dual boot with vista bootmanager and xp sp2. I have 2 drive C and D: On C I have Vista build 5231 on D: XP sp2. I am looking for the the path and exe to put on the path entry to put for booting XP sp2, Identifier: {75254f72-9c48-11da-a07d-000e7b474a19} Device: partition=D: Path: \windows Description: XP Professional Windows device: partition=D: Windows root: \Windows bcdedit /set {75254f72-9c48-11da-a07d-000e7b474a19} path \windows\ What exe I pu ...Show All
Windows Forms Windows form keeps dissappearing
Hi, Ive got a rather silly question... hope someone can help. I have created a project with several forms. One form in particular is causing me problems. I cant seem to find my main form (form 1). This is the second project this has happened in. The solution explorer lists all my forms except form 1 which is my main form. When i debug/run the code, my form comes up as per normal. Whats going on Why cant i find my form in solution explorer or anywhere for that matter I think i may have overlooked a simple concept here but novice coders tend to do that! I would be really grateful for any help. Cheers Aaron ...Show All
Visual C++ template arguments issue
The MS C++ compiler version 12 does not accept a class name with a template argument as an actual template argument of another class. e.g. template<class in> class x1 { ... in var1; ... }; template<class in1> class x2 { .... in1 var1; .... }; int main() { x2<x1<float>> obj1; ..... }; This code: x2<x1<float>> obj1; should be: x2<x1<float> > obj1; In that version of Visual C++ >> is the right-shift operator token not two > toke ...Show All
Visual Studio Team System Add users from other domains to Foundation Server?
Is it possible to add users from other domains to FS I've tried gssutil: GSSUTIL /G+ ADM: "otherdomain\privilegeduser" which in turn gives me "FATAL ERROR: The specified project has not been registered." The domains are not trusting each other. Must they I've also tried adding the SID from the other domain to no avail. ...Show All
Visual Studio macro definitions in VS8 IDE
How do you define or redefine a macro in the VS8 IDE -- for example TargetDir Hi Paul, There isn't a way to programmatically reset/change the macro. The macro is stipulated by the project's Output Path: property. If you change the output path setting on the Build tab of your project's property pages, you should see the change reflected in the TargetDir macro. I'll see if I can dig up something that will allow you to programatically change that Output Path setting. I seem to recall this was possible, but the docs for the OutputPath property for CSharpProjectConfigurationProperties3 seems to indicate th ...Show All
