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

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

skimj

Member List

Gwiddion
Torsten_F
GGardiner
tats
R102oy
Bababooey
ian1974
KevinTunis
Jean-Michel Bezeau
Sharon F. Dooley
lilphish
xanthus
engsrini
tamikn
Glandorf
Marty_M
Arthg2000
TamNguyen
r cook
smudie
Only Title

skimj's Q&A profile

  • Visual C# C# styles

    hi i want to create my own themes, skins like there is skins for winamp or for other programs that running in windows i want to create my own themes for my winfom application if you know some tutorial or something else to help me i don't want to you winxp theme only my themes thx thanks a lot too ...Show All

  • .NET Development Set SSOCANARY in Webservice

    Dear friends, i can't set the SSOCanaryChecker for SSO set User's credentials method in the webservice, because im not able to get the OnInit() or OnLoad() method in webservice page and even in webservice im not getting Page object to set CanaryChecker. Anyone Can help me Please.. How to use SSO Canary in Webservice. Thanks in Advance. Regards, Vasanth. Hi Vasanth, I don't understand the issue you are trying to describe. ...Show All

  • Visual Studio Tools for Office sheet change event target (range) and named range

    Is there a simple way of finding out that the change event target (which is a range) is part of a named range without matching cell references or addresses I have sheet that has a named range on it and I am creating several copies of this sheet via code (copy method). Throuble is there is no code behind for me to put the sheet's named range change event and handler so I thought I will handle sheet change events and figure out if the change happ ...Show All

  • SQL Server Fuzzy Grouping error

    I am using the Sept CTP, I am doing a fuzzy grouping on 1.5Mil records. I continue to receive Error: 0xC0047022 at Data Flow Task, Fuzzy Grouping Inner Data Flow : DTS.Pipeline: The ProcessInput method on component "Fuzzy Lookup" (97) failed with error code 0x8007000E. The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop r ...Show All

  • SQL Server Flat file - row delimiter problem

    Hi, I'm trying to design this package where i take data from a source and need to transform it into a flatfile with some extra static information. I use a SQL script like this (ex.): SELECT ' BS0220131264202400000130001' + cast ( wa . perf_applicant_number as nvarchar )+ '000000000' + wa . perf_firstname + ' ' + wa . perf_lastname + CHAR ( 13 )+ 'BS0220131264202400000330001' + REPLICATE ( '0' ,( 15 - LEN ( wa ...Show All

  • Visual Studio Express Editions Paint Problem at MDIChild at Opening at Startup in Maximized State

    Hi guyz, I have one MDI form and one MDI Child. Both form's property windowsstate=maximized. When MDI form loads, its child forms load at the load event of MDI. But, It not paints that child form properly to maximized area. there is border appears of that child forms without title. Once we minimize that bad painted form and again maximize it. it works fine.. So, why its doing problem at startup in maximized mode I've just transfered my winapp ...Show All

  • SQL Server Issue with SqlUserDefinedAggregate

    I am using the code below but I am getting a "zero" result for dbo.AggredIssue('Test') user defined aggregate everytime that the query executes parallel processing and uses the "Merge" method. It seems that my private variable " private List < string > myList" gets nullified everytime it goes through the "Merge". I saw other people reporting the same issue in other forums, but nobody was able to provide a solution or explanation. S ...Show All

  • Visual Basic [VB6] Serial communications garbled

    I have a problem with an application that was written in VB 6.0. I wrote an application in VB 6.0 about two years ago and it has been running fine until recently. At some of our cutomers locations the serial communications is being sent gets garbled, but it recieves fine. If the the computer is reset and the application is run, it runs ok for a couple of days and then the problem reoccurs. Any ideas on what it could be ...Show All

  • Microsoft ISV Community Center Forums Copying and pasting between spreadsheets

    I have an Excel Macro which copies from a Source spreadsheet and pastes on the working copy. The Source spreadsheet is the result of a report gleaned from a non Microsoft database. Usually all works as expected. The problem comes when one of the items in the working copy does not appear in the Source copy. (If no activity occured, instead of displaying a zero, that particular item is excluded from the output. Since the procedure is copying an ...Show All

  • Windows Forms Visual Inheritence

    hi, I am just starting to use visual inheritance and have figured out how to allow a control such as a button to be modified on the drived form. Is there a way that I can allow some of the properties to be changed such as the&nbs ...Show All

  • Software Development for Windows Vista Does design any workflow need a new project?

    I want to organize all my workflows under one directory, within one project. When i add new item of Sequential Workflow(code) to an empty project. The following error occoured: class ="ErrorStyle" id="div1" width="100%"> The service 'System.Workflow.ComponentModel.Design.IMemberCreationService' must be installed for this operation to succeed. Ensure that this service is available. Hide at System.Workflow.ComponentModel.De ...Show All

  • Visual C++ When NOT to use /clr

    I notice the new 2005 compiler happily compiles my native projects, even ones that contain inline asm and variable param functions. It just warns me about the native code generated.  The managed c++ compiler in 2003 could not handle this. So, why would I ever want to not compile with the /clr option   I have found in the past that a mixed code application can spend 50-90% CPU time in mscorwks.dll even without a single managed cla ...Show All

  • Visual C# How to write a command like "pause" to console

    People I'm new to C# and I want to ask (if someone could help) How to convert a code like this (in C++) to C#: #include<iostream> #include "stdafx.h" #include "test.h" using namespace std; int main() { cout<<"Helllo"; system("pause"); //This one :) return 0; } Hi, create new console project in VS.NET, add the following code to the main method: System.Diagnostics.Process.S ...Show All

  • Software Development for Windows Vista audio files properties lock/rasterize

    Hi everyone... I hope I'm posting in the right forum for this question. I origianlly posted this in the VB.NET development forum, as that's the platform I'm using (original post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=230192&SiteID=1). But it's really a Windows API question... I have a couple of applications that find all the .WAV and .MP3 files in a folder (and its subfolders), reads their headers, and repo ...Show All

  • .NET Development Program hangs on remote connection when opening SqlConnection .NET 2.0

    I am having a problem where my program hangs when creating a SqlConnection object.  No exception is thrown, the program just hangs. The details are that I am connecting to a remote server through Terminal Services and the running the program in the 2.0 environment on a Win2K server.  If logged into the server as an Admin, then everything works great.  If logged in as a regular user, then the program hangs when opening ...Show All

©2008 Software Development Network

powered by phorum