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

Software Development Network >> PRA Group's Q&A profile

PRA Group

Member List

WesleyNM
Roy Armitage
allan521
Vijay2kr
Jan Limpens
Veg
klaus_b0
Haarissh
Greg Shaffer
diceboy666
Maksim Simkin
Sorin Solescu
Lee Minett
ershad
María E
Joseph Lopez
S.W. Lambert
william kossack
Matt Watkins
JST39
Only Title

PRA Group's Q&A profile

  • Windows Forms adding treenode

    hi! i want a treeview like this: root ----->child1 --------->grandchild1 --------->grandchild2 for adding the child 1 to the root i use: root.Nodes.Add(child1); i cannot add the grandchild to the child1....which command i have to use if i use child1.nodes.add(grandchild1) nothing happens... please help me TreeNode root, child1, grandchild1, grandchild2; root = treeView1.Nodes.Add( "Root" ); child1 = root.Nodes.Add( "child1" ); grandchild1 = child1.Nodes.Add( "grandchild1" ); grandchild2 = child1.Nodes.Add( ...Show All

  • SQL Server Migrating a Legacy Maintenance Plan?

    Has anyone been able to migrate a Legacy Maintenance Plan to the Integration Services style I'm using the SQL 2005 RTM, right-clicking the Legacy Maintenance Plan, and selecting "Migrate..." After a few seconds, it presents the error "Input string was not in the correct format. (mscorlib)" The only thing that sticks out in SQL Profiler is this statement: SELECT s.log_shipping AS [LogShipping] FROM msdb.dbo.sysdbmaintplans AS s WHERE (s.plan_name=N'MaintenancePlan1') and this error message: Invalid column name 'log_shipping'. but these happened near the beginning of the trace/action. To the best of my knowledge, there isn't anything ...Show All

  • SQL Server sql install as default ..new registration

    Our network guy here installed sql with the default settings...so now when i bring up SQL EM i get local but i need to delete this and add a new registration. Its says use windows login account or sa...........If i use sa...will the SERVER be in mixed mode authenticaion....or i set that afterwards.. Also i want the SQL to start with DOMAIN/SQL account how to change. I know if i installed the SQL i can select all this during installation.. Thanks If ti is using sa and it works then yes the server was installed in mixed mode, you can switch it back in server properties though. If you want to run as a domain account then ...Show All

  • Visual Studio Team System WebTest - Custom validation on a request

    Hello All, I am currently doing an authentication test. What I want to check is that I have correctly the HTTP Status to Unauthorized or Forbidden when I try to log with incorrect credentials. My problem is that when I give incorrect credentials, my request automatically fails. So I was thinking to do something like: public override IEnumerator < WebTestRequest > GetRequestEnumerator() { WebTestRequest request1 = new WebTestRequest ( "http://localhost/Web_pst/RechercheDossier.aspx" ); request1.Method = "POST" ; FormPostHttpBody request1Body = new FormPostHttpBody (); request1Body.FormPostParameters.Add( "txtNomClient" , ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. can i coding the rumble pack by using directX

    hi, i wish to use the 'rumble pack' to give the force feedback effect for the player..... i just wondering the 'rumble pack' is it can program by DirectX..... The link below are some rumble pack..... can anyone told me which rumble pack can program by DirectX... http://games.idealo.com/2048R148K4-Game-Hardware-Nintendo-64-Rumble-Packs.html Thank you :P This side lists rumble packs for the Nintendo64. As the use an own interface you would not be able to connect them to the PC. The only “rumble packs” for the PC I am aware are all part of a Force Feedback joystick, wheel or gamepad. ...Show All

  • .NET Development Need some suggestions about picking a 64 bit workstation

    I'm investigating picking up a 64 bit workstation in the next few weeks. So my question is which would be better, AMD64 or the new P4 6xx series Has anyone tried the 64 bit sdk on either machine Any isses with WinXP 64 (other then the fact it's beta code) and .NETFX64 that could be a show stopper Thanks, Jason ------------ Lois: You're drunk again. Peter: No, I'm just exhausted 'cause I've been up all night drinking. Hi, I think AMD has been selling 64-bit processors for quite a while and hence its a safer choice. I am personally running a Workstation based on Athlon64 3200+ and its been a good experience ...Show All

  • Windows Forms Can't capture the display value of a listbox

    Can't capture the display value of a listbox. I read both the faq and did a search Here is the code I tried.               Case 20                     Dim f As New frmQuoteAssignmentsConcepts                     With f                         .CAI_ID = Me.CAIid   &nb ...Show All

  • Visual Basic how to call php from vbscript?

    I would like to call a php script from within my vbscript. This isn't working... Dim objWshShell, runcommand, DBScriptPath, outputString Set objWshShell = WScript.CreateObject("Wscript.Shell") DBScriptPath = """C:\Program Files\Path\ToScript\dbscript.php"""" runcommand = "C:\ php\ php.exe " & "-q " & DbScriptPath & " " & input1 & " " & input2 & " " & input3 objWshShell.exec(runcommand) outputString = objWshShell.StdOut.ReadAll WScript.Echo outputString The php script doesn't seem to run. ...Show All

  • Windows Forms BUG: Application.EnableVisualStyles() breaks ToolBar control

    Create a windows forms application, add an image list and load some random images. Now add a toolbar, set the imagelist to the image list previously added and then add a couple of buttons. Set the pictures for the buttons to any of the loaded images. Run the application. You should see a Windows2K style form with a toolbar and iconsied buttons. Now add ...Show All

  • Visual C++ Working with threads

    I usually work with threads in such way: using namespace System::Threading; Thread *oThread = new Thread( new ThreadStart(0, &myClass::myStaticFunction)); oThread->Start(); And this works fine. But now I need to run non-static function. So, I think the code must me like this: using namespace System::Threading; Thread *oThread = new Thread( new ThreadStart(0, &myClass::myNonStaticFunction)); oThread->Start(); But this does not works. I've got an error: error C3351: 'System::Threading::ThreadStart' : if you pass a NULL object instance to a delegate constructor you must also pass the address of a stati ...Show All

  • .NET Development Forcibly unload an interop assembly w/ blocked unmanaged thread?

    I have the situation where I think my 3rd-party unmanaged COM object, which has opened a critical system resource, is blocked on a thread or something. In C#, .NET 2.0, I call FinalReleaseComObject() on my object, which returns 0, and then set the varible to null. I tried forcing a garbage collection and it didn't work (I know, it's bad, but I'm trying everything). Watching it run via depends.exe, I see all my other 3rd-party COM DLLs unload but not the one in question. Another twist is that this is a .NET 2.0 user control hosted in IE6. For some reason, I thought that IEHost would have shutdown the appdomain and thus forcibly unloaded ...Show All

  • Windows Forms Bug in Databinding:

    Senario: You have a textbox bound to a data source for which you aren't really sure what is the current row (which is normal with ADO.net) Now if you do this: textBox.Text = "Something"; It will never get saved event if you do a .EndEdit(); If you do this: dt[SomeRow].SomeColumn = "Something"; It will get saved. This is a real pain in the but on m ...Show All

  • .NET Development Page Breaks

    Can i insert page breaks into my style sheet so when I click on the explorer print preview button, I see my tables borken onto separate pages depending on where i place my page breaks. This should be question about HTML, not about stylesheet. If you know how to break tables on pages in HTML you can add the logic to stylesheet to generate such pages programmatically. ...Show All

  • Software Development for Windows Vista Frame control and more...

    I am helping to develop a video player application using DirectShow and we are trying to get the total frame count for a mpeg video (no WMV support needed). Also, is there a way to have a signal set in order to update the position of a slider bar with the video position Finally is there a way to frame skip backwards We know that IFrameStep has the Step( x ) function, and that it does not support backward skipping. However, is there a way to jump directly to a particular frame Thanks ...Show All

  • Visual Studio Team System FxCop and VS2003

    First let me say that I really appreciate all the work done on FxCop. Its a very helpful tool. However, the integration into VS2005 needs to be back-ported to VS2003. it does not have to be "exactly" like 2005, but it can come close. Here are a few ideas on how this can be accomplished. 1) Provide an AddIn that gives the user a context menu for the projects so code analysis can be run. Sure, you can put it on the "Tools" menu, but that is not as helpful considering most of the other things related to the project are on the context menu. running NUnit and NCover are so much simplier using TestDriven.NET, and I think adding FxCop to that ...Show All

©2008 Software Development Network