alzikan's Q&A profile
SQL Server install sql server 2005 express on 64 bit windows
I am trying to install sql server 2005 express on 64 bit windows but i get a error message saying SQLncli_x64.msi file is missing and asks me to download it. How can i fix this problem to install the SQL server on my Windows XP x64 Edition Make sure you are installing either SQLEXPR.EXE or SQLEXPR_ADV.EXE, which are the full installers that support x64 systems. To be clear, we only support installing in WoW mode and we only support x64. You will not be able to install on I64 computers. Regards, Mike Wachal SQL Express team ...Show All
Visual Studio 2008 (Pre-release) "Security settings for this service require Windows Authentication..." exception
Hi, I have got a WCF (Feb Beta 2) service, hosted in IIS 6.0 on a W2K3 server. Directory security is IIS is set to "Windows" as is the System.Web Authentication mode attribute in the Web.Config. The WCF section in the Web.Config uses basicHttpBinding with a CustomBinding that uses TransportCredentials set to "Windows" for UserName (similar to this sample below) <configuration> <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name="MyServiceTypeBehaviors" > <serviceMetadata httpGetEnabled="true" /> </behavior> </serviceBehaviors> </behaviors> <bindings> <basicHttpBinding> <binding ...Show All
Visual Studio Express Editions tabspacing on a textbox's message
I need a tabspace similar to c/c++'s " \t " I need this for a textbox in visual basic code txtPhonetic.Text = "word [tabspace][tabspace] new word" + vbCrtL + _ "word[tabspace][tabspace]word" + vbCrtL + _ Use the vb constant: vbTab "word" & vbTab & "another word" Note: Use the preferred & instead of + for concatenating strings in Visual Basic. TextB ...Show All
Windows Live Developer Forums msn live messenger, how to make the history check box dissapear
Hi, I need some help. I want to set up the messenger to save the history and then lock that option so nobody can uncheck it. Is there any way to do that I tried to do it through the registry but i didn’t find anything. Please if somebody knows how to do this let me know. Thanks in advice I would also like to know how. I'm surprise Microsoft doesn't offer this for minor children accounts ...Show All
Software Development for Windows Vista ManualWorkflowSchedulerService and serialization
I have ExternalEventHandlerActivity waiting for event with EventArgs that is not serializable. If I use DefaultWorkflowSchedulerService, I understand, why EventDeliveryFailedException is thrown, when I try send this event to WF. But the same exception is thrown when I use ManualWorkflowSchedulerService. What is the reason for serialization in this case I think, that everything is running in the same thread. Thanks for answer. The ExternalDataExchangeService does not hardcode for a specific type of scheduler. We clone (serialize/deserialize) the event args before delivering them to the workflow to ensure that the host does not hold a reference to the same object. The workflow may also persist while still h ...Show All
Visual C++ Problem with reading and writing in file
Hello everyone, This is my problem - I want to read first line form the text file, viewing on the screen and replace second line whith new string. Here my code: #include <iostream> #include <fstream> #include <string> using namespace std; int main () { string st; fstream iofile; iofile.open ("C:\\sample.txt", ios::in|ios::out); getline(iofile, st); cout << st<<endl; cout <<"Enter new string:"; getline (cin, st); iofile<<st<<endl; iofile.close (); return 0; ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Do render targets have to be the same size as the back buffer?
Hi, I have a render target set up as: screenBuffer = new Texture2D(graphics.GraphicsDevice, 1280, 720, 1, ResourceUsage.RenderTarget, SurfaceFormat.Color, ResourcePool.Default); When the back buffer is set to 1280,720 (the same size as the render target) the code below works and the screen displays a blue background as expected. //Set device to render target graphics.GraphicsDevice.SetRenderTarget(0, screenBuffer.GetSurfaceLevel(0)); graphics.GraphicsDevice.Clear(Color.Blue); //Set the render target to the back buffer graphics.GraphicsDevice.SetRenderTarget(0, graphics.GraphicsDevice.GetBackBuffer(0, 0)); graphics.GraphicsDevice.Clear(Color.Gray); //copy the (scaled) screen buff ...Show All
Smart Device Development how to send sms to Edge Technology through .net application.
hi all anybody can guide me how to send sms using Edge Technology through .net application Please help me . ...Show All
SQL Server Report Server Database Set Up
i am trying to set up report server on the Standard edition of Sql Server 2005 using winxp.. i generated the script to create the ReportServer/ReportServerTempDB database but when i try to specify a database connection and click apply this message is displayed Verify Database Edition The Feature: "Using other editions of sql server for report datasources and/or the report server database" is not supported in this edition of Reporting Services. i can't i can figure out how to get around this i mean i can configure everything else from the virtual directory but not the Database Setup.. What SKU of SQL Server did you install and what SKU of SSRS are you trying to install. This error is thrown when t ...Show All
Visual Studio 2008 (Pre-release) Quick Binding question....
This will hopefully be a very easy question... In the below example, the TextBox always displays the correct, bound, value from the dataprovider. But "MyControl" always displays the FallbackValue ("test") even though the binding expression is identical. I'm a bit confused as to why this should be <StackPanel DataContext="{Binding Source={StaticResource BTTC}}"> <TextBox Text="{Binding Mode=Default, XPath=/Root/Number, FallbackValue=test}"/> <local:MyControl x:Name="_myControl" Text="{Binding Mode=Default, XPath=/Root/Number, FallbackValue=test}"/> </StackPanel> public class MyControl : TextBox //FrameworkElement//, INotifyProperty ...Show All
Visual C++ [OTP] Error message PSAPI.DLL
I am getting a error pop up saying Get Process Image file name w. could not be located in the dynamic link library psapi.dll What should I do to fix this. April Hi to all at this blog. Thanks to your recommendations, I have been able to resolve the ASPI.DLL issue, which appeared upon installing IE7 Release Candidate 2. I am also on Verizon DSL, and simply changed the file extensions in Verizon... Help Support\Smartbridge, and Verizon... Help Support\bin, from .dll to .old. Worked like a charm. Thanks to all!! Gary ...Show All
Visual Studio Express Editions Ending Application
How do you end application properly when the user click on the X on the control box I have a program that does a loop, reading delimited file. What happens is that when user closes the program, it's still running in the background. I used "End" on form closed, and it works great; but I've read that you should never use it. So what is my alternative to stop it The simplest thing to do is to set the shutdown mode to "When Startup form Closes" ...this will force the application to end when the startup form is closed no matter if any other forms are open. Otherwise you can use: Application .Exit() ...Show All
Windows Forms Problem while adding reference to the project
Hi, I have an api that is written in C which is complied into a dll. I try to add a reference to the dll but for some reason I get an error "Please make sure that the file is accessible, is a valid assesmbly or a com component". I have tried placing the dll in bin/debug, or the project folder. I can see the dll , so I can select it, but when I try to add it I get this error. I checked the privilages as well. Can anyone suggest what the error might be All help is very much appreciated. Thanks! I guess I don't need to add the dll as a refrence. I need to be able to locate the dll and call the functions. The dll has c functions, which are called to perform various functions. For some ...Show All
SQL Server simple question creating duplicates
Hi, I'm trying to create duplicates in a copy of a table in the same database by inserting rows from the original table. Seems easy but I can't get any sql to work. help If we decide that a duplicate is made out of the entire row: Go into QA and type and run INSERT NorthwindCopy.dbo.Categories SELECT * FROM Northwind.dbo.Categories In this case you'll probably recieve an errormessage about IDENTITY.. Is this correct, and is this your problem /Kenneth ...Show All
Smart Device Development Error while debuging
Hello All, I am new to Smart Device Development, I have installed Windows Mobile 5.0 Pocket PC SDK on my machine and trying in create simple HelloWorld application but it not working . I gote following error while debuging Error 1 - Deployment and/or registration failed with error: 0x8973190e. Error writing file '%csidl_program_files%\helloworld\mscorlib.dll'. Error 0x80070070: There is not enough space on the disk. File - Device Connectivity Component please help me. I am using Visual Studio 2005 One More thing, I don't have 'Smart Device' like interface when I open WinForm in design view for placing controls. Thanks If you create WinCE application than you'll see WinForm style skin. This is because WinCE based devices ...Show All
