lou_1's Q&A profile
Windows Live Developer Forums Recommended Javascript IDE?
Considering Virtual Earth can require a fair amount of javascript coding and server side, what are people's recommended setup I'm just using Visual Web Developer Express for most of it and then using C# Express Developer for any libraries. What would you guys recommend for a javascript IDE Are there any that provide good intellisense support like the visual studio products This looks promising -- haven't driven it yet though: http://www.aptana.com/ ...Show All
.NET Development How to reject addNew() or Update command on the "parent child data" mode?
Hi I use vb.net 2003 I make a data form with one XML file. I read XML file with dsName.XMLRead(file name) XML File is Parent Child format and one parent included many children. I use 2 dbGrid for showing these data and use many textboxes on the form. I Bind textBoxes to DataSet. for example: txt1.text ===> ds.tblParent txt2.text ===> ds.tblChild GridParent ===> ds.tblParent GridChild ===> ds.tblChild and more... when I click on the Add New Record Button, AddNew() running and when I input data into txt1 and then lost focus (txt1) a new record on the ds.tblParent Saved with this commands: EndCurrentEdit() & AcceptCahnges() when txt1 lost focus, txt2 (child record) got focus and for many record added with txt2. at the last ...Show All
Software Development for Windows Vista Problem with activity execution status
Hi All, I am having a state machine XOML Workflow which has custom activities in it.I have the activity execution status method for the custom activity.When i run the xoml i am able to create the workflow instance but i am not able to get the workflow in the method what i have in custom activity to execute.I set a breakpoint in that method and tried running the workflow.I am not able to execute the custom activity in the workflow.Can anyone help me to sort this out Thanks in advance. Karthick. If you are using XAML Activation, passing XmlReader to CreateWorkflow, then you can't include the x:Class attribute in the xoml file. Remove the attribute and you shouldn't get the error any more. If the ...Show All
Windows Forms Design Buttons To be used in c# other than the original ones
how i can design new buttons to be used in c# other than the original one,what programs should i use If you don't want to create those buttons by yourself, you can use a program called sikncrafter. You can draw those buttons by yourself int button's paint() event. Check this: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=42809&SiteID=1 There's also something: http://www.windowsforms.com/ControlGallery/default.aspx Category=23&tabindex=5 Timo ...Show All
Visual Studio "Version not found" using SS GET!
Hello there and thank you in advance for any help. I've read some other threads about similar problems but my issue seems to be unique. We had a VSS 6.0d database and we migrated to VSS 2005 (server and client). The database import went fine and all has been working quite well overall. I create a sidestream of several projects by sharing them over but when we use our automated build script which calls "ss get" on those projects, it appears that files that havn't been changed since before the migration are coming back with "Version not found". Using SS Explorer works fine but the command line utility fails. Any help would be much appreciated! Regards, Phil yes, can someone please provide more info on changing the c ...Show All
Visual C++ Extending CEdit problem
Used Class view to Create a new Class: class CEditEx:public CEdit. Without doing anything further an attempt a complining gets the following results: EditEx.cpp(12): error C2440: 'initializing' : cannot convert from 'size_t' to 'LPCSTR' EditEx.cpp(12): error C2440: 'initializing' : cannot convert from 'CRuntimeClass *(__stdcall *)(void)' to 'CObject *(__stdcall *)(void)' Everything is pointing to IMPLEMENT_DYNAMIC and is microsoft implemented code. Can someone explain what is going on. When I attempt to add a new variable to the project dialog the new variable type isn't shown. Thanks for any help MtEvans === Edited by MtEvans @ 13 Dec 2006 10:53 PM UTC=== There has been 10 views si ...Show All
SQL Server AMO. Aggregation designs can't be deleted? Is this a bug?
Why this code public static void ClearAggregations( MeasureGroup pMg) { if (pMg.IsLinked) return ; foreach ( Partition lPart in pMg.Partitions) { lPart.AggregationDesignID = null ; lPart.Update(); } pMg.AggregationDesigns.Clear(); pMg.Update(); } doesn't work What are needed and suffisient calls for deleting af all aggregation designs in a MeasureGroup >For example, in cube editor, in online mode in Visual Studio: >when somebody deletes a MeasureGroup from the cube (by calling as usual cube.MeasureGroups.Remove), >we don't want that delete to happen on the server until the user explicitly saves. :-) But If the c ...Show All
Visual FoxPro Organizing project files
I'm trying to clean up unused files. Over the years my.pjt has piled up about 400/800 files of all sorts (.prg, .scx, .vcx, .mnx, .bak, .ini, .xml, .vbr, .err, .dbf, .fpt., .txt, etc.): located in 10 directories ... which is just cluttering up those directories. Is there any suggestable (lazy) way to re-organize and/or clean up (discard old unused files) or copy out only the my.pjt vital files (other than excluded report files, help files, and picture files). Thanks in advance, Thanks again, David, for your thoughtful feedback, That'll seem to help keep My.Pjt clean before dissecting out obsolete files; I'll have to test it though for 'included' vs. 'excluded' files and such. Thanks again for your invaluable feedback. ...Show All
Visual Studio Express Editions Always Round Up in Visual Studio 2005
Okay Ive gone threw the forums many times and I have yet to find a clear beginner answer. I would like something that has any number that has a decimal to round up..no matter what the number/decimal is. Sorry if I sound rude Im just a little bit annoyed and not being unable to understand a lot of this. Quibbling a bit: the compiler will complain about this code with Option Strict On and it will generate an OverFlow exception for very large numbers (1E19). Avoid this with: Module Module1 Function RoundUp(ByVal Value As Double) As Double If Value < 0 Then Return Math.Floor(Value) Else Return Math.Ceiling(Value) End Function Function RoundUp(ByVal Value As Decimal) As Decimal If Value < 0 ...Show All
Visual Studio Team System Windows share point services
Hi I am not sure if this is the correct line of enquiry however if it is not could you please forward this question on to the relevant one. At present when i open my company intranet the focus shifts to the page viewer web part at the bottom of the page. I want the page to load normally without automatically shifting focus / scrolling away down to the page viewer web part. The web part consists of a outlook web access windows like the one in microsoft outlook 2003. Any help would be great, thanks Hi, Is this a problem with something you are developing If so, what language are you using to develop the web app To me, it sounds like you might find and answer in the .NET forums. If this is still ...Show All
Visual Studio Can't Register or Unregister Recipe
Hello there. I was working with the HOL and After few bumps and bruises I was able get to as far as modifying the HolPackage.xml with Snippet. But After that when I went back to start the DSP project , I get error and says that the reinstallation of GAT is required since the HolPackage.xml has been changed. When I went back to the hands on lab I started to get error on Register and Unregister recipe too. I reinstalled the GAT but that didn't help. Has anyone faced this problem. I am pretty sure I am not the only one with this problem. Anyone willing the share the solution The squigly brackets went away when I changed the <Templates xmlns=" http://schemas.microsoft.com/pag/igt-template " to xmlns=" http:// ...Show All
.NET Development how to put the connection string for a serviced component?
Hi, I am new to serviced component and is doing some study. I created one serviced component and use it to connect to a database. The function is OK but I am wondering where to put the connection string In web, I can put it in the configuration file web.config, if it is a exe, I will put it at the config file. For serviced component, it is a dll. So where should I put the connection string Just in code Many Thanks The following article provides several ways to securely store a connection string: Building Secure ASP.NET Applications: Authentication, Authorization, and Secure Communication http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnnetsec/html/secnetch12.asp Specif ...Show All
.NET Development FileLoadException(Access is denied) execption when loading an assembly
Hi, I have a VB.Net app developed and run on Windows 2000 for sometime without issues. Now I am testing it on a Windows 2003 server machine and start getting problems. The one that remians to be our major road block now is a FileLoadException when loading a private assembly from app folder. (See the error message bellow) This app is an IIS based .Net Remoting server. In other words, this is my Remoting server that runs on HTTP channel and using IIS (ASP.Net) as provider. The error occurs when my Remoting client invokes the server. I noticed that one thing differs from the Windows2000 (the machine that works) and the Windows 2003 server (the one that has the problem) is that once invoked, a folder named C:\WINNT\Microsoft.NET\Frame ...Show All
Visual Studio Express Editions database
can u help with the display data, i have one mdf tha manages all the employees, but i'd like to show only one category... i searched the web and i found a look and find method but it didnt work.. how can i do do u know where to find an example... kisses the search would be simple enough to do. Again you can use the links above but modify the code. so you can do a search and its syntax would be this: SELECT * FROM employeeTable WHERE employeeID = idKey and maybe fill a dataset using a dataadapter as shown in the links and bind it to a control for example. ...Show All
Visual C++ using activex
Hi I know that there are some activex controls that are licensed for developpement and others do not. The particular activex control that I am trying to use simply doesn't work... the only method that works is the aboutbox that displays the about dialog box of the program I am trying to use.. nothing else So the question is: how to know if an activex control is usable or if it is not Am I doing something wrong because I have used the same method with other activex without a problem Cheers-Yamobe Please see this article on licensing of ActiveX controls http://msdn.microsoft.com/library/default.asp url=/workshop/components/activex/licensing.asp ...Show All
