salvoc's Q&A profile
SQL Server IS install after SP1 fails
Subject says it all; I need to install IS, but the installer says v.2047 of IS is already installed; it it NOT installed. When I go to add/remove programs, under the Sql Server 2005, it allows me to try to install IS, but that also fails, as no components are found for installation. This is SS dev edition, W2003. I can uninstall SS2005 and start over, but is there a quicker way to fix this I don't think this is a known issue. If time to solution is your top priority, probably uninstall/reinstall is the way to go. Otherwise, post links to both the RTM Setup logfiles (%Program Files%\Microsoft SQL Server\9 ...Show All
Visual Studio Tools for Office InfoPath 2003 Tools for Visual Studio 2003
I am a regestered partner, Action Pack subscriber, and part-time developer. I own a copy of Visual Studio Professional 2005 but I do not have a MSDN subscription. I need to create a Visual Studio project to add an enhancement to an InfoPath 2003 form. As I understand it, I need to install the InfoPath 2003 Tools for Visual Studio 2003. How can get the needed tool. The InfoPath tools for the previous version of Visual Studio were available without cost. The only options I see are to pay $2,500 for a Premium MSDN subsription or pay another $799 for a sperate copy of Visual Studio 2005 Tools for Office. That can't be right. There must be ...Show All
Windows Forms Paste to the DataGridView
Hello~~ I want to copy & paste in the DataGridView like excel's cell. When copying, it's possible in the Excel, text or DataGridViewRow, etc. At that time, there are columns in the clipboard using separator like tab or comma. I want to paste to the each DataGridViewCell. For example> 1) excel or DataGridView : A B C 1 abc def ghi 2) copy the rows in the "1)" 3) paste to the DataGridView from the clipboard "2)". DataGridView : column1 & ...Show All
Visual Studio Express Editions Web Developer Express & Nunit?
How do you configure a web developer express project for Nunit integration I let WDE import my VS.Net 2003 code, figuring that I would continue to be able to use the TDD methodolgies, but it doesn't work. It throws a FileNotFoundException, because it can't locate the project dll. I can't even find the project assembly to manually load into nunit. It used to live in the bin folder, where the heck is it now Gac'ed I have googled and searched MSDN and have found nothing on the topic. Can someone throw an old dog a bone and tell me how to get this to work Thanks, Jason Hi! Thanks for asking! I'm a member of ...Show All
Game Technologies: DirectX, XNA, XACT, etc. HLSL pixel shader: problem with tex coord computation/texture lookup
I'm sitting on a strange problem for half a day now and can't figure out why things are happening as they happen. :) What I'm trying to do is to look up a texture with entries of size 3*3 texels each ( g_samCurvatureTex : this is a magnified part of it, the whole tex is repeated like this - I am only interested in the blue channel right now). At first I need to compute the centre index of the entry: #define CURV_TEX_ENTRIES 42 // p_TS.xy are texcoords in the range [0,1] that vary smoothly over the surface int xCM = (int)(p_TS.x * CURV_TEX_ENTRIES); int yCM = (int)(p_TS.y * CURV_TEX_ENTRIES); xCM = xC ...Show All
SQL Server Horizontal scrolling when archive web subscription
Hi, I've designed a report and i send it everyday by mail. I'm in trouble because when I receive the mail, I want to be able to scroll vertically (it's OK) but also horitontally without opening it and modifying it. I have no idea, any help will be welcome. Thanks. ...Show All
Software Development for Windows Vista Latest build for Vista
I am using build 5112, can someone confirm what number the latest build is And how did you get your copy of it I don't remember getting anything later than 5112 from Technet. Thanks. Hi, I have downloaded Vista Beata 1 (Build 5112) and cannot install Visual Studio 2005 becuase .Net Framework 2.0 won't install. Has anyone else had this problem Has anyone successfully gotten VS 2005 of .net Framework 2.0 to install on Vista beta 1 (Build 5112 or any other build for that matter ) Also, does anyone know how to get the latest build of Vista and install it over a previous build. I assu ...Show All
.NET Development .NET framework adoption rate?
We are trying to decide on whether to maintain 1.1 compatibility for our software or use some of the new features in 2.0. Thus we need to know how widely .NET 1.1 has been adopted by end users. If few machines have 1.1 installed we might as well use 2.0 since most users will have to download the redistributable anyway. But if many 2000/XP machines already have .NET 1.1 installed it would make sense to rather stay compatible with 1.1, since our application footprint is small relative to the redistributable. I haven't been able to find good information on the adoption rate of .NET, so I would appreciate any links. It would also be interesting ...Show All
Visual Basic Changing Network Card Settings Using Vb.net 05
Hello, Is it possible to change the network card settings using VB.net 2005 If so... How would I be able to tell be which nic I was changing if there were more then one in a unit. What I am looking to do is when users go from site to site they need the abilty to change from 10/half - 10/full and 100/full to allow them to work properly. Any assistance would be greatly appreciated thank you in advance Marcelo ...Show All
SQL Server Passing variables to data flow component
Hi, I've read the various posts and articles regarding this matter, but I seem to have problems getting to work: In my control flow, I start by declaring a variable named "LastJobLedgerEntryID", to identify the records I need to add to the stage. From there I would like to use this variable in the source component in my dataflow, i.e.: "SELECT [Entry No_],[Job No_],[Posting Date],[Document No_],[Type],[No_],[Description],[Quantity],[Direct Unit Cost],[Unit Cost],[Unit Price],[Chargeable],[Job Posting Group],[Global Dimension 1 Code],[Global Dimension 2 Code],[Work Type Code] FROM mytable WHERE [Entry No_] > " ...Show All
.NET Development Remoting between 1.1 and 2.0 - Index outside bounds of array!
Hi We have a system written in .net v1.1. We have converted the ASP.NET interface to 2.0 ( not beta 2 , but the version that was released with the release candidate of Visual Studios 2005) The Data Access Layer is a .net v1.1 project containing a number of MarshallByObjectRef classes running as a Windows Service. Now when the ASP.NET interface attempts to invoke a method in one of these classes we get the following error, (though we can successfully create an instance of these objects): System.IndexOutOfRangeException: Index was outside the bounds of the array. at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMess ...Show All
Windows Forms MdiWindowListItem oes not reflect changed form text
Just started using the MdiWindowListItem property, but the list does not refesh the text when the text property of the forms changes, until the focus leaves the changed form. Is there a simple solution to this Thanks The Window list is refreshed when either the Visible or Active property of the child form is changed. Toggling the child visibility works, but has an (assumed) undesired visual effect. However, changing the Active state appears to work well for this. One change handles it. In the wizard-generated code for your MDIParent class, add the following event handler: priv ...Show All
Windows Forms Binding to custom collection - select columns to display
Hi - I am trying to bind a datagrid (windows forms environment, VS2003) to a custom collection(not an arraylist) - it works, and I am really happy about it, but when I bind the collection the grid shows all of the additional columns that i don't want displayed. Now I've read loads of articles about binding database tables (Datasets) to the grid and using the TableStyles collection, however all of these notes are(like i said previously) based on dataset binding. I have tried creating my own table style based on the name of my collection but it still seems to show all of the data. I even tried some code from a Frans Bouma's Blog( ht ...Show All
Visual Basic httpwebresponse not support arabic language !!!!
I have to useing httpwebresponse for two pages, One is jsp and other asp. the charset is UTF-8 for both of them, while reading for jsp the arabic character are readed but in asp are not readed it come as spaces In asp page I use that code <%response,charset="UTF-8"%> what is the problem Try to URL Encode the Arabic parameters before you pass them from one page to the other. In ASP.NET you can use: Server.URLEncode("ArabicText"); ...Show All
Visual Studio Textbox over 2 pages
I have a problem when a text in a textbox doesent fit at the end of a page, all text moves over to the next page. What do i have to do to split the text so it would be rendered over 2 pages ...Show All
