B.I. - SQL 2005's Q&A profile
Visual Studio a problem with Exec function
Hi all, I've made a add-in project to generate a new web project.I have a question that after executing onfinish method in default.js should then execute Exec function in connect.cs, but in fact Exec function didn't execute. How to solve this problem Best regards The Exec function is invoked only when you invoke the command that is added by a call to AddNamedCommand[2]. If you have changed the name of the command (by changing the arguments passed to AddNamedCommand[2]) then you also need to change the command name as passed to the Exec/QueryStatus functions. Craig ...Show All
Visual C++ LNK2020/LNK1120
NEW TO C++ AND CANNOT GET THRU FIRST PROGRAM-"HELLO WORLD" BECAUSE OF LINKER ERROR MESSAGES AS FOLLOWS: HELLO1 error LNK2020: unresolved token (0A000015) _CxxThrowException HELLO1 error LNK2020: unresolved token (0A000017) delete HELLO1 error LNK2020: unresolved token (0A00001A) strlen HELLO1 error LNK2020: unresolved token (0A00001B) free HELLO1 error LNK2020: unresolved token (0A00001D) memmove HELLO1 error LNK2020: unresolved token (0A000028) memcpy HELLO1 fatal error LNK1120: 6 unresolved externals THERE WERE NO COMPILER ERRORS. PROGRAM CODE AS FOLLOWS: #include <iostream> using namespace std; int main() { cout << ...Show All
.NET Development Mozilla-onfocus event, need to set the cursor at the end of text in textbox
Hi , I need to set the cursor at the end of the text in textbox in mozilla. I tried the setSelectionrange() method , but i am unable to set it. Plz Help me !!!!!!!!!!!!!!!!!! Hi Joost, Thanks for your reply.I tried this method.It sets the focus at the end in both mozilla and IE. But i need to set the cusor when the focus comes in. <input id="myTextbox" type="text" value="de tekst" onfocus="setCaretToEnd(document.getElementById('myTextbox'));" /> I tried like this, in IE it works fine. But in Mozilla, the entire text gets selected when the focus comes inside the textbox. Any idea would be great Help for me !!!!!!!! Once ...Show All
Visual Studio Tools for Office Unable to install VSTMOS 2005
I have not been able to install Visual Studio 2005 Tool for MS Office Sytem. I get the following message: Office 2003 Service Pack 1 - Microsoft Office 2003 with Service Pack SP1 is not installed on the computer. I have SP1 and SP2 installed on it. I have the Teachers' and Students' version of Office 2003, which might not work with VS 2005 but wasn't Access 2003 another option for installation, as the software box states I have an independent version of Access 2003, and the installation process does not checks Access. Why Hi Eduardo, VSTO 2005 does not work with Teachers' and Students' edition o ...Show All
SQL Server selecting multiple parameters
hi. i've just started using reporting services and i'm running into a problem. basically i have 3 parameters for filtering the report. now, there are no problems when a user selects 1 parameter. but when a user selects 2 or more, it ignores them. ex. i have these paramters: date, location, name. when a user inputs just the date, then there are no problems. but when the user inputs data for date AND location, my report ignores the parameter for location. i want it to be dynamic wherein the user can select a combination of those 3 parameters (date and location OR date and name, or just date). now, i know my error is in my sql query. ...Show All
Visual Studio Team System Dumb Question Dept - how do I "delete" a public build from the list?
Scenario: I perform a team build as a "smoke" test and decide to mark it's quality as rejected. The team makes changes and the second "smoke" team build is successful. Since the changes are logged into Version Control, I don't need the first build hanging around. How do I delete it There doesn't seem to be anything in the beta help or menus that is apparent on how to remove the builds. I can remove the folders from the drop site, but the logs still remain in the system. Short of traversing the database myself, anything else I could do Regards, Michael Shorten Hi Michael, Sorry I missed replying to this thread. You can subscrib ...Show All
.NET Development Trace.Writeline skipped
Hi I'm creating a web-service and am trying to trace to a listener using Trace.Writeline. However, the trace is not being written to and using the debugger, I see its because the Trace.Writeline() line is being skipped. However, if I change it to Debug.Writeline, it gets written. Can anyone help as to why Trace.Writeline is being 'compiled out' Thanks I'm not an expert on ASP.NET applications, so you are best to post this on the http://forums.asp.net forums. These forums are for non-web development posts only. ...Show All
Windows Forms How can I alter the property of the main form control from a secondary form?
Hello, I want to change the BackColor property, for instance, of a control belonging to the main form from a seconday form. How can I do that Please help. Thanks. You guys are making things way tooo hard. Just go to the first MAIN form you have that you would like to get the backcolor from and click the form once. scroll down on the properties toolbar and find where it says "modifier" this is defaulted to private which stops other forms/objects from accessing any proterties set the modifier to public then call the form frmNAME.backcolor ...Show All
Visual Studio 2008 (Pre-release) When will many-to-many be supported in DLinq?
Does anyone know if many-to-many support will be included in the next preview I know that you can already do it using two one-to-manys, I'm talking about a true many-to-many, a la the way NHibernate does it. Jon When you say that it's under consideration, do you mean for the preview, or, in general Can you tell me if it will be included in the final release This is a feature that I consider critical. I also feel that it's important that one not have to use DLinq specific collection classes in their domain model. It should also be DBMS independent with a provider model. ...Show All
Visual Studio ERROR: VSS2005, files in loggedin not going away
I have an issue where if I do an analyze overnight (usually only take 15 to 20 minutes), my database is still locked when I come back in the next morning. This is because when Analyze runs it puts a file named "admin.lck" into the loggedin directory. When it is done, it is not always removing the file. I am also seeing the files that are created when a user logs in not getting removed when the user logs out. I had this problem this morning and I actually had to delete all the files in the loggedin directory so that my developers could get into the database and checkout files. Is there something that I have setup wrong or is t ...Show All
Visual Basic Cross thread call error
I am using VB.NET 2005 I have the following application structure: UI form, a middle layer and a low level layer. They are all running in the same thread. The low-level object creates a serial port (the .NET one): New SerialPort(port, 57600, Parity.None, 8, StopBits.One) and handle its events. Some of these event handlers throw events that are handled by the middle layer that in turn throw events that are handled by the UI. The serial port is running on a different thread than the application and hence the event handlers are not running within the low level's thread. The end result of the chain of events mentioned a ...Show All
Visual Basic Loading Data Using ProgressBar as Indicator
Here we go again folks, hope you help me out on this one...I had a form(frmAccount) wherein it has a datagridview(dgvAccount) that bounded to a certain table of my db.Because of too many records(about 20000), it takes such time(about 8seconds almost) to load all of the data...I had no idea how can I possibly decrease this loading time so I just put a progressbar(pBar) as an indicator of the process.This progressbar was attached in the main form(frmMain)...What I really want to do is, once I clicked the button on the frmMain, pBar would automatically increment to its maximum with respect to the loading of frmAccount...Simply put, unt ...Show All
Smart Device Development Question about RSS Feeder/Aggregator
Hello, I would like to know if there is a simple example of an RSS Feeder/Aggregator out there. I did some research and found PocketFeed, but I cannot seem to be able to open up the sln in Visual Studio. What I would like to do is this: I eventually would like to offer people updates and news about the simple programs I am creating. Does anyone have experience or comments about this Any input would be appreciated. You all have helped me so much already! Thank you! Martina http://blog.opennetcf.org/ayakhnin/PermaLink.aspx guid=70c9a4c0-57e2-45fe-b106-941250744266 ...Show All
Visual C++ Application does only start on PC with installed Visual Studio
I have written an MFC application with Visual Studio 2005 (C++). I use 4 dlls wich have been statical bound to the project (no dynamic loading). All things compile fine and on every PC where i have installed Visual Studio, it is working as release or debug version. But when i try the application on Windows XP without Visual Studio installed on it, the application does not start but brings me a error MessageBox and thats it. The error that is shown is: "The Application could not start, because the application configuration is not correct. You have to install the programm again." What does that mean How can i get my app ...Show All
Visual Basic Can I use Tutorial Video for VB 2005 Express Ed. with Vis. Stu. 2005 ??
Hi, Ive found some beginners videos for VB but require Visual Basic 2005 Express Edition... I have VB 6 and Visual Studio 2005 , Can I use VS 2005 for the projects. thanks MSDN offers a free book called "Introducing Visual Basic 2005 for Developers" that you can get from http://msdn.microsoft.com/vbrun/staythepath/additionalresources/IntroTo2005/default.aspx ...Show All
