Waheed Iqbal's Q&A profile
Windows Forms Can I edit the deployment list of Publish Pane by MageUI?
I cannot find a way to add my own data files to the list shown by the "Application Files..." button on the Publish Pane. If I do all the thing in MageUI, I cannot benefit(like Prerequise..) from the UI of VS2005. Therefore, I would like to know the way to edit the deployment list of Publish Pane by MageUI. Or actually edit the manifest files generated by VS2005 in MageUI, and then reload it in VS2005. Any suggestion is appreciated. Dunno why the files are not getting placed inside the culture folders, maybe its a bug, try reporting it. In the meantime I guess you will have to move them manually. & ...Show All
SQL Server How to insert data into table
can some one help me, how can i insert data, using some commands, scenario, two server, srv01 and srv02, both have database sales and both a table saleshistory pseudocode: insert into srv02.sales.dbo.saleshistory select * from srv01.sales.dbo.saleshistory where id > srv02.sales.dbo.saleshistory.max(id) In other words, you want to get all records from srv01 that are not on srv02, and insert them into srv02. Correct This will help you: http://www.sqlis.com/default.aspx 311 -Jamie ...Show All
Audio and Video Development What is the good IDE Tool for iHD programming?
Hi, I'm totally new to this iHD / HD DVD world and I'm exicted that I found this forum. Hopefully I'll learn a lot from and contribute some opinions to this forum. My 1st question in iHD programming is what IDE tool should be used in programming iHD And my 2nd question is how to run / preview all 3 samples from HD DVD Programming Guide. Thanks, -mh Hi mh, Welcome, and glad to hear you're excited! :-) At the moment we are using Visual Studio to do development, since iHD is XML and ECMAScript. Visual Studio provides both XML and ECMAScript authoring support, as well as ECMAScript debugging. You can a ...Show All
Visual C++ SCL streams .NET FX
Sorry im a little new too .NET so still processing much information. Can you tell me what SCL streams are exactly And what exactly is .NET FX Is this just a general term for the framework classes Thanks. SCL == Standard C++ Library: this is part of the C++ Standard and it includes the set of class templates that most people know as STL (The Standard Template Library). .NET FX is the .NET Framework: this is the set of classes that ship with the .NET runtime. ...Show All
SQL Server How to encorporate Date and Time comparison to pull a field
I'm trying to pull this data in my first inner join trying to pull the rmsbalance based on the latest date/time combination but not having any luck with my syntax because sql is throwing errors due to my syntax below and I can't figure how how to do the check on the date and time combo: SELECT rf . RMSTRANCDE , rm . rmsacctnum , SUM ( rf . rmstranamt ) AS [Sum Tran Amt] , rf10 . rmsbalance FROM R ...Show All
Visual Studio 2008 (Pre-release) reference to a object-class with datacontract??? .urgent.
Hi, in my service I referenced to an object class "Tag". Now I'm using a client with channelfactory and want to use objects from the "Tag" class. How can I do this without letting the client referencing to the original "Tag"-class at the service-side Your copy of Tags.Tag is a different class than the original Tags.Tag class (even if they are named the same) and hence the collections are incompatible. That's what's causing that error message. Nevertheless, since WCF is built with the service orientation tenets in mind and one of them is "share schema, not class", y ...Show All
Visual J# System.InvalidOperationException Every Time I try a particular Web Reference
Greetings Fellow J# Developers! I am currently working on a project which requires me to make references to the Autodesk Vault Web API. This API apparantly at some point passes in an array of INTS or LONGS. Although I cannot post the code from their end (on account it is closed source), I can post my code that is generating the error (though I don't feel it will be of any help). I posted this to the Autodesk Vault user group, and this is the reply that I got: Reply From: Doug Redmond \(Autodesk\) Date: Jul/25/05 - 12:27 (GMT) Re: GetLatestFileAssociationsByMasterIds can not be reflected ...Show All
Software Development for Windows Vista Media Center just gives me a black screen build 5321
Hey everyone, Media Center just gives me a black screen. I've tried reformatting, changing hard drives. It just simply doesn't want to work. Any ideas Thanks. im pretty sure its a video driver issue. if you start the computer w/ enabled vga mode. you can run a decent res and the media center will run but it is a little on the buggy side. this build is running on a P4 530 w/intel chipset pci express nvidia geforce 6800 GTO 16x from dell. i was wonder if you all also had nvidia video cards. maby it is an issue only with this build and nvidia cards ...Show All
Visual C# DataBase - Duplicate Records
In my form, in a button_Click event, I have the Insert Query command. How do I prevent from inputing a duplicate record Can anyone help If you need more clerfication, just reply. The problem with FindByID() is that it works against a local copy of the data - there's no way to determine if the record exists in the data store or not. Someone could have added or removed the record from some other location or you may be working with a subset of data. In Access, you will probably have to write a look-up method that checks for existence of a record before deciding what to do: update or insert. ...Show All
.NET Development I can't send mail
I write this code but it doesn't work. It just show "Email didn't send succesfully". I didn't know how to add UserName, Password and Port. Please help me. private void Button1_Click( object sender, System.EventArgs e) { Button1.Enabled = false ; try { System.Web.Mail.MailMessage myMessage = new System.Web.Mail.MailMessage(); myMesage.To = txtDen.Text; myMesage.From = txtTu.Text; myMesage.Subject = txtCD.Text; myMesage.Body = txtCT.Text; myMesage.Priority = MailPriority.High; myMesage.BodyFormat = System.Web.Mail.MailFormat.Html; System.Web.Mail.SmtpMail SmtpMail; SmtpMail.SmtpServe ...Show All
Windows Forms Soap exception while inserting animal in terrarium
Hi, If try'd to insert a critter into the eco-system, using the 1.2 client. First i got a message that the server was experience troubles. The next time i got a soap exception stating that there was no disk space available on the server. hth, Nico Schoemaker. What server are you using www.terrariumgame.net/Terrarium hasn't worked in ages. My server ( www.davidandangela.ws/Terrarium ) is currently down and probably won't be back up till the end of the week. (New machine arrived just a little late.) I'm not aware of any other public servers. ...Show All
Visual Studio Team System Web Test and Username / Password
Hello I have created a web site with Windows Authentication, allowing one specific user to have access to it, and all the other one are denied. So in web.config: <authentication mode="Windows" /> <authorization> <allow users="domain\username"/> <deny users="*"/> <deny users=" "/> </authorization> I wanted to do some testing ...Show All
Visual Studio "Only for me" installation of packages
Hi, Our customers want to be able to install our integration with "only for me" installation type. Is it ever possible As I know Visual Studio and all its packages are installed under HKLM only ("all users"). So, what about installing packages under HKCU only Thanks in advance, Yes, all packages must be registered under an HKLM key so per-user installations aren't really possible. Visual Studio doesn't currently support per-user packages, though it does support per-user add-ins. Please add a request at http://lab.msdn.microsoft.com/productfeedback/ so we can track how i ...Show All
SQL Server About Indexes & Where caluse
Hi, I am struggling with the sequence of parameters in my where clause. In my databse table i have index on Broadcast_Date(some table field).The Index also include some other parameters which might become part of where clause. The first field of the index is broadcast date. So I want to know whether it is always compoulsory to have broadcast date as my first field of where clause. Will it not scan the index if my where clause is starting with any other field which is also part of index. Will it hamper the query performance any way Any help will really be appreciated. Thanks Vyanki Hello, the orde ...Show All
Visual C++ Tool to convert from /clr:oldsyntax
Hi there, At one point there were rumors that MS would post or sell a tool to convert from the old managed C++ syntax to the new C++/CLI syntax. Stan Lippman wrote a series of articles on his blog: http://blogs.msdn.com/slippman/ The beta docs included a reference to it: http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=c0ee7a81-9636-48d8-99c5-891afa4a017f Ronald Laeremans from the VC team hinted that it might come: http://groups.google.com/group/microsoft.public.dotnet.languages.vc/browse_thread/thread/fe1df799a46bcce4/c9a0ae46a4d8e9bf lnk=st&q=mscfront+cli&rnum=1&hl=en#c9a0ae46a4d8e9bf ...Show All
