ADHDsowhat's Q&A profile
Visual C# JLCA converion report links do not work?
I'm running VS.NET 2005 Enterprise and I have run the JLCA on a set of Java files and it has generated the Conversion Report but when I click on any of the links I get the following Sorry, no topics were found for the selected link. Keywords = IndexMoniker = Source URL = the links in the report are of the form; ms-help://MS.VSCC.v80/dv_commoner/local/redirect.html index='!DefaultContextWindowIndex'&keyword='jlca1133' I have downloaded and run the JLCA help installer (which I realized later may be the cause of this problem) and it installer completed without error Any ideas of how I can get the help on JLCA to work Hi David The problem reporting by you will occur if you dont ...Show All
Internet Explorer Development Animated Gifs
Hi Everybody!!! It seems that there is a problem with Internet Explorer 7: I have a web page with animated gifs that works fine with Internet Explorer 6... but it seems that these animated gifs don't work well with Internet Explorer 7. Now, from the begining: I created a web page in which I use some animated gifs to roll-up buttons. I use the traditional approach in which I load the gif image first into an array, as follows: document.images[this.lngImageIndex].src = this.arrAnimationLib[this.lngNextAnimationSequence].imgAnimation.src; Where: "this" is the typical JavaScript class implementation, arrAnimationLib is an array of objects, who then they have "imgAnimation" as a property which is an obje ...Show All
Visual Studio Express Editions Loading external app
I want to create an application that opens a program that I have installed on my computer when I press a button on my form, e.x "C:\Program Files\AutoCAD 2007\Acad.exe\". What object or methods should I use Thanks.. In Visual Basic 6 was a command Make .exe to create a standalone exe for the project I codded. I need the same thing in VB.NET. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How to import a 3d Model in XNA framework?
Can anyone explain me howto import a 3d model in an XNA project In which format I have to export my model from 3ds max 7 Jocphone wrote: Don't worry, its perfectly safe :) That's the trouble tho', I do worry and downloading .exe files posted on forums is beyond the level of risk that I'm willing to take with a work computer so I will have to pass unfortunately. cheers, Joc Ok fair enough, If you don't want to use it theres no problem. ...Show All
Visual Studio Team System Need help regarding Introspection engine's behaviour towards calling of overriding methods.
I have created a custom rule in FxCop 1.35 where I m checking for the proper documentation of exceptions thrown from a method or methods called from the method being analyzed. I m analyzing the following code using this rule. /// <summary> /// This class is a base class which we will /// use to derive other classes from. /// </summary> public class BaseClass { /// <summary> /// /// </summary> public virtual void TestMethod () { throw new ArgumentNullException(); } } /// <summary> /// This class is a derived class which overrides /// base class method. /// & ...Show All
Visual Studio 2008 (Pre-release) ScaleTransform and Line width
Hi, I am not sure if I am doing something wrong. I want to fit a sine curve on a canvas object. So I calculate the necessary ScaleTransform object and set that transformation. When I resize the application I also want to resize the canvas (and also the sine curve). After applying a new ScaleTransform the line width becomes bigger. How can I avoid this - do I have to use another transformation instead of scaletransform Thanks, Franz There are basically two ways to scale a geometry without affecting its pen: Place a ScaleTransform on the Transform property on the geometry itself. Use a Shape with Stretch=Fill and cause the size of the shape to change. The former method is more cumbersome if you ...Show All
SharePoint Products and Technologies Urgent!!! Dropdown list load event handler not firing in a connected web part
This is driving me nuts. I have a web part A which provides a person code to web part B to show the schedule of the person. Both web parts are using drop down lists. Connection between two web parts and sending the person code is done ,np in that. If I move the code inside of the drpDownSchedule_Load to RenderContents event everything works fine except the fact when I choose something from the drop down list in web part B and page gets post back, I lose the view state (which I think is another issue). so I put everything in the load event with the hope to check for the post back myself,but now dropdown list in web part B is showing nothing. I guess there is a timing issue from when I invoke the person code from w ...Show All
SQL Server why data can not be totaled by dimension
dimension's data can be seen when we click the brower ,but the measure's data can not be seen,why how to settle thank you! Not sure what your question is. Can you describe your situation in bit more detail. Edward. -- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All
SQL Server storing packages in sql server?
I understand that packages can be stored in the MSDB database. However, is it possible to store packages in another database and have them managed by the SSIS service ...Show All
Visual Studio Express Editions Path in VS 2005
I am having a hard time creating a path to my images folder whether it be an absolute or a relative path. I continue to get this error can somebody please help this is time sensitive. Thanks DKB System.IO.FileNotFoundException was unhandled Message="\images\die0.png" Source="System.Drawing" StackTrace: at System.Drawing.Image.FromFile(String filename, Boolean useEmbeddedColorManagement) at System.Drawing.Image.FromFile(String filename) at My_Craps_Game.Form1.DisplayDie(PictureBox picDie, Int32 Face) in C:\Documents and Settings\David\My Documents\Visual Studio 2005\Projects\My Craps Game\My Craps Game\Form1.vb:line 99 at My_Craps_Game.Form1.rollDice() in C:\Documents and Settings\Davi ...Show All
SQL Server SSIS Inner Join Problem
I have a Merge Join transofrmation that takes as input Table1 and Table2, which are each OLEDB Sources. Both tables have IsSorted set to true and the join key set to position 1. Table1 contains 242 rows. Table2 contains 61 rows. I connect Table1 and Table2 to my Merge Join Transformation, and slect the join key. For some reason, during transformation, the join is messed up because it spits out 69 records. If I write an equivelent statement is T-SQL, the results are correct: Select Table1.Col1, Table1.Col2, Table2.Col1 FROM Table1 INNER JOIN Table2 ON Table2.JoinKey = Table1.JoinKey The results are 242 because every instance of JoinKey exists in both tables. Having double cheked sorting and data types, I am ...Show All
Windows Forms have any framework support windows-based applicaton ?
Hi,all: I'm a new user for prgamming use windows applicaton. In web applicaton programming, I had use some framework like UIPAB,Spring ...etc. Using framework can let me follow some rule to design my business logic. So I think this is the same as windows-based application. But I haven't found any framework use in windows-based application. Is there any more popular framework support windows-based applicaton thks. Rock You probably want to check out: Spring.NET and Microsoft CAB (composite UI application block) Daniel Leuck Ikayzo, inc Now hiring WinForms architects in Hawaii! Apply Now ...Show All
Visual FoxPro VBA to VFP code conversion
Can anyone help with converting the following from VBA code generated in Excel to VFP code: Sheets("Notes").Copy Before:=Workbooks("AB0KF3FK.XLS").Sheets(1) Thank you Well, Worksheet has a Copy method, so I'm not sure what the problem is. Try saving a reference to the before worksheet and using that reference in the call: oBefore = loWBTo.Sheets(1) loWBFrom.Sheets("Notes").Copy(oBefore) You might also try working with this from the Command Window to help you see exactly what's going on. Tamar ...Show All
Visual C# VS 2005: "Key not valid for use in specified state"
Hi all- I'm running VS 2005 final release version. I have a solution with two projects in it; an ASP.NET website in C# and a VB project which is my data access layer. Yesterday, this code was working fine. I can compile and run the solution, and all the code works. But when I try to access or add a new datasource through the VS 2005 Data Sources Explorer, I get a popup which says: "An unexpected error has occurred. Error message: key not valid for use in specified state." This message pops up after I select database as the source of my new datasource. The wizard does NOT fail if I use a Web Service as my new datasource. Any ideas on what is happening, and how to clear up the problem ...Show All
SQL Server Calling SSIS packages from ASP.NET - Packages with file system tasks end abruptly
I've run into a problem with SSIS packages wherein tasks that write or copy files, or create or delete directories, quit execution without any hint of an error nor a failure message, when called from an ASP.NET 2.0 application running on any other machine than the one where the package was created from. By all indications it appeared to be an identity/permissions problem. Our application involves a separate web server and database server. Both have SQL Server 2005 installed, but the application server originally only had Integration services. The packages are file system-deployed on the application server, and are called using Microsoft.SqlServer.Dts.Runtime methods. For all packages that involve file system tasks, the above problem occurs ...Show All
