Software Development Network Logo
  • Visual C++
  • SQL Server
  • Smart Devicet
  • SharePoint Products
  • Game Technologies
  • Microsoft ISV
  • Windows Vista
  • Audio and Video
  • Visual C#
  • Visual Basic
  • IE Development
  • Windows Forms
  • Visual Studio
  • Visual FoxPro
  • .NET Development

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

Digger1321

Member List

Patrick_Kirk
Joao Pinto
Mike Southerland
Mozone33
perez6558
programmingisfun
eshny
BCooper
Beth31
blackpenny15
braymond
Nerick
Christopher Lusardi
nishanttheone
Big5824
Business Intelligence Analyst
PedroCGD
Dmitry Pavlov
James_AGENCY.COM
saghrouchni
Only Title

Digger1321's Q&A profile

  • Visual Studio Express Editions VC++ Need explanation of message please.

    Can someone explain what the message " Either VCProject or VCCodeModel is not ready yet. Please close designer and try again." means please. I keep getting it in the form designer and cannot see how to fix the problem. Ah, I solved my own problem. I had put a couple of enum and struct definitions in my Form.h file that were not a part of the form's class. By moving these out of the form.h file, the designer works again. It appears that the designer is confused if there is code in the .h file that is not part of the forms class. ...Show All

  • Visual C# Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.Configuration,...Failed to grant minimum permission reque

    Hi group, We created a .net 2003 C# COM dll using EnterpriseLibrary June2005 and Framework 1.1 SP1. The DLL is being referenced by either VB6 or Excel 2000 (VBA). Using this code (VB6 example): Dim objXML As MSXML2.DOMDocument30 Dim datStart As Date Dim datEnd As Date Dim objTrade As Variant If CheckValues Then NominateExternal.MousePointer = vbHourglass DoEvents lblStatus = "processing international workbook...." DoEvents 'day ahead moet genomineerd worden If chk(0).Value = 1 Then datStart = Me.txtNominationDate datEnd = Me.txtNominationDate datEnd = datEnd + 1 Set objTrade = CreateObject("EndurAggregator2Xml.Trade") Set objXML = objTrade.GetNominationRTE(datStart, datEnd, "E") This has always worked ...Show All

  • SQL Server MDX with parameters using OleDb?

    I'm trying to run an MDX query with a parameter. It works fine with ADOMD.NET, but I can't get it to work using OleDb. (I have to use OleDb because of limitations of the calling application.) Is this possible The following code works: //using Microsoft.AnalysisServices.AdomdClient; string MDX = "with member [Measures].[Test] as Str(@Param1) " + "SELECT [Measures].[Test] on 0, " + "[Product].[Category].[Category].Members on 1 " + "from [Adventure Works]" ; AdomdConnection conn = new AdomdConnection ( "Provider=MSOLAP.3;Data Source=localhost;Initial Catalog=Adventure Works DW;Integrated Security= SSPI ;Persist Security Info=false;" ); conn.Open(); ...Show All

  • Windows Forms DataGridView - Auto Gen Columns - But skip certain properties - Help

    Hi, I'm trying to bind a datagridview to a collection class - lets say "OrderLineCollection" that contains a number of "OrderLine" Objects. In this class I have a number of read-only properties (Things like ID) that I don't want to bind, and maybe even some that are read-write that I still don't want to bind. If I just create a BindingSource and let the grid do things itself, then I get all of the columns from the objects appearing in the grid, and thats kind of what I'd expect. My question is: - Is there an attribute that I can use on my object property declarations that will prevent the field from being bound automatically ... I've had a hunt around on the web to see if I can find such a thing but to no av ...Show All

  • Software Development for Windows Vista IS AUTOCAD 2006 COMPATIBLE WITH VISTA?

    IS AUTOCAD 2006 COMPATIBLE WITH VISTA RESOLUTE CONSTRUCTION CORP. wrote: IS AUTOCAD 2006 COMPATIBLE WITH VISTA autocad 2006 fails to even start in wndows vista home edition.i tried a few solution from microsoft itself life the program compactibility toolkit 5 but to report to all those guys out there it does'nt work. vista i should say is just a visual ecstacy performance wise its a a pathetic failure on microsoft's part. ...Show All

  • Visual C++ About DLLs adres space(wrong information in MSDN?)

    Hi Please look at this MSDN page http://msdn2.microsoft.com/en-us/library/d1587c1h.aspx here it writes: "An application can have multiple instances of itself running in the system simultaneously, whereas a DLL can have only one instance." But here http://www.windowsitlibrary.com/Content/356/03/1.html#3 it writes: "Under Windows 95/98, the operating system DLLs, such as KERNEL32, USER32, and GDI32, reside in the shared address space, whereas in Windows NT these DLLs are loaded in the process’s private address space. Hence, under Windows 95/98, it is possible for one application to interfere with the working of another application." So in winnt systems a DLL can have multiple instances.Right If true so is MSDN information page wrong Which on ...Show All

  • SQL Server Checking data and emailing the results....

    Hello,   I am trying to use “SQL Server Business Intelligence Development Studio” (what is the short name for this) to complete a check and then possibly email me depending on what happens.   The check is around two tables that I have. There is a chance that they will become out of sync with each other and so I want to know when a field (ACCOUNTID) has a value that is in one table and not the other. I can do the check but I would like the package to email me when there is a problem (and if possible email me the details) and do nothing when everything is OK.   Can anybody give me some hints to point me in the correct direction as I just seem to be chasing my tail at the moment,   Thanks, ...Show All

  • Visual Basic How to structure directories for .vbproj's shared amonst several solutions?

    I've got several programs that all use at least one Shared project (Shared.vbproj) I'm trying to structure thier directories. I'm planning to use what's below. My goal is to be able to move the ROOT folder to another location and have everything still work. Any downsides to this: (or a better way) Can anyone point me to a resource describing this (I read up a bit on this in the MSDN, but the best example I found doesn't really describe how to organize the directories themselves) http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnbda/html/tdlg_ch3.asp \Root  (directory)   -Program1.sln  (which contains Program1.vbproj and Shared.vbproj   -Program2.sln  (which contains Program2.vbproj a ...Show All

  • Visual Studio I want to convert creating dynamic datareport from VB6 to VB.net

    Dim Rs As New ADODB.Recordset dim AcntSttnmtRprt as datareport Dim i As Integer Dim Crs As Integer Crs = 0 With AcntSttnmtRprt Set .DataSource = Nothing .DataMember = "" Set .DataSource = Rs.DataSource With .Sections("Section1").Controls For i = 1 To .Count If TypeOf .Item(i) Is RptTextBox Then .Item(i).DataMember = "" .Item(i).DataField = Rs.Fields(Crs).Name Crs = Crs + 1 End If Next i End With .Show End With Forum: Crystal Reports for Visual Studio Posted: : Sunday, March 19, 2006 3:22 AM Post Subject: : How do I covert VB6 DataReport to VB2005 Crystal Reports Rugby Joe wrote ...Show All

  • Software Development for Windows Vista Problem with a Custom WF in a Designer Re-Hosted scenario.

    Hi to everybody! I have created a custom WF in a Re-Hosted Designer scenario. I created an application using Workflow Designer re-hosted following Hands-On-Lab example. I just added some custom activities to the toolbox. The workflow shown into the designer is a custom class that extends the StateMachineWorkflow one. When I create a new workflow everything seems to be ok, I can save and compile it without any problem (so I suppose that the workflow validation completed successfully). When I open the workflow XOML file, instead, the designer shows an error on the HandleExternalEvent activity (Property Interface not set). If I look in the properties grid I can see the correct value of the property (the interface name is corr ...Show All

  • Visual Basic Alternate method for executing query

    My app. is in VB.NET 2003. I am using following code to execute a query and fill the DataSet to display the records on the Data Grid. The problem is that as the data retrieved gets bulky, the performance of the dataset degrades so much that even simple queries take long time for records to be retrieved on the datagrid. I previously used "DataReader" to fetch records and show on screen, but DataReader displays and error for large amount of data to be shown on Data Grid. Is there any fast approach that supports any amount of data to be show on data grid. ------------------------------------------- Try ds.Tables("table1").Clear() Catch ex As Exception End Try Try Dim da As New OleDb.OleDbDataAdapte ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Dream Build Play Contest Question - Using languages other than C#

    I've managed to use Chrome ( www.remobjects.com ) to create some small XNA demos that use the content from SpaceWars. The rules do not mention whether non C# langauges are allowed to enter the contest. Since there are several .NET 2.0 compatible compilers out there shouldn't this contest allow these entries as well as they can use both the Windows and XBox 360 XNA assemblies. Just to clarify, I have Visual C# Express and Game Studio Express installed on my machine, but am using Chrome via Visual Studion 2005 to write and compile my XNA demos and the plan is to use that combination to write future XNA games and contest entries. Could someone from the XNA contest team please clarify your position on the use of non C# languages for the Dream ...Show All

  • Visual Studio Team System Auto Build and deploy ASP.net application

    Hi, I have the auto build running as a schedule executing a batch file which drops the build onto a different server (i had some playing to do with the file structure to get this to work). How do i then deploy the site to IIS on the drop server I can see how to do this with a web deployment project to work on the same machine as the build is run (which is the TFS server) but not on a seperate server. Thanks Steve If I understand correctly, you effectively want to run an application (the setup exe from your web deployment project) on a different computer. You might try using psexec: http://www.microsoft.com/technet/sysinternals/utilities/psexec.mspx . Buck ...Show All

  • Smart Device Development Detect ActiveSync/Cradle Connection

    Hi all, I need to sync data with a web service runing in my network when connect my device to PC. How can i detect if ActiveSync is runing in my device I'm using .NET CF 2.0 with a PocketPC 2003 device. I try to use OpenNetCF 2.0, but this release not includes "Desktop.ActiveSync" namespace. Thanks. Jose Miguel. Warren LaFrance wrote: In my forms I call this class on the form when a NEW Instance is created.. I found this info at : http://www.devbuzz.com/content/zinc_network_connectivity_pg1.asp In the form class... ---------- Public Sub New () ' This call is required by the Windows Form Designer. InitializeComponent() ...Show All

  • Visual Basic Any way to detect whether SCROLLBAR is present in Rich Text Box?

    I'd like to have a Rich Textbox automatically zoom out (using the .zoom method) if the horizontal or vertical scroll bar is present. But, there doesn't apear to be any way to DETECT whether the scroll bar is being displayed. Anyone have any suggestions Is there any way to detect whether the (my terminology is rusty here) HScroll (or Vscroll) event handler is "attached" to the control (those events are triggered by the user clicking on the scroll bar, so the events themselves aren't helpful. However, I'm thinking that maybe the event handler would only be attached if scroll bars were actually present). .Scrollbars only determines what type of scrollbars are ALLOWED to be displayed (none, whe ...Show All

©2008 Software Development Network