Roman Sedov's Q&A profile
.NET Development Invalid URI
Invalid URI When Login in my .aspx page ...Show All
Visual Studio tasknavigated event
I am using the tasklist object in my add-in and have an eventhandler for the tasknavigated event. Here is the code in the handler: if (myTaskItem.FileName != "") { TextWindow myTxtWin; TextPane myTxtPane; myTxtWin = (TextWindow) applicationObject.ActiveDocument.ActiveWindow.Object; myTxtPane = myTxtWin.ActivePane; myTxtPane.Selection.MoveToLineAndOffset(myTaskItem.Line, 1, false ); myTxtPane.Selection.SelectLine(); navigateHan ...Show All
SQL Server two datasets: result of query 1 has to be insert parameter of query2?
Hi, I wasn't sure how to summerize my question. Maybe I can explain it here a bit more in depth: I have a dataset which takes 1 parameter. This will return a dataset. I want to do another query but this time with a parameter the dataset returned. Example: Query 1: select id, name, otherid from <table> where id = @id Query 2: select value1, value2, value3 from <anothertable> where otherid = .... (otherid from query 1) I ...Show All
Visual FoxPro empty field
is there a better way of checking for empty fields than select *; from myTable; where field1 = " "; into cursor data1 i need to run a complete check on the database for empty records in every field. How would i check for a 'date' data field Mike Where EMPTY(field1) This will work for all data Types. If you want to check every filled you will need: Where EMPTY(field1) or EMPTY(field2) or EMPTY(field3)... if you want some ...Show All
Visual Studio Tools for Office Problem with managed com add-in (The macro cannot be found or has been disabled because of your macro security settings)
Problem with managed com add-in : I developed a managed com add-in in vb.net for MS Word 2003 application. I have added a commandbarbutton control in one of the existing commandbars(Tools). When i click the commandbar i am opening up a form and displaying some data.Everything works fine.. I did build the main project and setup project and i install the same application in the same machine i developed. When i open the word document and ...Show All
Smart Device Development Close the message box just by touching screen
Hi, I am using VB.net and Visual Studio 2005 to compile a program. Some messages have to appear on screen in order to tell users what the program completed, such as, "Update Succeed", "Item Was Not Found", etc. However, in order to close these message box, users have to use pen to click the "ok" on the right upper corner of the message box. What I want is: instead of clicking the "ok", users can close t ...Show All
Visual Studio project wizard place in tree
my new project wizard group appear under "other languages". I would like the group to be at the main level, like Visual C, or under Visual C. How is that done in VS2005 To place your wizard under Visual C++ node move wizards .vsz file to <Visual Studio 8 Install Directory>\VC\vcprojects ...Show All
Visual Studio Team System Importing Bug Database to TFS Work Items
Hi there, I am currently in the process of doing a proof of concept on TFS to prove that it will do what we need to do. Sourcecode I hgave succesfully imported from VSS and all is going well. I now need to try to import our Bugs database from a system called "Jira" http://www.atlassian.com/software/jira/default.jsp clicked=footer into (I imagine) TFS work items. I cant find anything in the MSDN on how I would do this. ...Show All
SQL Server visual studio running too slow
Hi friends after working visual studio (on my report model project) few minutes it runs too slow. i mean clicking on entities ,attributes takes ages to finish. I opened task manager i see "devenv.exe" is taking more than 800,000 k !! am using sql server 2005 standard edition. have you seen similar problem. Thanks for your help. I've seen similar issues. Not quite as bad though. I have a solution that contains 6 projects, includin ...Show All
Visual Studio Team System Dependent requests caching
Hi, I have a problem with caching the requests on the load agents. I have a load test with several web tests. Each web tests contains about 10 requests. Each of the requests has several dependent requests (when executed) like css files, images etc. The dependent requests are almost the same for all the requests - in other words, all tested pages contains same css files and images. A browser of a real user loads those css files and images fr ...Show All
Visual C# data reader issues
im new to c# and trying to make a simple login page. it doesnt seems to extract the pwd fromt he db. it makes hte if(DR.Read()) check alright but the out put i get is invalid password. so it runs the name check but the pass check doesnt go through. void Login_Click(Object Src, EventArgs E) { string strConn = "Provider=SQLOLEDB; server=localhost; user id=#; password=#; database=LoginTest;"; OleDbConnection Conn = new OleDbConnection(s ...Show All
Visual C++ System::Net::...
Hi people! I'm trying get a my ip to text box but i dont no i have to do... I try this code String ^aa; aa = System::Net::IPAddress::IPAddress; this ->textBox1->Text = aa; And existe 2 errors. Error 1 error C2277: 'System::Net::IPAddress::{ctor}' : cannot take address of this member function c:\documents and settings\goncalo duarte\os meus documentos\visual studio 2005\projects\mail32proj\ ...Show All
Windows Forms Expand/Collapse treeview with Compact Framework
Hi all, I need to change the images in node when i expand the - image should come and when i collapse the + image should come back again. But there is no aftercollapse event available with .net compact framework. So with beforeexpand met ...Show All
.NET Development Multe DataBase How to select in runtime ???
I have a Program it use SQL server for database engine. My user have 2(or more) data base (same structure but with difrent data For exampe " Market 1 " and " market 2 " database.). How I can make a Form for selecting wich data base user want to work with it the form will show in start of my program & must list active database name is in server and let user to select. after that program must use selected d ...Show All
Software Development for Windows Vista SQL Server 2005 and WF
Hi. Is it possible to use WF in a managed function/stored procedure in SQL Server 2005 If one have a state machine for order it would be nice to use the same state machine in the webshops and in the stored procedures. Interesting question, never tried that... as you can use C# in the stored procedures now, it should not be a problem to write one that starts a WorklfowRuntime and executes a workflow. The only problem I wou ...Show All
