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

Software Development Network >> Feo's Q&A profile

Feo

Member List

Dave in Colorado
Micahfox
yousef.net
Flavio_ita
Richard Arthur
Taurineman
raceirolg
Anton de Gruchy
bmartin
Suresh1977
Dalik
Radhakrishnan
Computer_Man_With_Questions
John Simons
Gage
Yiannis Piros
BubbleGirl24
emau_son
Bob Pokorny
DenisM
Only Title

Feo's Q&A profile

  • .NET Development How to pass custom object to WebMethod?

    Want to pass my Currency entity object to a webmethod.  I have marked the object as Serializable.  However, another object with the same class name Currency(generated by VS.NET 2005) is required when I try to use the webmethod.  Why   How can I pass my entity object Thanks You can also use the XmlInclude attribute to specify the type that you want to use instead of the generated one. Daniel Roth ...Show All

  • Windows Forms Multi-threading problem with Windows Forms (possibly SerialPort too)

    I've been having a problem when updating a windows form from a different thread. Data is received on using a SerialPort class which fires the DataReceived event (on a different thread). This thread then calls a method on a form which updates a text box. The code used in the method is just like the sample from the MSDN below, which reroutes the call so that the textbox update is done from the same thread. private void SetText(string text) { // InvokeRequired required compares the thread ID of the // calling thread to the thread ID of the creating thread. // If these threads are different, it returns true. if (this.textBox1.In ...Show All

  • Visual Studio Express Editions Dummies Books Vs The RTFM Route....

    Hi There I just bought two Books VB 2005 Express Edition For Dummies and VWD 2005 Express Edition for Dummies..... Is This The Way To Go or should I Have Went the RTFM Route Thanks... Cheers Bronco Billy "Beer and Fast Women are Ok... No Cigarettes or Hard Liquor Allowed" ReneeC - Back in the early nineties the long-defunct VB Tech Journal offered t-shirts that read: RTFM (Read the Fine Magazine)   - Steve Hoag ...Show All

  • SQL Server Getting Started with SQL 2005 CTP

    Has anyone setup new db's Thanks, BillB Hi, Independently from Management Studio or your own program in SQL Server 2005 you can also use sqlcmd utility (see BOL) If you run SQL Server 2000 on your machine, you can also use SQL Server 2000 tools like Query Analyzer or Enterprise Manager and connect to CPT15 instance Thanks Mirek   ...Show All

  • Visual Studio Express Editions Scanned images are not sharp in PictureBox

    Visual Basic 2005 Express Edition: My application displays images in a picturebox that is 304x608 pixels. It also prints them out on paper at the same size. I scanned my images at 300 dpi and they look great in Photoshop. But, I am having difficulty getting them to look sharp on the screen / printout. Post a bit of your code that you are using to load the Picturebox with your scanned image. Some scanners default to Tiff for scanned images. Are you doing any sort of conversion from one image type to another All these things effect quality. Here is a link to a website that can give you more help on ...Show All

  • Visual C# custom wizard used in c# of vs2005???

    I want to create my own template with two wizard pages in c# of VS2005, but it didnot work well:when I create a new project by using my own template that the sln file is not created and the solution explorer is blank. I hope you can help me. I tell you how I create the template: 1.I create a custom wizard in c++ 2.copy all the files and folders(html,images,scripts,templates) to the vc#wizards folder and modify the default.js(I do not know how to modify it,could you please tell me if you know) 3.copy the vsz and vsdir files to the vc#project folder so it can worked but not so well.The problem is described above. also you can email me uumlw ...Show All

  • SQL Server Problem with non-standard dimension

      I am very new to Analysis Services and have a problem that I don't have any idea on the direction to go or where to look for the answer. I have included a very simple example of the tables to hopefully explain what I am trying to do. I have a WIP billing table that is used as my Fact Table. I am using the Adjustment column for my measure. I have three dimensions "Region by Employee", "Region by Client", "Service Code". The different region dimensions are because the work may have been done by an employee in a different office or region than what the client is assigned to. Everything is fine when filtered by the "Region by Client" d ...Show All

  • .NET Development Error : execute reader requires an available open connection

    Hi all, I have an error that occurs randomnly in my web application (it does not occur all the time) - execute reader requires an available open connection , the connections current state is closed. I have the connection string defined in web.config as <add key="ConnectionString" value="Server=Server1;database=db1;uid=sa;pwd=;pooling=false;"/> For Any help ,thanks in advance Why do you have pooling set to false The fact that it is random makes me think you should enable pooling. You can also try to check the connection state of the connection If connectionobject.State = Closed Then connectionobject.O ...Show All

  • Audio and Video Development Where can I get MF SDK?

    Where can I get MF SDK People are talking about it's existance and there is docs on it on MSDN, but where is that SDK Am I missing something The Media Foundation documentation is now here: http://msdn2.microsoft.com/en-us/library/ms694197.aspx . I'm not sure why MSDN doesn't have a redirect. mmdeviceapi.h should be installed with the SDK in the Include folder. Are you saying that you don't have this header Incidentally, the APIs in mmdeviceapi.h are documented here: http://msdn2.microsoft.com/en-us/library/ms678710.aspx , not in Media Foundation. ------------------------------------------------- ...Show All

  • Windows Forms Customizing DataGridTextBoxColumn

    I am customizing DataGridTextBoxColumn. How can I access properties in DataGrid to which custom DataGridTextBoxColumn will be added. Say for instance, how I would access SelectionBackColor property of the DataGrid to which this custom column is added   Do I have to get to the table style as column is added to table style and then find out which DataGrid this&nbs ...Show All

  • Visual Studio Accessing SourceSafe Databases Via Web??

    I've been tasked with setting up web access to our SourceSafe databases for our off-shore developers.    I am VERY new to this; have read quite a bit about it and  I was hoping you could answer a few questions. My interpretations of what I have read about implementing a web portal for access to SourceSafe databases are as follows: 1) You must use VisualStudio to connect to Visual SourceSafe databases via remote web access.  AND/OR 2) From this link - http://msdn2.microsoft.com/en-us/library/th1ac915(VS.80).aspx - entitled "What's New in Visual SourceSafe (although it doesn't reference what release ...Show All

  • Visual Studio Team System Web site Unit Test: Object reference not set ... error

    I tried to setup unit testing for an existing web site by: 1. Create a new websit by pointing to an existing site. 2. Create a new test project 3. Create a new UnitTestLogon.cs page (code attached below) 4. Inside the test manager and run UnitTestLogon.cs The test can be executed but get Object Reference not set to an object error when loginBox.Text = "UserName"; being hitted. Any help will be appreciated. Thanks. using System; using System.Web.UI; using System.Web.UI.WebControls; using Microsoft.VisualStudio.QualityTools.UnitTesting.Framework; using Microsoft.VisualStudio.QualityTools.UnitTesting.Web; using System ...Show All

  • SQL Server OLEDB provider error.

    Hi: I have created a cube and deployed in sql server. I am trying to connect to analysis services to access cube with linked server. I am getting this error...how do i fix this. OLE DB provider "MSOLAP" for linked server "(null)" returned message "Errors in the OLE DB provider. The Extended Properties property is set to a value that is not supported.". Msg 7373, Level 16, State 2, Line 1 Cannot set the initialization properties for OLE DB provider "MSOLAP" for linked server "(null)". Thanks, Pramod Xinwei: This is the query i am using... SELECT a .* FROM ...Show All

  • Microsoft ISV Community Center Forums Detect Excel Version in VB6 Application

    Hello Everybody I need your help, I have and application in Vb 6 and I need detect what's version and language of Excel have install in the computer. Help me.... thanks Ifgash Ifgash@yahoo.com Hello Ifgash OK for the version you can do something like that. If you have set a reference to MS-Excel in VB6 such as: Set appExcel = New Excel.Application then you can use: appExcel.Version and this will return a number: 5 MS-Excel 5.0 7* MS-Excel 95. 8 MS-Excel 97. 9 MS-Excel 2000. 10 MS-Excel 2002, which is part of Office XP. ...Show All

  • .NET Development COM Interop and Regasm

    I have a VB.NET program setup for COM Interop that works on my PC. When I install it on another PC using regasm with the /codebase option it works on some PCs and not others. I could not determine why it was not working on certain PCs, so I installed it using the gacutil. Now it works on all PCs. Anyone know why regasm does not seem to work on all PCs  (Note all PCs tested are using XP Pro) Thank you Hi Vikram, Yes I did run it as a user who has regitry access. I think I have resolved the issue by using the VS Deployment project to create an installer rather than using the Inno Set ...Show All

©2008 Software Development Network