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

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

PacificTester

Member List

pwi11
dan456456
Aloha1973
Eric J. Smith
partha
Egbert Raubenheimer
Beerwolf
Shawn Gibbons
Simon64
big71
davegl
jack zhao
Cp1der
Hasie
Andreas Öhlund
MegaKameha
Norman
Joe K
Doug Wood
coppersony
Only Title

PacificTester's Q&A profile

  • .NET Development Dataset Column Not Saving

    Hello, I am adding a new column to a dataset. If I don't add any values to this column, and write the dataset to xml, it skips this column. Does anyone know why Thanks That behavior is by design - it is exactly the way an XML writer should act. If there's no data, don't write anything. Keeping track of what fields go where isn't the data file's business, but that of the schema definition file. ...Show All

  • Visual C# How to use Webrowser.Navigate()?

    I would like to send form data to a web form and open it in the webbrowser control in my winform app.  However, how should I define my name-value POST data (i.e. parameters postdata and additionalHeaders) for method WebBrowser.Navigate()   Please see http://msdn2.microsoft.com/en-us/library/ms161355.aspx   Thanks a lot!   Hi, I think that you may create a HTML page in some temporary location, that contains a script that is invoked on page load and does post. Then you just navigate in you control to that local temporary page, it performs post during load, and here you are with the result in you ...Show All

  • SQL Server SQL Mobile and Paging

    Hi, Is it possible to implement paging in SQL mobile query. Or any work arounds for the same . please reply, ...Show All

  • Visual Studio Team System Scenarios list, when?

    The Scenario List is an entry point for Planning Trac k and for its workstreams Create a Scenario and Define-Update Test Approach too. I couldn't find it as a result of any activity of Envision Track . When should it be done There is an exit criteria for Create a Scenario , Prioritized list of scenarios , so I'm assuming this is the point we create the Scenario List . But in other hand, Scenario List is an entry point for Define-Update Test Approach and this contains a dependency for Scenario List . This is the point I got confused, what am I missing here One more thing... Is Define-Update Test Approach a workstream It says so, but doesn' ...Show All

  • Software Development for Windows Vista Power icon problemw

    Hello, I've just installed the Windows Vista Beta 2 (Build 5384) and so far so good, except for one thing: somehow i can't activate the option to show the power icon on the "notification are" of the "taskbar". When i go to the properties of the "taskbar", and then go to the "notification area" options, i'm allowed to select to always show the clock, volume and network icons, but not the power icon. Do you know what can i do to fix this problem Because of this problem, i never know when the battery is low. Thanks for your help!! If your machine is battery-enab ...Show All

  • Windows Forms Problem with ToolboxBitmapAttribute

    I have created a custom component and now I want to display a custom bitmap when the component is displayed in the toolbox.  I have applied the ToolboxBitmap attribute as follows: [ToolboxBitmap( typeof (Resources), "Resources.ComponentImage")] public class MyComponent : Component {    ... }   The weird thing is I can call ToolboxBitmapAttribute.GetImageFromResource( typeof (Resources), "Resources.ComponentImage", false )   and get the correct image, but Visual Studio still does not display the custom image in the toolbox! Does anyone have any ideas here Thanks, Wells ...Show All

  • Visual Basic Sequence of Execution of Program Statements

    I am trying to print out a status message to a text box just prior to loading a large file. The printing to the text box is not occuring prior to the download and I am confused about what I need to do to force the desired sequence of steps. Thanks, Fred Herring Dim b As Integer Dim OFD As New OpenFileDialog OFD.Filter = "Media Files|*.wmv;*.wma;*.avi;*.ram;*.rm;*.mpeg" OFD.ShowDialog() If Not OFD.FileName = Nothing Then StatusMessage.Clear() 'does not occur until after the download is complete StatusMessage.AppendText(vbCrLf & "Loading the Media File from the File Syst ...Show All

  • SQL Server SQL Agent Failing when trying to run my SSIS Package

    My SQL Agent was working fine.  Now when I try to run it, it failes when trying to run my SSIS package.  I looked in the logs, and job history, no luck in finding any critical errors. My SSIS package runs fine through VS 2005 in debug mode. Here are the only errors: 01/04/2006 09:53:48,,Warning,[396] An idle CPU condition has not been defined - OnIdle job schedules will have no effect 01/04/2006 09:53:48,,Warning,[260] Unable to start mail session (reason: No mail profile defined) 01/04/2006 09:53:48,,Information,[129] SQLSERVERAGENT starting under Windows NT service control 01/04/2006 09:53:48,,Error,[364] The Messenger s ...Show All

  • Windows Forms Addding multiple words together

    In Excel, I was wondering if there was a way to take a list of words about 7 and add , LLC to each with a click of a button. I have tried the replace command and thats not what I am looking for, it doesn't work. I have also tried to use the paste special and use the add control and that doesn't work either. So could someone please help me. Here is an example Tompson Diamondback Sagewood And what I was wondering is, is there a way to take all those words and at the same time add , LLC to the end so they look like this Thompson, LLC Diamondback, LLC Sagewood, LLC With out replacing each one, one line at a time. Thanks Phil Pardon my ...Show All

  • .NET Development Unmanaged application using managed library can't find referenced assemblies

    There's a C# application with some DLL's. There's an unmanaged application (Total Commander) and I want to create a plugin for it that uses some functions from my C# libraries. I figured the best interface is a managed C++ library: it implements the unmanaged plugin interface by exporting the necessary functions, and it calls into my managed code, so I don't have to reimplement that library. Problem is, it can't find the referenced assemblies (FileNotFoundException, File or assembly name ... or one of its dependencies blah blah). It finds them when they're in the GAC, but for other reasons, these assemblies shouldn't be installed there (they ...Show All

  • Visual Basic Reading characters from a line

    I was wondering (DESPERATELY) how to read only certain characters from a line of text and how to define where the code will start reading and how far into the line the code will read.  and lastly - is it possible to store these specified characters in a variable   I've been messing around with "Mid()" but its not doing exactly what I need it to.  THANX Mid is going to strip your string, but you can also look into using regular expressions to look for patterns in a string, and return them. ...Show All

  • SQL Server Returning objects from CLR Stored Procedure

    Hello All I have a few questions about how to return a DataSet object from a CLR Stored Procedure as an output parameter: Can this be done  I am having problems at execution time with declaring an output parameter of the type "DataSet". "Cannot find type DataSet" message, compiler/build does not complain, error occurs at execution time. This seems like one of the most obvious ways to create a more object-oriented approach using the technology offered in the 2005 product stack (.NET2.0/VS2005/SQL2005), Do you agree if not, what other design would you use. If this cannot be done, returning the serialization of the DataSet would ...Show All

  • Visual Basic ComboBox Click Event (Vb.NET2005)

    I want to handle the Text_Changed event ( Changed by user click, not by code ) in a ComboBox. I use Combobox_click in vb6. It works fine. But in .NET, the ComboBox_Click event doesn't make sense (It fires the event just when the control is clicked before any change is made). I tried ComboBox_ SelectedValueChanged and ComboBox_SelectedIndexChanged. Both of them fire the event when the text is changed by code. I alse tried ComboBox_ SelectionChangeCommitted. However, the text in the comboBox is not updated while the event is handled (it is updated after the event handling). Does anyone know how Thanks ...Show All

  • .NET Development Prepending data in a log file

    I can open a file with filemode Append. What I really want is prepend, so the latest records are at the 'top'. Is there an efficient way to do this for log files which may be quite large and updated quite frequently Or is the solution to provide a viewer that displays the data "upside-down" hi paulustrious, well how about doing the reverse create a temp file and insert the latest log, after that append the previous logs, delete/rename the old log and save the temp with the correct log name ...Show All

  • SQL Server MDX Question

    Hi,   Assume all of members are {NewYork, London, Chicago, Miami, LosAngeles} in a dimension.   I want the members which name is lead of 'L' as MDX axis(0). That mean I want {London, LosAngeles} be MDX axis(0).   In Sql, we can use "like L%".   How to do this in MDX thanks, You can use the MDX Filter() function in combination with various VBA functions such as Left(), Right(), Mid(): SELECT FILTER([Cities].members, VBA!Left([Cities].CurrentMember, 1) = "L")) ON 0 FROM [Cube] (I am reciting this from memory so the syntax might not be a 100% right, but you get the idea) ...Show All

©2008 Software Development Network