Software Development Network Logo
  • Visual C#
  • Smart Device
  • Visual Basic
  • VS Express Editions
  • Visual Studio
  • SQL Server
  • VS Team System
  • Visual C++
  • Windows Live
  • Microsoft ISV
  • .NET Development
  • Visual FoxPro
  • Windows Vista
  • Game Technologies
  • Architecture

Software Development Network >> Curtis Man's Q&A profile

Curtis Man

Member List

Madhu Ponduru -MSFT
Ze Miguel
Michael Barrett
John Bocachica
MartinUruguay
Fai
KetChup103821
astanley
Ben Molk
lanfong
erdal akbulut
ckramer
munkeyboy
Alok Mani
GrijzePruik
Sherif Mahmoud
Kendal
Duelund
knallbunt
hero281
Only Title

Curtis Man's Q&A profile

  • Visual Studio Team System .NET 1.1 FxCop 1.32 SDK Documentation

    Hi all, I am new to FxCop, and can clearly see its advantages. However, I am unable to find any documentation as to how to use the SDK that accompanies the application version 1.32. I am eager to delve into FxCop to utilise it, but without API direction, I can see that I will potentially be introducing more bugs into my current set.  Steve David's information is right on the mark. I've included it (and some additional details) in a new FAQ on this question (which comes up quite a bit <g>). See: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=66507 Michael Fanning VSTS Development: Code A ...Show All

  • Visual Studio Tools for Office HorizontalAlignment

    Hello, (Disclaimer: I am new to VB .Net) I am trying to create an application that automates a spreadsheet (creates worksheets, populates and formats). I want to center the column heading text. This seems to work: xlsheet.range("1:1").HorizontalAlignment = -4108 Why does this work (using -4108) I suspect this is not the obvious way to do this. Hi, The code that you wrote works because it is valid syntax, but it isn't a good way to code. Your question illustrates the problem; I can't tell what this code does by reading it because I have no idea what -4108 is supposed to mean. ...Show All

  • Visual Studio Express Editions Grid Control In VB Express

    Hello All, I have a bit of a problem here. I am in need of an unbound .Net Grid Control. There does not seem to be a grid control available in Express. I am trying to recreate the Permissions/Change Owner form in MS Access. In my VB6 version of this form I used the MS Flex Grid control. I am trying to stick to using native .Net controls in my design. Does anyone know of an unbound .Net grid control, or possibly have a suggestion for an alternate control that I can use for my purpose. I known there is a Data Grid control in Express. Can this control be used in an ubound mode and populated manually I known there is a Data Grid control in E ...Show All

  • Smart Device Development Error Installing CF 2.0 on CPU ARM-Intel(r) PXA255 with CE 5.0

    Hi, I have problems installing the CF 2.0 on a Client with the following Data: CPU : ARM-Intel(R) PXA255 OS : WIN CE 5.0 Error Message at the end of the installation process: "Installation error. Stop all applications and processes, maximize available storage space and run instllation again. Support info:4" Here is the installation protocoll : 17/01/2006 15:00:52: Entered Install_Init(). First Call: Yes Previously Installed: No Installation folder is: '\Program Files\.NET CF 2.0'. 17/01/2006 15:00:52: Build 2.0.5238.00 17/01/2006 15:00:52: Device CPU: 'ARMV4', 05010000 (83951616) 17/01/2006 15:00:52: H//PC 5 ...Show All

  • Visual Studio MSDN Help for Visual Basic 6.0

    where can I donload MSDN library to get a help within the code of the visual basic 6.0 thank you The starting point for the online MSDN library for Visual Basic 6.0 is here: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnanchor/html/vb6anchor.asp I would suggest that when you want specific help for something related to Visual Basic 6.0, search for the term in google, with the parameter to limit the search to the Visual Basic 6.0 section of the website. For example, to look up Visual Basic 6.0 help for Form , search in G o o g l e for: form site:http://msdn.microsoft.com/library/ ...Show All

  • SQL Server How to use SSMSE to connect to instance service directly (without going through Browser service)?

    I have configured an instance to use static port, say 1435, and I turned off the Browser service. I would like to know if I can use SSMSE to connect to the instance database directly. The instance is listening at port 1435 and accepting connection requests from other methods. What I need to put into the "Server name: " field Normally, it would be like: <serverIP>\<InstanceID> with Browser turned on. Now how do I add the port information to it, I tried <serverIP>:<portNumber>\<InstanceID> <serverIP>\<InstanceID>:<portNumber> <serverIP>\<InstanceID> < ...Show All

  • Visual Studio Express Editions Display text at certain time?

    I need help with a certain part of my app. All I need to do is have a textbox display "Open" between the time "9:30AM" and "4:00PM" and then display "Closed" during the rest of the day. Any help would be great! Thanks Set a timer to go off regularly and to check DateTime.Now to see if it's between those two times, and show text accordingly. So, the code would go in the Tick event code for the timer, the timer would be set off in your load event, or similar, and would keep firing while your app runs. ...Show All

  • Visual C# how to start C#?

    Hi All I have been working in  asp.net project using vb.net . Now iam going to start with C#. so Kindly give tips to how to start and  write structured programming And which book is best for C# reference Thank You. I would have to second the recommendation of Programming C# by Jesse Liberty and would have to highly recommend Programming .NET Components by Juval Lowy.  I think you will get a great introduction to component structure and some more indepth details on so many other aspects of C# development. -Rob ...Show All

  • Visual Studio 2008 (Pre-release) Dynamic ComboBox ItemsSource

    I have two ComboBox controls on a dialog. I would like the first ComboBox to control what items are shown in the second ComboBox. When the selected item of the first ComboBox is changed the items available in the second ComboBox will change. The solution I have right now works, but not always. I handle the SelectionChanged event of the first CheckBox and change the ItemsSource of the second ComboBox to the XMLDataProvider that I look up based on the selected item of the first ComboBox. The first time I change out the ItemsSource of the second ComboBox nothing is shown. Every time after that everything works as expected. I have two que ...Show All

  • SQL Server RS Web Service

    Hi, I am getting the following error when tries to call any web method of ReportExecution2005 Web Service from a 2003 Web application. "Server did not recognize the value of HTTP Header SOAPAction: http://schemas.microsoft.com/sqlserver/2005/01/12/reporting/reportingservices/LoadReport ." Please someone suggest me how to fix this issue. Thanks Anobe The URL property is either set in code or if not, the value used when generating the proxy is used.  The value can be found either directly in your code (usually where you instantiate your ReportExecutionService class).  Alternatively you can find out th ...Show All

  • .NET Development How to override DataRow.Tostring()?

    Hi, I'm adding a DataRow to a listbox. The listbox displays the string "System.Data.DataRow" because that's what 'ToString' returns for the object type of DataRow. How can I override what DataRow.ToString() returns I tried creating a derived class of MyDataRow but the DataTable.Rows functions would not cast from DataRow to MyDataRow. Thanks. A DataRow is an object which contains an array of elements and therefore you can't simply utilize the ToString method and expect it to return what you want. You are thinking implicitly and you've got to have a more explicit approach. Before I get into that I just th ...Show All

  • SQL Server How to positioning the tables.?

    Good Day! can any one help me how to posistoining the tables I have a layout ofthe reports. the report is in the landscape view. there are some text boxes in my reports but when i put the tables my textboxes arrangement will be dis arrange. can there be a solution for this Please help me im stuck. thanks Hi, can you explain how the arrangement is being thrown off Sometimes the CanGrow property on TextBoxes can cause unexpected alignment ...Show All

  • Visual C++ Why is "stderr" not constant in the second scenario??

    I'm new to Visual Studio 6.0 and am having difficulty understanding the differences between the standard Microsoft C Libraries used when compiling a simple console application. Here's my C code example: #include <stdio.h> static FILE *_logFile = stderr; /* Line with error */ int main( int argc, char **argv) {  fprintf(_logFile, "hello World"); } There are two scenarios: 1. In the "Project Settings" Dialog under the "C/C++" Tab I set the "Category" to "Code Generation" and then the "Run-Time Library" to "Single Threaded *" or "Multithreaded". The Code compiles without warnings or errors. When I run the exe "Hello W ...Show All

  • .NET Development Data binding

      I'm using Visual Studio 2005 to create a simple website for myself. I'm trying to create a form where new users can sign up by using their basic information. name, email, zip code and so on. My question is how do I link a text input field on the page to the database so when a visitor clicks on the Submit button it sends that data to the database as an update   Thanks.   I assume you mean ASP.NET What is your data source When you say 'using the SQL client', are you saying you're using SQL Server ...Show All

  • SQL Server Express reporting services

    I'd like to graduate from using access as my back-end db to using sql express however i'm concerned that I won't be able to create reports with express.  Is this true   And if it is, is there some third party tool (preferable free) that will allow me to create a reports....Or can I link access to the sql server tables just for reports Thanks,. Hi, SQL Reporting Services will be added to the Express product later this year when we release Service Pack 1. You can use Reporting Services in Express to create reports against your SQL Express databases. You can also create linked tables to your ...Show All

©2008 Software Development Network