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

Software Development Network >> Rusty H's Q&A profile

Rusty H

Member List

CoolBhatt
Harry Solsem
Skidmark
Loanarranger
esc
Abstract Labs
Risotto
jazzMan007
Pär Hedberg
Derek Lakin
Leeland Clay
CharlesCook
Benc45
Scimatic Software
shobhit
zookeeper
Gandalf_The_White
Helixpoint
Marian Andrei
nanceoiage
Only Title

Rusty H's Q&A profile

  • Software Development for Windows Vista Deploying WWF Beta 2...

    Hi, I've got a problem - my workflows work on the development pc but not on the production server. I'm using WWF Beta 2, both machines are in a very similar hardware configuration. The error message that i'm getting is: "Cannot create more than one WorkflowRuntime per AppDomain". The way that i'm creating WorkflowRuntime object is as follows: public WorkflowRuntime WFRuntime { get { if (_runtime == null ) { try { _runtime = WorkflowWebRequestContext .Current.WorkflowRuntime; } catch ( Exception ) { _runtime = new WorkflowRuntime (); } } return _runtime; ...Show All

  • SQL Server Import from Interbase

    Hi all... How do I import data from a Borland Interbase 6 database to a SQL Server 2005 Standard database When I try do an import from within Management Studio, I can connect to the ODBC datasource, but I have to write a manual query for each individual table to get the data across. I am using the OpenSource Firebird ODBC driver. The funny thing here, is that I tried to import into a SQL Server 2000 database and it worked 100%. I could connect to the interbase DB, all tables were pulled, I ticked each on and completed the import wizard. It worked 100%. SQL Server 2005 will not work though. And using exactly the same methods and prop ...Show All

  • Visual Studio Team System VS2005 Unittest and build actions

    I'm trying to migrate my NUnit tests to VS2005 unit test. My project uses build actions to copy configuration files into the output directories (e.g. by Spring xml files goes into a spring subdirectory) I have read the suggestions in http://forums.microsoft.com/msdn/ShowPost.aspx PostID=7510 but the result is the files are copied into the out directory and not into the out/Spring directory as I would like. I find it rather odd, that the unitest does not run the post build actions, and that the test directory copy does not create the directory. Any clues, I'll really like to migrate my team from NUnit to VS2005, but maintaining separate conf ...Show All

  • Windows Forms Testing Methodology

    I was wondering if the experienced developers out there would mind sharing their thoughts on how they test their critters.  I'm currently planning on creating some test harness' so that I can write some nunit tests, but I can foresee some potential pitfalls related to code access security etc.   What I'd like is: 1.  If you have some code out  ...Show All

  • Visual C++ convert from char a[MAX_PATH] to LPCWSTR

    hi, i have 2 variables like char * username char sysname[MAX_PATH] i need to use "NetUserGetInfo" windows API method, which takes two LPCWSTR strings, how can i convert the above sysname,username to pass them to NetUserGetInfo. thanks If you put the USES_CONVERSION macro in your code, then A2W will convert to a wide string for you. There's an include, it's AtlConv.h . Or you can include commutil.h and use the _bstr_t class, which will convert between them on your behalf ( it uses A2W behind the scenes ) LPCWSTR means a long pointer to a const wide string. ...Show All

  • Visual Basic Student Team Project: Project DJ Magik

    I am having a problem getting the Realplayer commponent within the VB 6.0 commponents Add tab. "C:\WINNT\System32\rmoc3260.dll could not be loaded" I would aslo like to use a label or a list box to display Lyrics text from a Txt file stored in a database. Any help within the general scope of ideas would be helpful. As to Why this error is appearing or as to a easier route to the desired output Additional log file for Reported errors: Foorm log name: FrmMediaplayer.log Line 78: Class RealAudioObjectsCtl.RealAudio of control RealAudio1 was not a loaded control class. Line 84: The property name _ExtentX in Real ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. texture translation not working when using d3dxmatrixtranslation

    Man I got a big problem that is drinving me crazy!! I have to apply some texture coordinate transformations at render time for some effects (not using shaders!!) using the d3dDevice->SetTransform( D3DTS_TEXTURE0, &matTrans ); Rotations and Scaling are working perfectly using the d3dx functions to get the matrix. But, when I try to apply translations to the texture coordinates, the funtion D3DXMatrixTranslation is not working: the matrix generated by it does nothing with the texture!!! I'm calling it this way: D3DXMatrixTranslation(&m, deltaU, deltaV, 0.0f); //w coord doesn't exist since i'm working with 2d textures... PS: I' ...Show All

  • Visual Basic compiler and unexpected error (cqqueryeditquerysaveinterfaces.cpp)

    tried to build a project... and got the 'unable to comile ... error &Hxxxxxxxxx' etc. then noticed 1 warning 'unused variable' so I though I would jump in and fix that before attempting a full build... double clicked warning... went to comment out the variable line .... and I got the following message... Microsoft Visual Studio X Unexpected error encountered. It is recommended that you restart the application as soon as possible. Error: Unspecified error File: vsee\pkgs\vssproviderstub\cqueryeditquerysaveinterfaces.cpp Line number: 1060 any one shed any light on it for me Lex. ... more information ... ...Show All

  • Visual Studio Team System Getting ready to switch to TFS for work items

    For the past 3 weeks the developers have been doing extra work. Trying to manage the WOrk Items in TFS as well as our current product tracker. We are ready to do the switch and stop all our staff from using the current product tracker for our main application. We don't know if we can do it fully. A lot of information in our Product Tracker is about future design's for years down the road, idea's and features everyone and anyone thought would be great, so we're not sure where to put these... What have you guys done as far as switching One day did you walk in and tell your staff / co-workers to use this instead of that and provide traini ...Show All

  • Visual C++ ComboBox Help

    Hi. I am making a program that has a combo box in it. It is a static drop-down list. I want to be able to open a certain window when "Test window" is selected in the box. How do I do this. I am programming this using Visual C++ 6.0. It is a MFC so if I could get any help that would be wonderful. Thanks. There is a selected index changed event on the combo box. Handle this event, and then check the text being displayed with GetWindowText(), if it's Test window', then act accordingly. You could also do it by index, if the index won't change, but if it does for some reason, your code will break later. ...Show All

  • Visual Studio Tools for Office Seroius error while having combobox into each column's cells

    Hi all, After binding my listobject/excelsheet with database I put following code to add combobox into each cell of the column. Excel . Worksheet mainSheet = (Excel. Worksheet ) Globals .ThisWorkbook.Sheets[1]; Excel. Range oRange = mainSheet.get_Range( "C10" , missing); oRange.Validation.Add(Excel. XlDVType .xlValidateList, Excel. XlDVAlertStyle .xlValidAlertStop, Excel. XlFormatConditionOperator .xlBetween, "=C11:C150" , " " ); oRange.Validation.IgnoreBlank = false ; oRange.Validation.InCellDropDown = true ; And here getting error for last line i.e. oRange.Validation. ...Show All

  • Visual Studio Express Editions Global Variables

    I am sure this is so simple.... I need to create a global variable. When I use the professional edition at college I just type it in underneath the box that says 'Windows Form Designer generated Code', and bobs your uncle! However, Express doesn't have that on the screen and it has brought me to a standstill on chapter 3 of my book. Can anyone help, because this is how I am feeling after 3 hours of looking Thanks so much Dave and also Solitare for your answers. They were quite helpful. Actually, I found it in the Form1. Designer.vb. As Solitaire bascially said: the pdf doesn't ...Show All

  • SQL Server Reports with OLAP Cubes

    Hi I try to design a report with Chart based on an Analysis Services Data source... It does'nt work !!! Has anyone else the same problem It would help if you could provide more details of what exactly does not work. Maybe the data values are coming across as strings rather than numeric values Try to convert the datatype for the datapoint expressions. E.g. =Sum( CDbl (Fields!Measure.Value)) -- Robert ...Show All

  • .NET Development Adding rows to table in Dataset

    VB 2005 express beta 2 I've set up a dummy project to learn how to insert rows into a database, and i'm having some trouble. You'll see the naming convention right away.... Here's the code that looks like it should work... the warning that pops up is that the variable NewTestRow is used before it has been assigned a value. i want it to be a new row in the table, but can't figure out how to set it as a new row. Private Sub TextBox1_Leave( ByVal sender As Object , ByVal e As System.EventArgs) Handles TextBox1.Leave     Dim NewTestRow As TestDataSetDataSet.TestTableRow    NewTestRow. ...Show All

  • SQL Server SCD and populating dimensions and facts

    Hello, This is my first task in attempting to populate a fact and dimension table from SSIS. I have a Fact table Sales and dimension tables Customer and Location. The data I am getting to fill this structure is in one file. where each record contains the sales information as well the customer information and location details on the same row. I am using the SSIS to fill this structure by using the slowly changing dimension for the Customer dimension. I am filling the customer dimension by using the slowly changing dimension. If I have 2 records having same BusinessKey but each with a different first name, where first name is set as a ...Show All

©2008 Software Development Network