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

Software Development Network >> Nim Chu's Q&A profile

Nim Chu

Member List

Quack!
shwaindog
Ofir Epstein
xyte
Stephen Turner
thelonesoldier
George.
LearningVisualC2005
Jakein2006
peiling
allison_h
Matty4242
Christian Knoepfle
Peter Smith in Redmond
Erick-Flores
supagu
Rhubarb
Michael Bird
Marlun
TheresaKad
Only Title

Nim Chu's Q&A profile

  • SQL Server SSIS remote connection

    Hello. I am trying to remotely connect to SSIS from my PC using windows authentication in SQL mgmt studio and I keep getting the following error message: --------- Cannot connect to <server> Additional Information: Failed to retrieve date for this request. (Microsoft.SqlServer.SmoEnum) Connect to SSIS service on machine "<server>" failed: The RPC server is unavailable. --------- I do not get the same error when I connect to the database engine, just SSIS. I don't have a firewall inbetween the machines either so it can't be that. Has anyone else had a similar problem if so, I would be grateful if you can you tell me how you got around it Thanks ...Show All

  • Visual Basic Stop all the timers

    Is there a way to stop all running timers. Or is there a way to find out which timers are currently running I tried to do a simple for each but couldn't figure it out. Thank you. This might help: For Each ctl As IComponent In Me.components.Components If TypeOf ctl Is Timer Then Dim tmr As Timer = CType(ctl, Timer) Debug.Print("Found timer, enabled={0}", tmr.Enabled) End If Next Note that you can't find the other 2 types of timers, System.Timers.Timer and System.Threading.Timer. A form will not have a components member if there are no components on the form. You are a frequent thread starter on this forum but you rarely mark them as answered. Please get in the habit of marking a post as the answer if it p ...Show All

  • SQL Server named set questions

    As I understand it, a named set is not processed until it is needed. Once these are processed are they cached for use by other client requests If there are Aggregations set up in the cube will this trigger the named sets be processed right away with the cube I assume that if a named set is too big there could be loss in performance, is there a way to hold down the size of a named set here are some examples of named sets i've created using some calculated members. perhaps there is a better way of doing this *************** Calculated Members*************************** CREATE MEMBER CURRENTCUBE .[MEASURES].[HP Plus Addl Billing] AS aggregate ([PREP CONTROL HDR].[Bill Formats].&[19],[Measures].[Billed Sales ...Show All

  • .NET Development HttpWebRequest encoding

    Hi, is there a way to control the character set (encoding) used by the HttpWebRequest class I'm having problems with a request that has querystring parameters whose values contain accented characters ("e", for example). If I create the HttpWebRequest from a string they are (correctly) url-encoded, but unfortunately the server I'm requesting from does NOT url-decode the parameter values! I've made the same HTTP GET from IE using both escaped strings and simply typing the accented characters straight into the address bar. I get the correct response only in the latter case. So I tried to construct my HttpWebRequest from a Uri instance instead, using the (string url, bool dontEscape) constructor to avoid url-encoding. Lookin ...Show All

  • Visual C# Make stand alone exe

    I posted this in one of the visual studio 2005 forums and someone suggested I try posting it here. In Visual Studio 2005 is there any way to actually make just a standalone exe file, like in visual studio 6.0 where you just go to Build or Make EXE or something similar All I can find is the publishing section which creates a setup.exe which then "installs" the program and checks for updates etc. I just want to make one exe file that can be run from any PC anywhere that you just double click and away it goes, straight into your program, in visual studio 6.0 this was no problem at all yet I have spent hours searching and am still unable to do this in VS 2005. Thanks Asking questions is the way to learn :-) talking about ...Show All

  • Windows Forms WebBrowser control and html document(simple question)

    Hey, I added a .html document into my project. But How do you make it so that my web browser control "webbrowser1" will show the document, I named it "New_Tab.html" Thanks :) Ya I did the existing item thing. So I tryed the other line of code first but it still did not work(error) so I tryed your line of code:this.theWebBrowserControl.Navigate(Application.StartupPath + \\New_Tab.html ); but this did not work ether, I got alot of errors. but one thing I noticed is that when I get to .Navigate and then in the () I try to type New_Tab.html but it dose not come out in intellisense and it also gets undelined as an error... So it dose not recongnize it at all... Thanks :) ...Show All

  • Gadgets Gadget post info to new web form

    I've created a gadget which is a simple HTML form with 2 text boxes and a button. When you click the button it should open a new IE window and send the information to the target URL as a post. The problem is when installed as a sidebar, although the IE window is opening with the correct page, the information in the 2 textboxes does not seem to be transferred. I have tested the simple HTML form by opening it in IE and all functionlity works fine, but not when I install it as a sidebar. Is there something obvious that I am missing Any help would be appreciated. Thank you Hi Bruce, First off, I really appreciate you responding to my message. Thank you for the help. I'm not sure if I understan ...Show All

  • SQL Server How can I Remove the Screwed-up AdventureWorksDB in SQL Server Management Studio Express?

    Hi all, I downloaded AdventureWorksDB.msi Microsoft and struggled to install it in my SQL Server Management Studio Express 8 months ago. I forgot the AdventureWorks examples and other stuff were in my C:\ drive. Recently, I downloaded a new AdventureWork.msi and executed it to install without removing the old stuff from the "Add and Remove" of Control Panel. Now my AdventureWorks database is screwed-up in my termical PC that is linked with Microsoft NT 4 LAN System!!! Please kindly help and tell me how I can revome the scewed-up AdventureWorksDB in my terminal PC. Thanks in advance, Scott Chang Hi Buck, Thanks for your response. I following your instructions and I got the following: Database to detach: ...Show All

  • Visual Studio Tools for Office User Properties Outlook 2003

    Hi All, I use OL 2003, VS-2005, VSTO 2005, Win-XP. I experience some problems while adding UserProperties, after creating new mailItem ........ ...CreateItem(Outlook.OlItemType.olMailItem) i add user propertis myMailItem.UserProperties.Add(........) and on the finish phase move item to some folder (not Outlook folder). When i open Field Chooser on this folder and going to User Defined fields in folder i didn't see the properties that i added, however when i open Field Chooser on INBOX folder these fields appears. Any Suggestions TNX in advance Hi All, I use OL 2003, VS-2005, VSTO 2005, Win-XP. I experience some problems while adding UserProperties, after creating new mailItem .. ...Show All

  • Visual Studio Express Editions how do we get number of days/hours comparing two diff date/time?

    how do we get number of days/hours comparing two diff date/time ... for example 12/05/06 to 02/01/07(number of days)......10:30 am to 20:05pm You can always use the TimeSpan class for more precise differences. An example: Dim date1 As New DateTime(2005, 10, 14, 5, 30, 0) Dim date2 As New DateTime(2007, 1, 19, 7, 45, 30) Dim difference As TimeSpan = date2.Subtract(date1) Dim days As Integer = difference.Days Dim hours As Integer = difference.Hours Dim minutes As Integer = difference.Minutes Dim seconds As Integer = difference.Seconds Dim totalMinutes As Double = difference.TotalMinutes Andrej ...Show All

  • Software Development for Windows Vista Debug problem in workflow

    I start debugging the workflow within sharepoint server 2007, when the workflow begin, visual studio prompt the screen like that. Error loading workflow Cound not deserialize object. The type "infoPathWorkflow.Workflow1" cound not be resolved. But my workflow can run successfully. I don't know why. I'd recommend you go ask on a SharePoint forum: See the SharePoint home page , the SharePoint news groups , or the SharePoint support home . Regards, Paul ...Show All

  • Windows Live Developer Forums How to recover the audio and video stream of WLM.

    Hello everybody, I'm looking for solutions to recover audio stream of WLM when the users use a microphone, and video when they make a videoconference by using a webcam. I do not find a solution with Activity, nor with Add-In SDK. Does there exist other means to do that Thank you, R.P. ...Show All

  • Visual C# Adding reference to project

    Hi, i tried adding a reference with extension 'dll' to my project but this error keeps popping up:This is not a valid assembly or COM component.Only assemblies with extension 'dll' or COM can be referenced. Help will be greatly appreciated! Right, only a COM dll or a .Net assembly can be added to references. Might be you are trying to add some native dll so you are getting that error. You can use dll with DllImport and use function names which you want to call. See Cetin's example! Usre your own name instead of user32.dll and use function name that is avaialble in that dll with correct paramater then you can call that function from anywhere in your code! I hope this will help! Best Regards, ...Show All

  • Visual Basic Adding/removing dependencies at runtime?

    Is there any way to add or remove dependencies at runtime   I have a main app that references 4 other projects (class libraries), each of which reference other libraries.  Previously, each of the 4 modules were installed with every installation.  I am trying to modify the setup to allow installation of only specified modules along with the main app, since each of the modules are dependent of the others.  So I added dialogs and conditions to the .msi, and coded the main app so that it checks which modules are installed and disables any features which would require accessing the .dll's that weren't installed.  This works fine in debug mode within the IDE.  However, when I install and run the program without ...Show All

  • Visual Studio Express Editions Search for name in text file

    OK, I am trying to read a name from a database then look for that name in a text file. So a record in the database will be "First Name", and search for that name and then read all of the data bellow that name untill there is a blank line. What would my procdure be and the text file will contain: First Name 1998 0.277 2000 0.282 2004 0.301 2001 0.234 2002 0.272 2003 0.288 1997 0.327 Second Name 1999 0.200 2001 0.193 2002 0.167 2003 0.282 2004 0.277 Third Name 2000 0.327 2001 0.256 1995 0.282 1996 0.271 1997 0.275 1998 0.277 1999 0.307 2002 0.286 2003 0.273 2004 0.304 Forth Name 1994 0.269 1995 0.308 1996 0.309 1997 0.328 1998 0.294 1999 0.333 2000 0.351 2001 0.306 2002 0.349 2003 0.325 2004 0.308 Here i ...Show All

©2008 Software Development Network