Paula's Q&A profile
Visual C# FAXCOMLib
Has anyone had any luck to get faxing working with C# Here is the code I have using System; using FAXCOMLib; namespace ConsoleApplication3 { /// <summary> /// Summary description for Class1. /// </summary> class Class1 { public Class1() { } public void FaxDocument(String TheFile, string faxnumber) { FAXCOMLib.FaxServer server = new FaxServerClass(); FAXCOMLib.FaxDoc doc = null; int response = -11; try { server.Connect(Environment.MachineName); } catch(Exception e) ...Show All
Windows Forms Datagrid question please help.........
Dear How can i remove the blank row ( a default stared row) appearing at the end of datagrid...... It makes problems for me ...... Somebody please help........ regards Anz Hi Anzu, U only set DataGridView. AllowUserToAddRows = False. Hope helpfull. Khiem Vo. ...Show All
.NET Development How can I create XML file from an existing database table?!!
Would any one tell me if there is any tool avaiable to assist me to create XML file from some selected column in a table database !! populate a dataset and use the features to expose the xml and save it to a file, you could write this as a windows app very quickly. i know xml spy can create schemas and managed classes from database tables as the data containers, but not sure about the data. ...Show All
.NET Development error with sytem.xml.dll following VB.net video tutorials
hey all. im not sure whats wrong here, as i've been following the RSS feed reader video tutorials on the microsoft site for VB express, and have come across an error i just can't seem to get rid of. I have got as far as the section on downloading the MSDN rss feed, and i'm getting an error on the line: rssDoc.Load(rssStream) The error helper tells me: '>' is an unexpected token. The expected token is '"' or '''. Line 3, position 63. and the "immediate window" tells me: A first chance exception of type 'System.Xml.XmlException' occurred in System.Xml.dll i have manually typed in the code as i see it in ...Show All
Visual Studio 2008 (Pre-release) Current minimum install
What is the current minimum install on a client machine for a WCF app Thanks. //If you just want runtime to run WCF apps,Following info may help I have downloaded the WinFX Runtime Components January CTP. Can I use that in my application when deploying in a live operating environment No. The Go-Live License only permits deployment in live operating environments for the Go-Live* versions of Windows Communication Foundation and Windows Workflow Foundation referenced in the Go-Live License. Installations for deployment in live operating environments must be done with the standalone downloads fo ...Show All
Windows Forms Problem with access database in vb.net
Hi, Iam doing a vb.net project with ms access database. Iam facing a problem with this piece of code. --------------------------------------------------------------------------------------- qry = "UPDATE tbl_users SET password='" & txtPwd.Text & "' WHERE user_id=" & gUserId Cmd = New OleDb.OleDbCommand(qry, Conn)   ...Show All
Visual Studio Team System tf get latest to a specific location
is it possible to get latest version of file to any location I want with tf Not just to the workspace Thanks Avi Hello, unfortunatelly no - get is always performed to the mapped location. You can look at tf view command, it let you download copy of the file to the temporar location. ...Show All
SQL Server Problem with Dimension
Here is the scenario. One of the attribute of my Dimension encounters error when I try to browse it using the Dimension Browser. The data of this attribute comes from a derive column. One of the parent Key of the attribute has blank value, and when this will be click. The error comes out. Error Message: The server sent an unrecognizable response. Additional Information hexadecimal value 0x0F, is an invalid character. Line1 (System.Xml) The work around I've done is to delete the rows from the table that produces blank value into my derive column. The solutions works fine, the parent key from my dimension with blank value is gone. B ...Show All
.NET Development Error when opening component containing OleDbDataAdapter
When I open an existing component containing an OleDbDataAdapter, or when I try to add an OleDbDataAdapter to a component, I receive the following error message. Up til today, this has worked flawlessly. I am using C# in VS.NET 2005 beta 2. Error HRESULT E_FAIL has been returned from a call to a COM component. at EnvDTE.OutputGroup.get_FileCount() at Microsoft.VisualStudio.Design.VSTypeResolutionService.GetProjectOutputs(Project project) at Microsoft.VisualStudio.Design.VSTypeResolutionService.EnsureAssemblyReferenced(List`1& newReferences, AssemblyName name) at Microsoft.VisualStudio.Design.VSTypeResolutionService.Sy ...Show All
Visual Studio Express Editions mscoree.dll not found..and I do not want to install dot net framewor
Im using VS express VC++ studio 2005 Is there anyway at all I can create windows applications..forms and everything and once I compile it to an .exe ] can it run without the dot net runtimes How can I create applications in VC++ without using dot net runtime say for example I need to create a .exe and want it to run out of the box in windows 2000 or windows 98 .without the need to download dot net runtime. can it be done using VS studio express// If not can it be done using the full version VS studio 2005.. Please follow your other post at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=262792&SiteID=1 ...Show All
Visual Studio 2008 (Pre-release) MaxMessageSize Exceeded
I getting a maxMessageSize exceeded error returning a DataSet from a WCF service. The error indicates my maxMessageSize value is 65536, but I have actually set it much higher. It seems like it is not reading the value I have entered and is using a default of 65536 no matter what. Do i need to specify this maxMessageSize in more places than in my Client app.config file You need to increase maxMessageSize on both the client and the service. In recent CTP builds this knob was renamed to maxReceivedMessageSize and is only in effect on receive (hence the name change), in which case you would only need to modify ...Show All
Visual Studio VSS Internet over HTTPS using forwarded requests
Hopefully this is solvable but... Here is the setup that I am using which partially works: HTTPS Server (Routes calls to our internal HTTP server) https://secureserver/hop1/appname/SourceSafe/VssService.asmx HTTP Server (VSS Internet Server) http://localhost/SourceSafe/VssService.asmx So I have everything working internally but when I connect to this configuration externally through HTTPS it fails on the "Get Latest" (and likely all other requests) indicating a URL of https://secureserver/SourceSafe/VssService.asmx I understand what is happening is that the VSS Site is using a relative URL ...Show All
Visual Studio Realease 2 VS2005 Export Error
I have a crystal report that I migrated from VS2003 into VS2005. The issue is that when I click on the crystal report tool bar to export the data, I get a blank screen. This used to work in VS2003. I can export to all of the other formats but not PDF. I have installed crystal report release 2. I push the data to the report. 'CR Variable Public customerreport As ReportDocument ''Fill the dataset with the data retrieved. The name of the table adoOleDbDataAdapter.Fill(Dataset81, "Client_Individual_Test_Schedule" ) customerreport = New ReportDocument() 'Create an instance of the strongly-typed report ...Show All
Visual Studio Team System Centralize suppressions (no more attributes) in VS2005
Using VSTS, how can we avoid having to suppress violations all over our codebase I'm aware we can suppress things at an assembly or module level, but that's not my intent. I want to have fine-grain control, yet don't want my codebase polluted with all those attributes. This is the only reason we can't use the built-in Code Analysis in VSTS -- it screws with the code. I just want a separate analysis file that can store all the information it needs to, and stays completely separate from the source, but still get the benefits of VSTS and Team Build integration. Is there a way to hack the teambuild/msbuild stuff to use .fxcop project files but ...Show All
Visual C# a value simplified? etc. 27 > 30, 54 > 60
Hi, I need a value raised up to the next zero, like in the following example: 35 > 40 67 > 70 143 > 150 and so on. Does anyone know a good way to archeave this Please let me know >> n = (n+9)/10; um... That's not going to work. How 'bout: n = ((n+9)/10)*10 ; ...Show All
