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

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

TheViewMaster

Member List

Catalin Zima
bitem2k
TOM_MUE
Anaray
Veera.c
MrJavaGuy
Chrisull
Igor Grozman
monrealis
Kevin Hoffman
ramjamman
QWERTYtech
PentagonMaster
Crukis
Wolvenshade
Freeky
sabmni745
nishanttheone
esb
mrmckeb
Only Title

TheViewMaster's Q&A profile

  • SQL Server Deploying packages with SQL Server based configuration

    Hello, We have been conducting some testing regarding package deployment and SQL Server based configuration. It seems there is a problem that was documented in an MS Feedback entry ( https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx FeedbackID=126797 ) I searched for a viable answer, work-around, or hotfix that would address this issue but found none. The jist is that a package that uses SQL Server based configuration must have an xml-based configuration entry to "re-point" the SQL Server based configuration connection manager to the deployment target server. We cannot use environment variable or registry as this is against internal policy. The problem is that even though the xml based config i ...Show All

  • Smart Device Development information regarding mobile start status

    hi all, I want to track the boot up of the mobile, i.e. after i switched off the mobile as soon as i start again, i want my appln to run. any help in achieving this i would very greatful. Thanx in advance thanx for the help.But where to include this code Invoking to the api in the console application. Thanx for ur help. ...Show All

  • Windows Forms how can i change the source code of a webpage with webbrowser control??

    i want to add some source code to a webpage to add some functions for my own uses.... for example a webpage has a javascript function a(str){ ..... } i want to add an other function b to filter out some text.. so function a(str) {b(str); .... }.. for example, there are some ad blockers will block some of the ADs, and replace the AD's picture with "AD Blocked" or something,, but the page is still the "original page" not a new blank page with the original page's source code,,.. if you open a new blank page and write the original page's source code to it,, it will affect the browsing,, it'll consider as a different host's page,, the child frames from the original page can't access thei ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. What file types (for models) can you import into XNA?

    Can i use 3ds max 8/9 to create models for XNA And will i be able to use their properties (textures, shaders and bone structure etc.) ...Show All

  • Visual J# read text for a .txt help

    I'm attempting to read a line of text from a text file but found no scanner class that I usually use in the java.util package. Does anyone have a good suggestion on what I should use to read a line of text Thanks saw in the alerts you asked something about sleep, but can't find your posting here ( ) > I'm not seeing a Sleep() method. Would wait() do the same thing with classic Java threads you can use Thread.sleep(0); (or give some other time in msec - even the 0 value [or greater] is useful in Sun JVM for Windows of version 1.3 cause else at tight loops all the other threads freeze - in .NET this might not be the case [depends with which flags they init the threads]) ...Show All

  • SQL Server How to update a column in input dataset by SQL Query?

    I'm bothered by an issue of updating a column in input dataset from a update query. It looks like SSIS has a very poor function on this. Example, I have an input dataset of name, salary, dept_no, and I have another table called departments which has fields of dept_no, Dept_name, basic_salary now I want to update salary column in input dataset with basic_salary if it's salary is smaller than the basic_salary. update #tmp set salary = basic_salary where #tmp.salary <departments.basic_salary and #tmp.dept_no = departments.dept_no   how could I impletement this in SSIS package I tried with lookup, modify scripts by enabling memory restriction. It doesn't say any error when I save the package, but I never get pass debu ...Show All

  • Windows Forms ProcessCmdKey and Controls.Clear

    Hello, im writing a small C# Win application for my University assignment, i have encountered a nasty problem while trying to implement keyboard shortcuts: i have this code in MainForm.cs ... protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { switch(keyData) { case Keys.Control|Keys.Q: ShowControls1(); break; case Keys.Control|Keys.W: ShowControls2(); break; } return base.ProcessCmdKey(ref msg, keyData); } ... protected void ShowCotrols1() { panelContainer.Controls.Clear(); //add some controls ... } ... protected void ShowControls2() { panelContainer.Controls.Clear(); //add some controls ... } ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Optimal WaveFormat's Properties for VOIP

    I am using DirectX DirectSound's WaveFormat for capturing voice from microphone. What are the optimal properties of WaveFormat (AverageBytesPerSecond, BitsPerSample, SamplesPerSecond and etc.) for VOIP (using UDP transfer protocol). And what the optimal datagram of voice to be sent using UdpClient.Send What I meant, is that I don't want to use any codecs for the voice. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Only Gaming?

    Can the XNA be used for more applications then just gaming What about Multimedia applications, integration w/ websites, etc Mardo From the FAQ : Q: Can I create non-gaming applications (such as a Media Center/Player) with XNA Game Studio Express A: On Windows this is possible, but the initial release on Xbox 360 is tuned to writing games. This is an area we are actively looking to the community for feedback on the types of applications they want to write for their Xbox 360. ...Show All

  • Windows Forms Auto generated Add.. methods and expression columns

    Hi When I add a column to a typed DataSet's table in the DataSet designer and this column has an expression as set, as well as it's marked as ReadOnly the generated method to add a row to the table (Add....Row) includes the parameter for the expression column. I would like the method to be generated without a parameter for the expression column. Is there any property I must set for the expression column in the DataSet designer or is there some other solution Moving from .NET Framework Data Access and Storage to Windows Forms Data Controls and Databinding . ...Show All

  • Smart Device Development Datagrid with Chekbox and SQL CE

    Hi, I have this problem: I have to do an application with a datagrid that contains data from a products table (created in my pda). This table contains a column added by me where i want to put a checkbox. When the user checks some of this checkboxs i need that these records would be saved in that table with (0-UnCheked, 0-Checked). Anyone could help me on this with a solution At this moment i can bind that table to a datagrid in my form, but i can't add chekboxs to a column of this datagrid!! I'm using VS 2005 with SQL CE 2.0. and Windows Mobile 5.0 emulator. Thanks. So if i upgrade to NETCF V2 SP1, i will gat my problem solved. Ok thanks. Do you have or do you know where i ca ...Show All

  • SQL Server The multi-part identifier could not be bound.

    hi, i don't know what the prob with my code: create table #tmpAllocation ( [ResourceID] int , [Resource] varchar ( 50 ), [WorkTeamID] int , [WorkTeam] varchar ( 100 ), [LineModuleId] int , [AccountId] varchar ( 100 ), [VpIdentifier] int , [DivisionId] varchar ( 100 ), [GroupId] int , [Account/Version] varchar ( 100 ), [version_id] int , [1] numeric ( 9 , 5 ), [2] numeric ( 9 , 5 ), [3] numeric ( 9 , 5 ), [4] numeric ( 9 , 5 ), [5] numeric ( 9 , 5 ), numeric ( 9 , 5 ), [7] numeric ( 9 , 5 ), numeric ( 9 , 5 ), [9] numeric ( 9 , 5 ), [10] numeric ( 9 , 5 ), [11] numeric ( 9 , 5 ), [12] numeric ( 9 , 5 ), [13] numeric ( 9 , 5 ), [14] numeric ( 9 , 5 ), [1 ...Show All

  • .NET Development Private field is actully modified from outside of the class.

    Hi, I was trying to get to know how to nest other server elements inside a custom control, in the source view of an .aspx page that I encountered this paradox. To create such web control, one must create a class derived form Control class and add ParseChildren(true,"<Property Name>") attribute to class, so that sub-elements will be added to so called property name. according to MSDN Example (found in ParseChildrenAttribute ducument), the property which is assigned to is readonly, but the private field that is returned in the "get" section of the property has actully changed! How is it possible using System; using System.Collections; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Securit ...Show All

  • Visual Studio Team System Unit tests problem

    Hello. We have one serious problem with our Team Foundation Server System. We have autobuild setuped on Team Server - unit tests are builded and runned there every morning. These unit tests are completely errors free and working - on local machines (where they was developed) they are builded and runned successfully. BUT at the Team Server they is always one exception thrown during unit test runing - "System.Runtime.InteropServices.SEHException: External component has thrown an exception". This exception is always thrown at lines like this: "ComponentHost host(__uuidof(ComHost));". All creating COM components are registered at the build machine. The user under wich build process is running has all needed permission ...Show All

  • Visual Basic Multiple Forms

    Can I have more than one form in a project What I'd like to do is have my main form, form1 call or activate form2, it opens its own window then when done, close and go back to form1. Thanks Thank you, that is exactly what I needed. RobertMC ...Show All

©2008 Software Development Network