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

Software Development Network >> Dave Jenkins's Q&A profile

Dave Jenkins

Member List

ClydeCoulter
mliesmons
Eng. Habeeli
dmanz
soconne
andyedw
Jon Stalnaker
AKW2006
jvinsky
Kim Carlsen
rjodwyer2
Richard G.H.Lin
PaulBSteelerFan
sergiuoxigen
Doug 123
niallhannon
fasttrack
Ken_Bussell
Samoyed
Nina and team
Only Title

Dave Jenkins's Q&A profile

  • SQL Server Server: the operation has been cancelled. - when processing cube

    When I highlight a few partitions and start processing, the process occasionally stops with a message that operation has been canceled, like this: Response 3 Server: the operation has been cancelled. Response 4 Server: the operation has been cancelled. Response 5 Server: the operation has been cancelled. ..etc... (no further error message details are provided) SQL profiler shows that batch was completed (but rowcount shown in process progress log is too small). Analysis Services profiler shows no messages at that time at all. It just shows messages when it started, and when I restarted the processing. The Analysis trace appears to be stopped when processing stops with " Server: the operation has been cancelled.&quo ...Show All

  • .NET Development FTP ?

    Does C# have FTP Methods that are easy to use I will be starting on a project soon and have the choice of using VB, C#, or Java. I think the FTP issue will be my biggest hurdle and I want to make it as easy as possible from the start. Any hint, ideas, tutorials I could be pointed too would be great. Post any issues I might encounter if you have experience in working with theses methods. Thanks! Current version of .Net (2.0) provides support for FTP Client but the previous versions dont support it by default. But if for some reason you have to use .Net 1.X to develop your application, You are lucky that there are many open source Ftp Client componenents are available on the internet. For solution in .Ne ...Show All

  • Visual C# open/close oledb connection

    I connect and query my access database and populate my datagridview using the code below. My question is if I have to explicitly open or close the connection, please can you show me how & where... DataSet ds = new DataSet(); OleDbDataAdapter da = new OleDbDataAdapter(); OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Application.StartupPath + @"\MyDb.mdb;User Id=admin;Password=;"); string strSQL = "SELECT * FROM Log"; OleDbCommand cmd = new OleDbCommand(strSQL, con); da.SelectCommand = cmd; da.Fill(ds); this.dataGridView1.DataSource = ds.Tables[0]; Thanks not at all. :-) when I did this and from what people said, you will find that i ...Show All

  • SQL Server SQL Server Everywhere Edition Tools for VS2005 SP1 Beta are available

    Dear Community, Microsoft SQL Server 2005 Everywhere Edition Tools for Visual Studio 2005 Service Pack 1 Beta is available for download at the following location: http://www.microsoft.com/downloads/details.aspx FamilyID=61289b5d-af86-45dd-8962-e7dcc5221796&displaylang=en Microsoft SQL Server 2005 Everywhere Edition Tools for Visual Studio 2005 Service Pack 1 Beta is installed after the installation of Visual Studio 2005 SP1 Beta and updates the Smart Device Development components in Visual Studio 2005 SP1 Beta with the SQL Server 2005 Everywhere Edition design time UI/Dialogs, device CAB files, and includes new features like |DataDirectory| and ClickOnce support for ease of deployment We would highly ...Show All

  • Software Development for Windows Vista Hard Drive loss of space

    As a newbie to test the latest Vista build 5536, I am finding that I am lossing close to 1gb of hard drive space daily. I at first thought it was legacy applications, so I cleaned and unloaded old apps. Only to find a day later that I had lost another 1gb of storage. Has anyone else experienced this, and if so, is there a work around sorry but this is the incorrect forum. best place to post would be at the appropriate communities: www.microsoft.com/communities you may wish to make sure that drivers are up to date for Vista, as well as the regular AV/spyware scans and do some diagnostics on your hard drive just in case. Again, better to post over at the communities in the appropriate newsgroup Thanks! ...Show All

  • Visual C# import C# Form as ActiveX in Internet Explorer

    I am trying import a C# form as a ActiveX control on my webpage. I have followed the following tutorial verbatim here . What happens is it works great at first but then I change the dll, recompile and transfer the dll over to website and then the activex control will not load. Even if I copy the old dll back, it still does not load. Are there some settings on the compiler that I have to set. Any help would be appreciated. Something else I have noticed is that if I change the name of the dll, then it loads but if I change it back to the original it does not load. If I change the code and change the name to the same name used earlier it does not load, but if I change name to something never used it does load ...Show All

  • Windows Forms CheckBox in Datagrid

    I want to add checkbox in datagrid without binding to column in table. When I check on multiple check box & hit delete button all those row would be deleted. So i am adding column in dataset table after filling by datadapter instead of adding boolean column in database table adapter.SelectCommand = new OleDbCommand("SELECT * FROM Product",m_DBConnection); adapter.Fill(dataset,"Product"); DataColumn col = new DataColumn("Discontinued",System.Type.GetType("System.Boolean")); col.DefaultValue = false ; dataset.Tables[0].Columns.Add(col); Am I following the right procedure to add checkbox on datagrid Add a DataGridBoolColumn t ...Show All

  • Visual Studio 2008 (Pre-release) How to measure control using particular template without applying it?

    Hi all. I have control instance with some template applied. Then I need to measure this control with other template _without_ applying it. I need something like "predict" control's size with other template without changing current visual appearance of the control. Is it possible SerialSeb, Sorry for my messy explanations :) Now I dont have problems with contol copying anymore because I found the solution. All you need to measure control with alternate template is to save current template, then set a new one, and then measure control; after all you should set old template back. During this process the control doesnt change its visual appearance. So it's happened to be very simple. The code look ...Show All

  • Customer Care Framework Setting the QueryString value of a new application in Agentdesktop code.

    Hi, I need help regarding an issue i m facing in CCF. I am trying to integrate MS CRM 3.0 with CCF, i search customers (Accounts in MSCRM)by id (eg. 1) and i get the result. Now when i select the record, i want the Guid value to be appended to the edit.aspx url of MSCRM aacounts. I have created a new application in Admin console and set the querystring as Guid=%guid, where Guid is the column of a new table in CCF DB. Where/How do i set the guid value in Agent Desktop Solution You would need to add guid to the Context for it to be picked up by the query string.. context["guid"] = Your lookup result. as to when to set it.. That depends on where your picking up the guild from. th ...Show All

  • Visual Studio Tools for Office VSTO and dead code.

    I've built COM add ins for PowerPoint XP and 03 that work perfectly, now I am trying to get them to work in Office 07 and am getting no where. The problem seems to be that when I call an out of process (microsoft encoder) my code dies. There are no errors thrown, there is ummm, nothing, just dead code. As an example; Set encoder blah, blah, blah encoder.start Msgbox "Done". In the above the encoder indeed starts, runs as expected, and then, zip, nada, nothing. Its as if the rest of the msgbox doesn't even exist. Depends, to post to devdiv I would say: http://connect.microsoft.com/VisualStudio If posting to the Office group I'm not sure right now as the TAP/Beta sites ju ...Show All

  • Visual C++ VS2005 cannot add ATL Simple Object into a ATL Project?

    This is really weird and annoying me. In my VS2005 Team Edition for Developers(8.0.50727.42), I cannot add a ATL Simple Object into a ATL Project. The "Add Classs" dialog just show diabled name & Location. If I select "ATL Simple Object" and click "Add" button. It pops up a error dialog "ATL classes can only be added to MFC EXE and MFC Regular DLL projects or projects with full ATL support.". I don't think I am the only person who meet such situation. Google and MSN search doens't get me any helpful info. I searched local file and found the error message is in file "...\VC\VCWizards\1033\common.js". After one hour of trying to hack these javascript wizard, I failed and gave up. ...Show All

  • Visual Basic How I can connect the scanner field from V.B. form?

    Hello there. I have trouble in selecting the scanner fields with V.B. form. I am able to connect the scanner with command button, but now I want to make a program where I can choose the different option from my form. So how i can do this - Vipul I think your going to need to be a bit more descriptive in what you are trying to achieve and what you already have in place. The description is cuurentlt too vague. ...Show All

  • Visual Studio Express Editions Hyperlink to Local File ?

    hi all how to set the Hyperlink NavigateUrl Property to a local file , programmically something like hyperlink1.navigateurl = @"file://" + locallink ; but always comes with this symbol "#" when run and that's prevents viewing the file thank you ...Show All

  • .NET Development DLL loaded twice

    Hi, I was looking at DLLS used by a process using ProcessSpy and found that the process has loaded two DLLs for few of the system dlls like Systsem.Drawing.Dll, System.Windows.Forms.Dll etc. For one of these DLLs the version is 0.0.0.0 and the other one has a valid version. Unfortunately, I can't add a snapshot of the window here. What I am wondering is, whether its pretty common to have this behavior or something is wrong in the taks, the way it is loading DLL. Thanks, -Brajesh Your guess might be right, as I see that the version 0.0.0.0 is being loaded from C:\windows\assembly\nativeimages1_v1.1.4322\system.windows.forms\1.0.5000.0__b77a5c561934e089_fa580ca7 and the other version is b ...Show All

  • .NET Development How to Create a Windows Service Queries SQL Database and Send Parameters to a Client Web Service.

    Has anyone ever created a windows service in C#.NET which would run every 30 to 60 minutes with the following parameters: 1. Query SQL Database in own environement, 2. Pass results from SQL query to client Web Service in another environment. It sounds very basic but I am new to Windows and Web Services. If anyone has any example code for download or an article on such a configuration, I would appreciate any advice. Thanks, Always Learning hi, this is quite easy, use this code fomr the site to generate a general service using a timer object and place your appropiate actions in the timer event. http://www.codeproject.com/dotnet/simplewindowsservice.asp HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

©2008 Software Development Network