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

Software Development Network >> Russell Christopher - msft's Q&A profile

Russell Christopher - msft

Member List

Manuel Burggraf
Robert Schlabbach
CAnil
filiph
Tobias Manthey
Webprofusion
Kartik
Pabya
Shortty
Free Hall
Greg1
PaulB1950
David Langford
johnzlin
PatrickL
Baumbart
adam_k
YCY
JCAlmaria
robosport
Only Title

Russell Christopher - msft's Q&A profile

  • Visual C# radio button's "selected" event

    am using 2 radio buttons in my form. rAdmin and rDesigner. < input type =radio id =rDesigner runat =server name =userType onserverchange ="rDesigner_ServerChange"> < input type =radio id =rAdmin runat =server name =userType onserverchange ="rAdmin_ServerChange"> when the user selects either radiobuttons, data is displayed based on which radio button is selected. where should i write the code for d ...Show All

  • SQL Server MySQL to SQL Server migration

    Hi, I would liked to know the SQL Server equivalent for the below MySQL query : SELECT a.col1, a.col2, max(a.col1) FROM test a, test1 b WHERE a.col2 = b.col2 GROUP BY a.col1 Thanks, Smitha You can do it the same way except you can't just show a.col2. You use groupby, so it must belong to some logical output. You can do it like: SELECT a.col1, max(a.col2), --or other functions... max(a.col1) FROM test a, test1 b WHERE a.col2 = b.col2 G ...Show All

  • Visual Studio a problem with Exec function

    Hi all, I've made a add-in project to generate a new web project.I have a question that after executing onfinish method in default.js should then execute Exec function in connect.cs, but in fact Exec function didn't execute. How to solve this problem Best regards The Exec function is invoked only when you invoke the command that is added by a call to AddNamedCommand[2]. If you have changed the name o ...Show All

  • Visual Studio Team System Webtest "hangs" while Submitting

    Actually, it appears to be hung before the request is sent, because the Request Detail window says "Request not yet submitted". I've got a webtest where, on a specific page, it always "hangs" while executing...  The main Test Progress window shows "Submitting" under the HTTPStatus column, and it stays this way for at least 4 or 5 minutes.  Test Results pane shows the test as "In Progress".  If I try to start the test again, I c ...Show All

  • Visual Studio Export to vector graphic format

    Hello, I was trying the export as image functionnality of the class designer of Visual Studio 2005 Pro, and I've seen that there are no vector graphic format to export the diagrams to. Is there a plugin of some sort or a functionnality that I haven't found to do that Isn't there a way to export the class diagrams to Visio Thanks Hello The new designers in VS 2005 do not export to Visio. If you need to have yo ...Show All

  • Visual FoxPro I have a corrupted table. Is there a simple, FREE way of repairing or recovering the data?

    I have a corrupted table. Is there a simple, FREE way of repairing or recovering the data Thanks, Jim Jim, (Make sure you have adequate backups before you proceed!) What version of VFP If you know what you are doing and it's just a mismatch between the number of records in the file and what the table header says there should be the hexedit() app will let you modify the header. You might want to check ...Show All

  • Visual Studio Downloading of files frm VSS using commandline issue.

    Hi people, I got a problem which I don't know if its a VSS or C# problem. Currently i am writing a script which will extract source codes to a local folder. So to achieve 'automation' I created a simple .bat file which contains the ss.exe paths and arguments which will be called by my running C# program. However the issuse arise when i call the .bat file from my C# program, the sourcecodes are saved to the /bin/debug folder of my C# sc ...Show All

  • Visual Studio Securing Crystal Report Files

    Hye Guys,        I am New to crystal Report. I have been using it for shot period of time. I use to design the report using crystal report and sitribute it with my application developed with VB. Now I am afraid that if any of my client have crystal report designer then any  annonymous user can redesign my report and produce the unexected results .  So I am concerned abt the security of the ...Show All

  • Microsoft ISV Community Center Forums Microsoft Document Image Printer - MODI Registry Settings

    Does anyone know what are all the available registry settings for MODI Through much searching in google (msn search finds nothing) I've found the following the following ' Write to File Only (uses current save folder and Note####.mdi as file name) SetKeyValue HKEY_CURRENT_USER, "Software\Microsoft\Office\11.0\MODI\MDI Writer", "PrivateFlags", 1, REG_DWORD ' Don't Show Popup Window SetKeyValue HKEY_CURRENT_USER, "Softwar ...Show All

  • Visual C# MessageBox behind console window when run in debugger (F5)?

    I have a message which looks like this: MessageBox .Show( "Init failed!" , "Trace" , MessageBoxButtons .OK, MessageBoxIcon .Exclamation); When I double-click on the .exe file in the debug directory the MessageBox appears on top of the console window (it's a C# console application). But when I press F5 to run it in Visual Studio 2005 the MessageBox appears behind the console window (it peeks out at the bottom of the co ...Show All

  • Smart Device Development Application don't want to run

    I've compiled my binary with VC80 and found a problem with CreateThread - it doesn't create a thread and GetLastError returns error number 8(it creates 2 threads, but 3rd thread creation fails), but when I've worked with eVC and everything was OK. What is the difference - may be wrong project's settings Thanks. If I understand correctly, the application fails at the creation of the third thread because of lack of system resources. On ...Show All

  • Visual Studio Team System Error 32000. Team Foundation Server Setup

    Hi I have hint. It really works. When You install Team Foundation Server Application Tier and You get 32000 error with comment "BisRegedit.exe ... return not-zero value:1" Setup uses parameters with such url's like "http:\\<computer name>\..." to execute Commands So your computer must be visible via such url. In Internet Options\Connections\Lan settings... uncheck option "Automatically detects settings". It is one of these amazin ...Show All

  • Windows Forms Calculate Width of a String in Pixels

    hallo, Given a Font and a string, is there any ready-to-use function in .NET which can compute the resulting width of the string in pixels So that I can adapt say a Label, MenuItem or Textbox to the new size of a string. thx, Steve ...Show All

  • .NET Development Cannot enter string into Text data type in Access database

    Hi, I am trying to insert a value into a access database. The data type of the value is text in access. When I use the following sql command it fails at runtime. AccessDataSource1.SelectCommand = "INSERT INTO Monthly_Backup_Table (General_Desc) VALUES (TextBox1.Text)" But however if I put in the value 'TextBox1.Text' into the command it enters 'TextBox1.Text' into the databse. I persumed text would be a of type string I hav ...Show All

  • Visual Basic Open Many OledbDataReader in same connection

    I tried to bulid a dynamic tree, I used recursive function which has datareader declaration. Error message said, You have already open a datareader. So how is the solution Hi, Can you post a significative extract of your code. It will be easier to understand your problem Tukkkko Architect ...Show All

©2008 Software Development Network

powered by phorum