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

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

Holm76

Member List

walsher
The_magament
C McQuade
Hybrid Bray der Burrito
Krutika
cookieCutter
MU786
zackasan
Buddhist
Gerry Aue
Snick
mario.muja
12345abcde
Spigot
BBPowers
hashmi
patiatwork
nharendt
Jamie Thomson
cxroh
Only Title

Holm76's Q&A profile

  • Visual Studio 2008 (Pre-release) How to use btn.RaiseEvent to fire button click event?

    Hi, I am trying to use Mbunit to test a wpf control. I got a button reference inside the control and needs to fire button click event from code. (without using the mouse device) I figured it out I can use btn.RaiseEvent but I can not figure it out what eventargs should I use. Any help will be greatly appreciated. thanks/chong ...Show All

  • SQL Server Help with Sending file to server using ftp task

    Doe anyone know how to do this. I keep getting an error remote path missing "/" but it doesn't contain a "/". Mike That's what I have had to resort to at times also. Some of the FTP task functionality just doesn't seem to function like it should. ...Show All

  • SQL Server Way to manually create Aggregation?

    Hi all! I am Looking for a way to manualy create an aggregation in SSAS2005 (like the "Partition Aggregation Utiliy" in SSAS2000) By the way - I cannot find a representation of the aggregations in the cube XML in BI Development Studio - is this possible Thanks HANNES Hi Hannes, If you're a SQL PASS member, then one resource you could refer to is the session at the 2005 Conference: "108S: Understanding Analysis Services 2005 Aggregations from Every Angle". This has an advanced section entitled: "Designing aggregations yourself" (with extreme caution advised!). http://www.sqlpass.org/events/summit05/index.cfm In this presentation, you also see that an aggregation design relates ...Show All

  • Smart Device Development convert C to C# or VB.net

    Hi, I'm developing smart device application by using CF 1.0 on VS 2003. I need your help. I have LZSS Compress/Decompress code written in C. The question is "I tried to convert the LZSS code to C#, but it didn't work. Please convert this code to C# or VB". I paste the LZSS code as follows: /******************************************************************************************** #include <stdio.h> #define N 4096 #define F 18 #define THRESHOLD 2 #define NIL N unsigned long int textsize = 0, codesize = 0, printcount = 0; unsigned char text_buf[N + F - 1]; int match_position, match_length, lson[N + 1], rson[N + 257], dad[N + 1]; FILE *infile, *outfile; void InitTree(void) { i ...Show All

  • SQL Server Using Array Variable in ForEach Loop Container

    Dear all, I have a problem using SSIS since I was a beginner, the problem is I have to do some data transform from flat files into database. These flat files come from many branches of my office with the file structure like this D:\SSIS\branch_nm\file_nm.txt, in folder SSIS there are many branch_nm folder and each branch_nm folder contains many flat files. My idea was grab the branch_nm folder into array variable using Script Task and then loop this array variable using ForEach Loop Container to get the file and using it for Flat File connection, but I don't know the way to do it. May this idea work out for sure How to use array variable, that we previously defined inside Script Task, in ForEach Loop Container Thanks in advance ...Show All

  • .NET Development How do you make network drives trusted?

    How do you make network drives trusted for a .NET application I have a .NET application in C that runs fine locally, but dies on a network. It seems like I should be able to identify an application as trusted though the .NET Framework wizard, but the utility cannot open my application. Also, what IS unsafe code and how do I identify it I have tried increasing the security with the .NET Framework Config tool in control panels, but when I select the application on the network drive, it tells me that it is unable to "Unable to load assembly:" Caspol gives me a "Success," with the line you gave me, but I still cannot run the application. ...Show All

  • Visual Studio Team System Service Broker Support

    I see basic SSB support has been added. But as you will know, there are always 2 sides involved in SSB communications and large parts of the configuration depends on the other side. What's the recommended way of keeping multiple DB projects synched and what other features will you provide in the future to help aid in this The "Service Listing Manager" supplied by the SQL2005 team is quite buggy and there does not seem to be any more enhancement being done on it. Maybe it should be integrated into this project-type and create/update the elements needed to communicate with the "target" service. Even though pieces are devided up between two or more database; the main schema elements, mainly message types and co ...Show All

  • Windows Forms How to manage event handlers ofthe controls created in runtime

    I am making a desktop application which produces tab pages at runtime on a click of a button ... My problem is I am not usre how to access the text properties of the controls which were created dynamically .... any help would be highly appreciated.. please do remeber I am developing in c# and have absolutely no ideas abt vb...... cheers, da_coder. the code for making tabs dynamically is here with and when the eventhandler cycleSaveButton_Click(object sender, EventArgs e), i need to access ycleCommentsTextBox.Text, cycleFrequencyTextBox.Text, cycleOnsetTextBox.Text, cycleOffsetTextBox.Text,cycleAmplitudeTextBox.Text,cycleDurationTextBox.Text and cycleChannelComboBox.SelectedItem private void button1_Click(object sender, ...Show All

  • Software Development for Windows Vista Workflow changes and SqlTrackingService

    Hello, I have WF with code separation that contains activities which track some user data by Activity.TrackData(). After the WF is finished I can read tracked data with SqlTrackingQuery. But when I modify WF by adding some custom activity 'ActivityX' that also tracks user data, then SqlTrackingWorkflowInstance.UserEvents throws InvalidOperationException, that says something like: "Information about type 'ActivityX' cannot be found". When I increment version of assembly with WF and compile, it works fine. This is the problem - I don't want to compile assembly because the only change was in XOML file, not in code behind! Does it mean, that adding such activity requires new compilation I hope, there is some other way. Thank you for ...Show All

  • Visual Studio Tools for Office Help embedding Excel documents into a Word Document

    Hi there Can someone tell me how to or direct me to an appropriate tutorial that can show me how I can, programmatically, insert an excel 2003 sheet into a word 2003 document by using the VSTO EG: Document a = WordDocument Document b = ExcelSheet a.Section(n).Insert(b, DisplayAsIcon) I have hunted for advice on this but cannot find it anywhere. I am using VS.NET 2005 and am not fussed on a C# or VB.NET solution I just need to be able to insert the document. Thanks! There's nothing special built into VSTO for inserting or working with embedded OLE objects; automation of the COM object model is the only possibility. You use the VBA route to get the basic object model SYNTAX. Our goal in ...Show All

  • Visual Studio 2008 (Pre-release) Suggestions: AutoGenerating fields.

    Here's something I'd like to throw out... It would be nice to specify a property to build itself if its reference is null. That is, let's say I'm creating a Location object that has an address: Location l = new Location(); l.Address = new Address(); Generally I'm a lazy programmer, and I'd like to be able to assume that Address is always a non-null value, like such: Location l = new Location(); l.Address.City = "city"; And in the getter something like this: public Address Address { get { if ( _Address == null ) {_Address = new Address(); _Address.ID = Guid.NewGuid(); } return _Address; } } Along such lines, would it also be possible to autogenerate Guids I use Guids for ...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 Thanx Matt! Just to try, I hard coded a guid value say; context["id"] = "{384b65d7-bcaa-db11-b977-00096b12538b}"; in the setcontext() method of desktop.cs. Is this not supposed to work ...Show All

  • Windows Forms System.Deployment.Application.InvalidDeploymentException on some machines

    Hi! I'm getting the following exception when trying to install my ClickOnce-App on some machines: PLATFORM VERSION INFO  Windows    : 5.1.2600.131072 (Win32NT)  Common Language Runtime  : 2.0.50727.42  System.Deployment.dll   : 2.0.50727.42 (RTM.050727-4200)  mscorwks.dll    : 2.0.50727.42 (RTM.050727-4200)  dfdll.dll    : 2.0.50727.42 (RTM.050727-4200)  dfshim.dll    : 2.0.50727.42 (RTM.050727-4200) SOURCES  Deployment url   : http://192.168.23.105/system3/System3.application       Server  : WinGate Engine  Deployment Provider url  : http://192.168.23.1 ...Show All

  • Windows Forms How to change the column name in datagrid?

    I have a window form datagrid. May i know how to change the column name in the datagrid For example, one of the column name in the database is EMP_NO, so the datagrid will show this column name also, how can i change it to Employee No I have the same problem, I tried the two ways you said,but they all cann't work, for the first one,they display the two columns, one is changed one is unchanged. For the second way, I new a datagrid column style ,but it cann't work. My develop evirnment is : vs .net 2003. ...Show All

  • Visual Studio Team System Power Toys for Modeling Tools

    1. I cannot load the Modeling Enhancements - I'm using Team Suite. Error is : The Add-in 'Modeling tools design enhancements' failed to load or caused an exception How can I get these tools to work Jean-Pierre Fouche How typical! Somewhere in the dialog with the developer, the tools started working. I'm not sure what I did that affected the change, but it seems to be fine now. Also, I only had issues using the tools on the Application Designer. They worked fine on the Class Designer. Jean-Pierre, have you noticed any changes Again, I'm not sure what might have caused the change - reboot of VS , reboot of the machine (after installing Windows updates), timing issues in something... Anyway, I'm s ...Show All

©2008 Software Development Network