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

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

BRCEWANE

Member List

Rob Ski
ChinmayaNayak
Ori'
Izzy545
Mike!
lushdog
ZychoFlow
Tony Vaughan
critical5
AxelJump
Markmar11
Arjun B
Asher Aslan
johnny_no1_boy
Derek Comingore
Gurmeet
Ted.
kymaita
theExplorer
Kain363399
Only Title

BRCEWANE's Q&A profile

  • Visual Basic Visible False for the List view Sub item

    i am having a listviewer, i am iterating the listview and checking for my condition, if it has the matched the condition the particular sbitem should be invisible.. i don know how to access the property visible=false for that subitem alone can anyone help me plz ...Show All

  • SQL Server locked out of sql server management studio

    Hi everyone, I hope someone can help me here! A friend of mine set up a Windows 2003 Server for me in my home with Sql Server 2005. I'm developing a website for prospective employers to see the kinds of things I can program since I have no field-related work experience. I have a cool site up, but I can't showcase the any features that use sql server (which obviously, are the kinds of things employers want to see) because the login and password my friend remembers produces this error: Cannot connect to server. Additional information: An error has occurred while establishing a connection to the server. When connecting to sql server 2005, this failure may be caused by the fact that under the default settings sql server doesn't ...Show All

  • Visual Basic How to query by 1 Button_event several TextBox's Text

    Several TextBoxes (First, LastName, DOB etc)are bound to a Database . 1. How to query any of these TextBoxes with 1 Button The query for one of the TextBoxes: SELECT IDP, First, LastName, DOB, SocialSecurityNumber FROM Table12 WHERE (First = @TextBox1) 2. Furthermore, how would be a query look like if the user just type the first letter of the LastName   Hi, Just change the code below to run the 4 separate queries instead of FillBy 's instead.   Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ...Show All

  • .NET Development WebClient.DownloadFile - random 500 byte download problem - pls help

    I have been suffering from a random problem that I cannot pin down.  Quite simply I am trying to download a file using a very simple application.  The problem is that sometimes the full file is downloaded and other times only the first 500bytes.  This occurs with different files of different types. I have used an HTTP sniffer program and the full file is included in the http response! The file is using a "web folders" uri and therefore uses FileWebRequest/Response and not HttpWebRequest/Response. The original code is: webClient.DownloadFile(filePath, "C:\somefile.doc") This was revised to the following so I could get a byte count: Dim request As FileWebRequest = FileWebRequest.CreateDefault(New Uri(filePath)) ...Show All

  • Software Development for Windows Vista Set folder security permissions during installation

    This note from the Microsoft site mentioned below, suggests that application specific data should be placed in the location provided by the KnownFolder API (passing parameter :CSIDL_COMMON_APPDATA). CSIDL_COMMON_APPDATA This folder should be used for application data that is not user specific. For example, an application may store a spell check dictionary, a database of clip-art or a log file in the CSIDL_COMMON_APPDATA folder. This information will not roam and is available to anyone using the computer. By default, this location is read-only for normal (non-admin, non-power) Users. If an application requires normal Users to have write access to an application specific subdirectory of CSIDL_COMMON_APPDATA, then the application must explic ...Show All

  • Visual Studio 2008 (Pre-release) Charts with Xaml

    in my work i need a WPF chart that I can use it in xaml code i search about it but i can't find any chart, just ChartFX of softwarefx website i download it but it is not working please i need this chart , any one know where i can download it There is a new WPF Chart (xamChart): www.Infragistics.com . Download: http://www.infragistics.com/download-xamChartCTP ...Show All

  • Software Development for Windows Vista how to access custom stateActivity property

    How to access custom StateActivity In response to my previous query: http://forums.microsoft.com/msdn/showpost.aspx postid=498300&SiteID=1 I tried, using: _workflowRuntime.GetWorkflow(m_XOMLWorkflowinstanceGuid).GetWorkflowDefinition.GetActivityByName(" MyStateActivity "). MyProperty Without any luck. Look at this blog post I made - http://www.masteringbiztalk.com/blogs/jon/PermaLink,guid,ffd586d5-e24c-4a3f-b0d8-6530d5dca507.aspx GetWorkflowDefintion is not for passing data to your workflow instance - it is a metadata object you can use to query and potentially change the Activity tree. ...Show All

  • Visual Studio 2008 (Pre-release) ListView sorting

    I have a ListView with sorting. In my ListView I have the header names distinct from properties of object to witch the ListView bound. So I can't use sorting parameter as string sortBy = headerClicked.Column.Header as string ; I tried to add x:Name to GridViewColumn, but in code I can't get it (Name=""). My question is - What parameter can I use in order to sort ListView void GridViewColumnHeaderClickedHandler(object sender, RoutedEventArgs e) { GridViewColumnHeader headerClicked = e.OriginalSource as GridViewColumnHeader; sortBy = headerClicked.Column.Header as string; ..............} < ListView GridViewColumnHeader.Click = " GridViewColumnHeaderClickedHandler " ...Show All

  • .NET Development XmlConvert.ToBinHexString is internal ??

    Hi, So it's easy( ) I think to write this function myself. But I figured the BCL must already have done it. And it appeared they had: http://msdn2.microsoft.com/en-us/library/system.xml.xmlconvert.tobinhexstring.aspx But both the C# compiler and Reflector seem to agree; error CS0117: 'System.Xml.XmlConvert' does not contain a definition for 'ToBinHexString' Reflector shows this as: internal static string ToBinHexString ( byte [] inArray) { return BinHexEncoder . Encode ( inArray , 0 , inArray . Length ); } This is with .NET 2.0. Haven't investigated 1.0/1,1 yet. Wierder yet, analysis in Reflector seems to indicate that this internal method is used by XmlCustomFormatter.FromByteArrayHex which in turn is used by XmlSerili ...Show All

  • Visual Studio Source Safe

    Hi, I am using Visual Studio 2005 Team Edition for Software Developers. Everytime I open my project, its getting update from Source Safe, which I don't want everytime.. How can I disable this Thanks Tools -> Options -> Source Control -> Environment -> uncheck "get everything when a solution or project is opened" ...Show All

  • SQL Server is there any IsString() function in vb.net?

    hi i want to check that only string in textbox. the textbox shoould enterd the strings so is there IsString() function in vb.net plz help me....   Hi, first of all your subject does say nothing about your problem, so many people won't read it.. secondly try to use the forum search, your problem has been discusses many times.. for example: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=432801&SiteID=1 ...Show All

  • Visual Studio 2008 (Pre-release) Debug a WCF service?

    If I have a IIS hosted WCF service how and what do I attach to in order to debug the service In general is there a way to tell the name of the WCF service that is running so that it can be attached to and debugged. Thank you. It is IIS 6 but it seems that things are different for WCF because I looked for the w3wp.exe process and it never showed up. Kevin ...Show All

  • Visual Basic passing variables between forms

    I am having serious issues trying to take data from one form and passing it to another form... I have a 3 form new employee application that gets information from the new employee in textboxes and then sends it to a database... my problem is that once i make an instance of the form: dim theFirstForm as new Form1... and dime theSecondForm as new Form2. i cant seem to figure out how to access it and store it in variables... so that on the third form i can access it and populate a database with all the information. My programming teacher made the suggestion to make a new class and send all the info to the class and then on the submit button access it from there and then populate the database... any suggestions on the best way to do this i hav ...Show All

  • Windows Live Developer Forums Thematic maps?

    Is it possible to build thematic maps using the virtual Earth SDK For example making regions different colours based on their population density. Thanks, Andrew True but by generating static tiles to represent the layer it becomes faster and more scalable then map point can ever be. While map point in generating every request on the fly VE is simply serving up image tiles. John. ...Show All

  • SQL Server types of records in sysobjects

    I have a question about the xtype field in the sysobjects view. What do these characters mean I think I've found lists, but are they complete What is the difference between FN and FS BOL = Books On Line ( http://msdn2.microsoft.com/en-us/library/ms130214.aspx ) or Start-->programs-->Microsoft SQL Server 2005-->Documentation and Tutorials-->SQL Server Books On Line Denis the SQL Menace http://sqlservercode.blogspot.com/ ...Show All

©2008 Software Development Network