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

Software Development Network >> I am Anonymous's Q&A profile

I am Anonymous

Member List

Jochen Z
Marcelo Amorim
David Smith from MSU!
Venusm
suvuk
Jo?ko
wzhao2000
ty3333
kmhawkes
Maryello
brettman
james_paul_p
Vit Pippal
keithster
JK302
marijabo
ken handzik
_StevenB_
Mowali
lalumbres
Only Title

I am Anonymous's Q&A profile

  • Windows Forms i need this embedded code in vb 2005 instead of c#

    this code was to handle the selctedindexchanged for the datagridviewcomboboxcell private void dataGridView1_EditingControlShowing( object sender, DataGridViewEditingControlShowingEventArgs e) { ComboBox cb = e.Control as ComboBox ; if (cb != null ) { // first remove event handler to keep from attaching multiple: cb.SelectedIndexChanged -= new EventHandler (cb_SelectedIndexChanged); // now attach the event handler cb.SelectedIndexChanged += new EventHandler (cb_SelectedIndexChanged); }f oid cb_SelectedInd ...Show All

  • Visual Studio Express Editions ToolStripMenuItem1.Click makes bgcolor change

    Hi, I am building a program with several textboxes, and I have a ContextMenuStrip to use with the textboxes. Now I want to make the textbox's backgroundcolor change into an other color if the user clicks on the ToolStripMenuItem_1, but how do I make this work, because I don't know how to do this. Grtz, Tom. Ok, and thank you for all the explanations you gave me :p I think I know almost everything I need to know to build my program ;) Grtz, Tom. ...Show All

  • SQL Server Replication of triggers

    Hello ! I have set up some transactional replication on one of my database but I can't see where I can specify that we should replicate the triggers. What I have seen is that the triggers are automatically replicated when the table is replicated except id they are marked "Not for replication" But it does not seem to work for me. Do you have any idea Thanks, Hi Jarod, I am not sure if my following suggestion applies to your scenario or if you have already tried it already, but you can enable the 'Copy user Triggers' schema option on the article properties page to have your triggers replicated with the initial snap ...Show All

  • SQL Server IE Script error (print rss report)

    Hi I have a report that works fine on most of the clients but a few of them can only display the report. When they try to print the report they get a IE script error. How can I fix this problem Best regards thn Problem fixed.... The report faild to print because the client had the wrong regonal settings... ...Show All

  • Windows Forms ToolStripStatusLabel cutoff

    Hi, if you look at http://www.kingvest.de/cutoff.png you can see that my ToolStripStatusLabel gets cut off. It only shows @ 50 instead of @ 50,23. Anyobody has an idea why this might be happening Application is set to Application.SetCompatibleTextRenderingDefault(false); and the label is on AutoSize. Thanks, Tom Hmm, not sure why that's happening... try setting toolStripStatusLabel.Spring = true and see if it helps   ...Show All

  • Visual Studio 2008 (Pre-release) Problem with RelativeSource Binding

    Hi, I have a class called Matching_Question which has 2 observable collection type objects with their respective properties called MQ_Choice_Data and MQ_Answer_Data. I have a datatemplate which has the DataType to be set to Matching_Question class and it has 2 ListBox controls with ItemsSource set to their respective properties (MQ_Choice_Data and MQ_Answer_Data). The second ListBox(MQ_Choice_Data) has two controls, TextBlock and ComboBox inside this ListBox.ItemTemplate. the ComboBox should have the ItemSource property set to the outer binding ie the MQ_Answer_Data. HEre is the code which I have written but it doesnt seem to work. ...Show All

  • Windows Forms Making a UserControl behave like a Timer control at design time

    I have a UserControl in C# that I want to behave like the Timer control, and other controls behave.  That is, at design time, when the user places the control on a form, it drops down to the window below the form instead, and just shows its name.  Also, at runtime, it doesn't display anything.  Does anyone know how to do this ...Show All

  • Visual C++ msvcr80d.dll not found

    I've created a simple Win32 console application. When I try to debug it, I get the message:  "This application has failed to start because MSVCR80D.dll was not found. Re-installing the application may fix the problem." The Release version runs fine. Any idea as to what the problem could be Thanks, Jonny feuerste that's an excellent point (I'm "bottom posting" this reply so it will appear at the bottom of this thread)  I didn't know what the "use FAT32 work-around" option was as it's not even in the online help.  And the only mention of it seems to be in a Korean blog at: http: ...Show All

  • Visual C# Timers

    Hello, I am using a System.Timers.Timer in my Form (my form is an activex control embedded into a web page) which I dragged and dropped from the toolbox. When I check the application using http://localhost/restofurl it works just fine, and the timer runs correctly. However, when I run the application from the remote server http://remoteserver/restofurl, the timer never elapses. It is the VERY SAME code, the very same DLL. Why would the timer work in one case and not the other The remoteserver is in my Trusted Sites in Internet Explorer. Thanks, Shay. Note: I also tried working with System.Threading.Timer - same behavior. ...Show All

  • Windows Forms Custom collection inside inherited control NOT removed when control removed

    Hello All, We have a custom ComboBox which inherits ComboBox and extends it. Within the custom ComboBox there is a custom collection. Everything works as expected except for one thing. If I drag a custom ComboBox onto my form, add some custom collection items and then remove the custom ComboBox from the form, the custom collection is NOT removed from the Designer generated code. It seems like that should happen automatically. Can someone explain to me why it does not and also what I need to do remove the custom collection when a custom ComboBox is removed from the designer Thanks in advance for any ideas and/or suggestions! As an as ...Show All

  • Visual Studio Tools for Office A very technical (I think) VSTO startup question

    What is different on a system before VSTO customized document is loaded and after Let me explain. We've got a Word customization that takes 58 seconds to load the first time after a reboot, but only 18 seconds thereafter. Our customization is installed in the GAC, is NGEN'd, and rather large. We have a shimmed managed Word addin that starts .NET CLR with the STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN flag so that multiple documents don't require all of our assemblies for each document. We've also found through experimentation that loading a differently customized document (i.e. a new Word VSTO project) before loading our customized doc ...Show All

  • Visual Studio Express Editions cursors

    hi, when i hover over panel1 i wish my cursor to change to an image of my liking, could someone please tell me how this is done You can set the Cursor property of the Panel, as OShah said. Just set this to an specific Cursor you want. Now only you panel will have that specified cursors. You can also change this property on events, so the cursor is only different in specific situations. ...Show All

  • Windows Forms Can non-admins install application which creates event source on setup?

    Non-admin users will be installing our application. It needs to register/add an event source. Is this possible being the users are non-admin Thank you. You can install the application but the application cannot get any more permissions than the user who launches the application. The classic workaround, other than installing the app as an admin and having something during the install setup the event source, is to deploy something through SMS or Group Policy (Active Directory) so that you can run it "blessed/elevated" and do the impactful work. ...Show All

  • Visual Studio Express Editions Problem Installing Beta 2

    Was using Web Developer Express Beta 1 successfully on Window 2003 Server. I uninstall all of beta 1 as according to install instructions and installed Beta 2. When I run Beta 2 I get the following error message... "Package 'Visual Studio Common IDE Package' has failed to load properly (GUID={6E87CFAD-6C05-4ADF-9CD7-387943875B7C)}. Please contact package vendor for assistance.  Aplication restart is recommened, due to possible environment corruption.  Would you like to disable loading this package in the future   You may use VWDExpress / resetskippkgs' to re-enable package loading. YES or NO. If I say yes the following message ...Show All

  • .NET Development How to enumerate shared folders on a network computer?

    Hello, I need to know how to enumerate the shared folders on a network computer. I've tried the following code snippet from MS technet: Dim strComputer = "<insert computer name>" Dim objWMIService = GetObject("winmgmts:" _     & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Dim colShares = objWMIService.ExecQuery("SELECT * FROM Win32_Share") Dim objShare For Each objShare In colShares     Debug.WriteLine("Caption: " & vbTab & objShare.Caption)     Debug.WriteLine("Name: " & vbTab & objShare.Name)     Debug.WriteLine("Path: " ...Show All

©2008 Software Development Network