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

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

Blufire48

Member List

Jo-Jo
code911
vasudupe
Auris
Glenn Wilson
Guenter
DJBurkey
Bruce Baker
BinaryKiwi
jmelvin
GMan5309
XeviaN
bluejay_2006
hommer
mattdawg
Stephan Smetsers
GazCoder
tenaciousd
Winnie.Wang
Ruprect8696
Only Title

Blufire48's Q&A profile

  • Visual Studio Team System Branch subfolders only

    Hello! I have a TP(TP1) with a main folder and multiple subfolders in it. The main folder along with it's subfolders has been labeled at test123. TP1 Main subfolder1 subfolder2 subfolder3 ... I now need to branch the individual subfolders to team project(TP2) at the parent level. TP2 subfolder1 subfolder2 subfolder3 To accomplish this: 1. I can branch the main folder to TP2 based on label 123 2. Move all the subfolders underneath main to root 3. delete main folder I have 100s of these folders and moving is not an easy task for, even from the command line, I have to do it one at a time. I also tried applying the label in TP1 to sub folders only. But even then, I have to branch one ...Show All

  • Visual Studio Express Editions "Name 'X509Certificate2UI' is not declared" error

    I'm trying to work with a sample of code from MSDN. One of the lines from the code is: Dim collection As X509Certificate2Collection = X509Certificate2UI.SelectFromCollection(fcollection, "Select an X509 Certificate" , "Choose a certificate to examine." , X509SelectionFlag.SingleSelection) VBEE is complaining about X509Certificate2UI and X509SelectionFlag. I've imported " System.Security.Cryptography.X509Certificates", which defines these names. I've used the Object Browser to check that they are there. However, Intellisense doesn't list them if I try to type it manually to see what is available, and I can't get the code to build. --Philip "S ...Show All

  • SQL Server List a city only once

    Hi...I want one listbox showing cities but I dont want to list a city more than one time.... I know that DISTINCT maybe could work...But I dont get it to work correctly.... The code: < asp : ListBox ID ="ListBox1" runat ="server" AutoPostBack ="True" DataSourceID ="DataSource1" DataTextField ="City" DataValueField ="City"></ asp : ListBox > < asp : SqlDataSource ID ="DataSource1" runat ="server" ConnectionString =" <%$ ConnectionStrings:ConnectionString %> " SelectCommand ="SELECT DISTINCT [City] FROM [Location]"> </ asp : SqlDataSource > I got the message: The text data type cannot be selected as DISTINCT because it is not comparable &nbs ...Show All

  • Smart Device Development How to free resources on windows form

    Hello All, I am developing a window form applicationin .NET Compact Framework 2.0. My problem is after i dispose a form it is not freeing up the memory used by that form. Here is the code :: static void Main() { 1. using ( Form1 frm = new Form1 ()) 2. { 3. frm.ShowDialog(); 4. } 5. } If Form1 is a blank form with just a button that close the form (this.Close()) then my Memory usage is as follows Line No. Used Memory in MB 1. 17.08 Once Form1 is loaded 17.42 5. 17.42 Before the application started the Used Memory size was 14.55. MB FYI :: I know that th ...Show All

  • Visual FoxPro Execution of function or command is not allowed in context of SQL command.

    Hi; I got this error when I try to issue a quit command from my error trapping routine. Clicking help (Just like many other cases) is no help at all. I couldn't find this error anywhere in the VFP help or in google... Any ideas why this happens, and how I can avoid it Thanks. Initial error happens here and the error is "Alias name is already in use": SELECT SUM(qopen)FROM krcbp!polgr; WHERE design = tmpcpo.design AND size = tmpcpo.size AND qopen <> 0; INTO CURSOR curPoSum My error trapping routine traps the error and displays it in a form. The form's OK button runs this: CLOSE DATABASES all CLEAR all CLEAR EVENTS QUIT The funny thing is that ...Show All

  • Windows Forms Dropdown List

    Is there a way to make a Dropdown List typing enabled in a web application. Thank you in advance hello U_T_A I dont thnk that we can attempt this,because its against the design of that control ,but again why did u actually need such a functionality ...Show All

  • SQL Server External Activation and Receive Timeout

    I have a set of service broker services setup that rely on external activation to process messages. I'm using the GotDotNet ExternalActivator, and it launches console applications that do the actual retrieval from the queues. The console applications are written to run continuously to avoid the cost of starting up .NET based console apps over and over again. I am observing very odd timing behavior. With the receive queues empty and the external activator configured to run a minimum and maximum of 5 instances, I observe in SQL Profiler that most of the receive operations finish in about the same amount of time as my WAITFOR command in my receive stored procedure. However, there is usually one receive command that consistently takes upwar ...Show All

  • Smart Device Development System.SR.dll appears corrupt when installed on device

    When debugging mobile applications, exception error messages are localized and you need System.SR.dll to be able to see them. Deploying via F5 from Visual Studio does indeed install System.SR.dll for me but I still cannot see exception messages during debugging. Examining the DLL by dragging it to the desktop and inspecting it in Reflector it appears to be corrupt in some way. The only workaround I've found is to manually extract the DLL on the desktop and then deploy it specifically with the solution. Does anyone know why the DLL would appear corrupt System SR cab should place it into the GAC, look in \windows for a file including the name System.SR. If its not there try running the cab file on the device manually. ...Show All

  • Visual Basic Connection to a sql data base

    Could someone tell me where the mistake is in this code : Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim MaChaineConnection As String = "Integrated Security=True;User Instance=True;database=BaseDonnes;server=localhost\SQLEXPRESS" Dim MaConnection As New SqlConnection(MaChaineConnection) Dim Instruction As String = "insert into TableNom (Nom, Prenom) values ('aaaaa', 'bbbbb')" Dim MaCommande As New SqlCommand(Instruction) MaCommande.Connection = MaConnection MaConnection.Open() MaCommande.ExecuteNonQuery() MaConnection.Close() End Sub the error message is : sqlex ...Show All

  • Microsoft ISV Community Center Forums Order by in select statement not working

    Hi there - i have a select statement that runs on form load that allows selection of appropriate company names from a combo box based on if the user is the owner of a company, which works great, syntax is below; Me.companyname.RowSource = "SELECT [companyname] FROM [qryactivity] WHERE [active] = Yes AND [leadofficer] ='" & loginname & "'" However i want to sort them alphabetically by name but cannot get it to work, i keep getting syntax errors, i have added the following code but it does not like it: Me.companyname.RowSource = "SELECT [companyname] FROM [qryactivity] ORDER BY [companyname]ASC WHERE [active] = Yes AND [leadofficer] ='" & loginname & "'" any help would be greatly appreciated. Rhys. ...Show All

  • Smart Device Development Vista, VS2005 SP1, Mobile Device Center and disconnects

    Situation: I had to install Vista Ultimate x64 I installed Visual Studio 2005, SP1. Both in Italian. I could not install the "Service Pack 1 Update for Windows Vista " because it is available only for English. To work with my PDA, I installed "Microsoft Windows Mobile Device Center Beta 3 for Windows Vista (AMD64)". I'm able to sync my PDA with my PC. The problem: When I run my VS2005 VB application, it is correctly distributed on my PDA. BUT, as soon as it load the symbols for debugging, the PDA gets disconnected from the "Windows Mobile Device Center" (but NOT from VS 2005!!) This happens randomly, but about 4 times out of 5. I can debug my application, but since my application is tryin ...Show All

  • Windows Forms How to tell (event) the user changed a bounded value

    I hoped to use CurrencyManager on a bounded table to tell when a user changes a value. (IsDirty state) Instead of having an event for each control bounded for the same table. Any one knows what the trick is current changed fires when you move from one row to the next. I am looking for the event that will tell me the user changed any of the current row's column values. ...Show All

  • Visual Studio Team System Hide/Show fields in the work item when state changes

    Hi, I want to be able to show a certain field only when the bug is in resolved state. When it moves on to closed state I want the field to disappear again. Does anyone know if this is possible Thanks, Deb Deb, you can set rules such that a field value cannot be changed in a state, but not disappear from the form altogether. The form view for work item does not change based on state of a workitem. ...Show All

  • Visual Basic Strings again

    Help; I'M still stuck on this problem How do i capitalize the first letter in a textbox or combo box if the characters are in lower case. You can capitolize each letter, or just the first: Dim str As String = "this is a test" Me.Label1.Text = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(str) Me.Label1.Text = String.Concat(str.Substring(0, 1).ToUpper, str.Substring(1)) First line outputs: This Is A Test Second line outputs: This is a test ...Show All

  • Software Development for Windows Vista DirectShow child window

    I mananged to set directshow interfaces and play a video file. My problem is that the window where the video is played is a new window created besides the main window of my application. I want the video to play on the same main window as a child window. Now I set the VideoWindow parent to be the main window and set its style to CHILD | CLIPSIBLINGS But still it is opened as a new different window. Any suggestions thx. > I just want to display 2 video scenes at the beggining of my application > and thats it. > > What should I do As I already wrote: Look at the samples that do this that come with the SDK and compare them to what you're doing. It's not that d ...Show All

©2008 Software Development Network