vnkt_ravi's Q&A profile
Smart Device Development CABWIZ/Makecab problems
Hi all, I'm having trouble building a CAB file for a CF 2 project. Done the usual steps, Added a Smart Device Deployment project to my solution, set its propertys, go to build and Always get back a message saying ; Error: CAB file "C:\Documents and Settings\DAVE\My Documents\Visual Studio 2005 \Projects\Project1\DeploymentCAB\Release\Project1. CAB " could not be created It's really annoying, I dont want to have to go back to using 2003 to build projects as I really like the new features in CF 2, but if I cant deploy them correctly, then theres no point. Any thoughts/comments appreciated. Dave ...Show All
Visual Studio Team System how to use microsoft.visualbasic dll version .net 2.0 in .net 2003
Hi All, my question is that i have .net 2003 and i want to use microsoft.visualbasic. dll of .net 2.0 version why because i want to do some serial port communication so that's why i want net 2.0 dll so how i use it... any one who guid me.. its urgent.... Thanks Brijesh Brijesh Kumar wrote: is there no way to do this with .net 2003 .. No, there's no way to use assemblies compiled with 2.0 from Visual Studio 2003. ...Show All
SQL Server Trouble importing csv with flat file source
Hi, I am having trouble importing a CSV file with double quote as a text delimiter. The problem arises because one of the text fields has double quotes embedded in it. This file loads perfectly in SQL 2000 DTS, but SQL 2005 SSIS will fail on the flat file source. I would appreciate any input on this. Thank you, Nick Russo According to the documentation, the flat file source cannot parse an escaped embedded text qualifier. (I don't know about non-escaped embedded qualifiers, but I wouldn't be optimistic.) This means that if " is your text qualifier there better not be any in the data. ...Show All
SQL Server Connection Error: (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.
Hello, Please bear with me as I am no Sql Server guru, but am getting this error that is preventing me from continuing with my development work. I am the only developer on my team running Sql Server 2005 and it has been working just fine for the last week. I opened the Management Studio this morning, just like every other morning and got this error: TITLE: Connect to Server ------------------------------ Cannot connect to (local). ------------------------------ ADDITIONAL INFORMATION: A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memory Provide ...Show All
Software Development for Windows Vista WorflowCompiler, rules and parameters
1. Let's say I have a .xoml workflow definition which references a .rules file. If I compile it in runtime using the WorkflowCompiler, will the WorkflowCompiler include the rules in the generated workflow class 2. If this workflow definition includes a couple of input parameters, will the WorkflowCompiler generate the appropriate properties in the workflow class, so the rules I defined in .rules file will be able to use their values 3. Is it possible to develop a custom rules engine (or should I say a condition engine) which could be used instead of the RuleExpressionCondition I'd like to use our existing rule engine which has some ex ...Show All
Visual C# Help - (More advanced) OleDBProblem - Please answer
I have to write a little Client/Server App. where the Client uses a MSDE to check out Data when he gets out of the House. When he reconnects to the System the Client haves to Sync the whole Data (including Authorisationinformations - new Users etc) So right now I've made 2 System.Data.OleDb.OleDbConnection's, connect to one SQLServer, Read the contents of a table/view via the DataReader line by line and fire a insert-Command foreach line! is there a possibility in c# to link this two Connections to be able to execute TSQL like INSERT INTO server.tableA SELECT FROM client.tableB thanks, Dave No there ...Show All
.NET Development Hey problem with IIS
Hey, I am using Windows 2000 prof i am having problem with IIS its not loading the home page when i checked with the url http://localhost in the task manager->> process i can see the inetinfo.exe and asp_wb.exe running. But i an unable to run the IIS server can any one help me in solving this problem Is there any entry in the EventLog .... Let's do better, take a look at this forum, they will be able to help you better. http://forums.asp.net/default.aspx GroupID=30 Good luck, ...Show All
Visual Studio Team System Sharing FxCop project
Hi, I'd like to know if there is a practical way to share an FxCop project between different developers and code reviewers. If you share the project through source safe I guess you would have to chek it out everytime you exclude a message or select/deselect an assembly for analysis and then check it in again for someone else. The goal would be to give all developers the same settings for a particular project, same excluded messages, etc. Any ideas You could argue that what you actually need to do is update to 1.32 (to eliminate the false positive related to the base type extending ApplicationException) and to actually implement the ...Show All
Microsoft ISV Community Center Forums need help for VBA code(MS Access)
Hi all, I need your kindly help. My MS Access Form needs a function like this: I have three text box and one button. When I click button first time, the 1st text box will display the current time . When I click button second time, the 2nd text box will display the current time. the same with 3rd text box . Does VBA code can do this It would be greatly appreciated for any help reagrds, Nancy assuming your text fields are locked, you could forgo the variable alltogether: Private Sub btnYourButton_Click() If IsNull(txtDate1) Then txtDate1 = now() ElseIf IsNull(txtDate2) Then txtDat ...Show All
Visual C# Reading an XML File, Changing some values
Hi All - I have this XML Document here. What I want to do is loop through each item, possible with multiple for() loops but I'm having trouble referencing data. Perhaps it is the way I have the data structured < xml version="1.0" > - < Device Address =" 192.168.1.1 " Location =" San Francisco " xmlns =" Device " > - < System SystemModelNumber =" OPT-2VT4DATR3ETR-A2/A3-FC " xmlns =" System " > - < Card CardNumber =" 1 " Temperature =" 50 &quo ...Show All
SQL Server Connecting to SQL server 2005 express in LAN Using C# express
I tried to connect to SQL server 2005 express in LAN Using C# express I got this msg the file \\blablabla\\blablabla.mdf is on a network path is not supported for database file.An Attempt to attach an auto-named database for file \\blablabla\blablabla.mdf failed. a database with same name is exist, or specified file can not be opened, or its located on UNC share. Is that mean : I can not connect to SQL server remotly using express edition of C# SQL server dosen't support connection in LAN I tried to set all options like enable TCP IP connection and networks by the way T ...Show All
.NET Development FTP usage
Hi. Using .NET 2.0 and its the first time im using the FTP protocol in development. I am trying to issue a few commands, firstly it works fine such as listing a directory however if i wish to disconnect from the server using, lets say "QUIT" or perhaps I wish to upload /download a file, I get an error saying: "This operation cannot be performed after the request has been submitted." Am I doing something wrong or must I create another FtpWebRequest object per command Other thing is, if i explicitly specify a method with a NEW FtpWebRequest, a command to "QUIT" or even "CD dir " it gives me an exception that the method is not sup ...Show All
Windows Forms Which event I should place code Cursor.Current = Cursors.WaitCursor?
I want to show "WaitCursor" when I click column header and show "Default" cursor when that column is sorted. I have tried to place code in ColumnHeaderMouseClick , but it fire after Sorted , Which event I should place code Cursor.Current = Cursors.WaitCursor to show user it's busy on sorting Thanks for any reply. Make a new Class that owns from DataGridView son override oncolumnheaderclick and place the code there. That shoul make it work! ...Show All
SQL Server SQL Server does not exist or access denied
Hi, I have developed a small application using VB6 on Windows XP. Following is the code snapshot. I have added Microsoft ActiveX Data Objects 2.1 Library through Project Reference for ADODB Connection. Public con As New ADODB.Connection Public Sub Main() Set con = Nothing With con .CursorLocation = adUseClient .ConnectionString = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=SCMSUG;Data Source=Admin\local" .Open End With End ...Show All
SQL Server quastion about triggers
hi, I have a few quastions about triggers: 1) I want that to run a specific function or exe, after a row update. How can I run a function via the trigger 2) Is ther any trigger that for an updae of a culomn (not a row) thanks, moria Hello again, "what's BOL, and where can I find it " http://www.aspfaq.com/show.asp id=2229 If this is an external program you sure have to use the exe, but what about wrting a entry in a table that something changed on the program running on an at basis or as a service checks the data, does its recalculation (or whatever) and marks the process as don ...Show All
