Max Vernon's Q&A profile
Visual Basic can here discuss vb6
or vb.net Hi, This forums is still beta. this was created in parallel for the Visual Studio 2005 Beta 2. The final release of this forum would also be in nov. (I really hope so) this forum mostly discusses .net technologies. that's why vb6 (COM) is not being discussed here. If you want to get the microsoft vb6 site here it is: http://communities.microsoft.com/newsgroups/default.asp Just search it in the NNTP forums... cheer ...Show All
Visual Studio Error loading Subreports - The report definition for report 'xxx' has not been specified
I am getting "The report definition for report 'xxx' has not been specified" error when I run a subreport. The sub report runs fine by itself, as does the parent report. When I try to reference the sub report via the main report, I cannot reference the parameters defined in the sub report, and the sub report errors when I run the form. I saw some postings that mentioned problems with accessing reports in subdirectories - this is the ...Show All
SQL Server [OLE DB] how can i use IRowChange::Insert() to insert data ?
i have some objects like this:CDataSource ds; CSession ss; CCommand<CDynamicsAccessor> rs; and i successfully opened rs like this: ...// connect to MS-SQL Server CDBPropSet* DBPropSet = new CDBPropSet(DBPROPSET_ROWSET); DBPropSet->AddProperty(DBPROP_IRowsetUpdate, true); DBPropSet->AddProperty(DBPROP_UPDATABILITY,DBPROPVAL_UP_CHANGE|DBPROPVAL_UP_DELETE| DBPROPVAL_UP_I ...Show All
Windows Forms Need explanation please on formatting...
Ok guys, Can someone shed a lil light on me about when/where and why use each of the different formatting methods.... Example, converting datetimes... -- FormatDateTime(myDateTime, ShortDate) -- Convert.ToDateTime(myDateTime) -- CDate(myDateTime) -- CType(myDateTime, DateTime) All serve the same purpose but which is more effecient than the other and why. I saw a video once that said you should practice the newer methods because it ma ...Show All
SQL Server Message Queue Task 64 bit Cluster issue
Hello, I'm using the Message Queuing task to create a local private queue message. Everything works great on a 32 bit machine. When I try this on a 64 bit Itanium Cluster I keep getting the message "Message queue service is not available" in my SSIS log. I've using this string as my path "ClusterName\private$\QueueName". Does anyone know of any issues with the Message Queue task on 64 bit or a cluster The Message Queue se ...Show All
SQL Server "Beta period is over" (June 2005 CTP)
hi everyone, This is home installation no tricky one. That's fine, I understand that. But I wonder whether I will be able to load any SSIS package already defined by mean of Visual Basic .Net after that message. That message appears after I try to open BIDS IDE. Thanks in advance, You will not be able to run packages programatically. The developer edition of SQL Server 2005 should be good for you, and is really very well priced ...Show All
Visual C++ Windows Forms
Using Visual C++ 2005 Made a windows forms application using Visual C++ 2005, but when i run it I get a console window popping up while my form is running. Guessing one of my project settings is messed. Anyone know which setting is causing the console window to appear when I run my windows form I didn't use the form designer either. Need some votes on this topic... http://lab.msdn.microsoft.com/P ...Show All
Visual Studio Team System How to get code coverage from Web Tests?
Hi, I'd like to get code coverage information from Web Tests. I configure the testo configuration in order to instrument the Web Site. I Run my web test but no coverage information was generated. Is there any additional Step Thanks Hello MunjalD, Unfortunately, when I attempt to follow your example in #1 above, I get the result that was originally reported. I have a solution with a Web Service project and a test project. The unit test I a ...Show All
Visual Studio Team System Satellite Assembly
Hello all, I have worked on this satellite assembly thing for over a week now and i can no longer see straight... i have read artical after artical and i am just flat out missing something some where that is most likely very small.. i am trying to make a satellite assembly and from the way reflector looks i am in the correct name space and i have a BIG GREEN LIGHT and go ahead but i can not for the life of me display the text that should be ...Show All
Visual Basic graph sin curve with following curve? Help
I am using the following to graph a cardiod in polar coordinates but am trying to figure out how to graph a sin curve which is not in polar coordinates. How could I change the following code to make it graph in rectangular coordinates Private Sub DrawCardiod(ByVal g As Graphics) ' Drawing an Cardiod Dim x As Double Dim y As Double Dim old_x As Double Dim old_y As Double Dim r As Double Dim t As Double Dim dt As D ...Show All
.NET Development Serviced Component throws OutOfMemoryException
When I try to return around 18,000 records in a DataSet through a Serviced Component I get the following message. Exception of type System.OutOfMemoryException was thrown. However if I load the same data without going through the Serviced Component it works fine. Does anyone have any idea on how to avoid this. This is a simple loading of data into a DataSet and returning it through a Serviced Component. ...Show All
SQL Server Partition Scheme
Hello everybody, how can I verify a partition scheme in SQL Server 2005 (June edition) SELECT p .* FROM sys.partitions p , sys.objects o WHERE o . name = 'mytable' AND o . object_id = p . object_id GO this always returns only one partition thank you Eckard BTW, there is some confusion about terminology. A partition != a partition scheme. The query above looks at a table ...Show All
Windows Forms ListView iconspacing in dotnet 2.0
Hiya, I'm looking for a way to set the icon spacing while displaying large icons. In dotnet 1.1 this could be done by using the SendMessage and setting the variable LVM_SETICONSPACING. Unfortunately this doesn't work anymore Anyone suggestions Sven. The following works fine for me using Visual Studio 2005: Imports System.Runtime.InteropServices Public Class MyForm <D ...Show All
Visual Basic I found out the answer. The Val function converts string to numbers.
I am working with labels and textboxes and comboboxes. I need to get numbers from them. But I keep getting cast exceptions. The calculations are below. Sorry about the mess. I am trying everything. I will keep reading till I figure this out. Thank for you help. Sub Calculate() 'MsgBox(TypeName(CDbl(Me.lblTL.Text)) & " Str ") 'Me.lblR1.Text = CStr(xxx) Dim xxx As Double 'Me.lblR1.Text() xxx = CDbl ( ...Show All
SQL Server reporting services 2005 proxy
I am trying to create a RS proxy to use in my web site. I did this successfully with RS2000. I used web matrix to generate the proxy and put the dll and .cs file in the bin directory of the web site, then I just used <%@ import namspace="rsProxy" %>. It worked like a charm. Now I am trying to get the 2005 version working and created the dll's but all I get in my web page is that it couldn't find the namespace. I also tried ad ...Show All
