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

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

SatishThumar

Member List

Vipul123
ititrx
marthew
masom1773
alien-
Synced
GABLOOM
Dr.Virusi
Deanrm
IS dude
DanO84
Alan Stevens
kmcclung
Gary200
TheSniipe
Brad Joss
Andre Bretas
ParrotHead
jdonahue1971
SQLBOY36
Only Title

SatishThumar's Q&A profile

  • Visual Studio Express Editions trouble getting started programming in c.

    I've resently instaled the Microsoft Visual Basic 2005 Express Edition, and i can not open the program the way i used to, I need an "empty project" for c. programming, but all i manage to open is an application with writingssuch as : Module Module1 Sub Main() End Sub End Module I dont even know what that means, I suspect that I didn't install, or down loaded the program the way I should have... please help! olla wrote: I've resently instaled the Microsoft Visual Basic 2005 Express Edition, and i can not open the program the way i used to, I need an "empty project" for c. programming... After I read this I was surprised, that you want learn C++ programming with V ...Show All

  • Visual C# Process.start with multiple command line arguments..

    I am trying to call an exe file with multiple command line arguments in C# and capture the output but unsuccessful. Here is what I am doing: Process process = new Process (); process.StartInfo.UseShellExecute = false ; process.StartInfo.RedirectStandardOutput = true ; process.StartInfo.RedirectStandardError = true ; process.StartInfo.CreateNoWindow = true ; process.StartInfo.FileName = @"D:\bin\test.exe" ; process.StartInfo.Arguments = "-a ipaddress -L C:\\test.txt" ; process.Start(); string s = process.StandardOutput.ReadToEnd(); MessageBox .Show(s); It works fine when run the exe on command line with those arguments. Am I doing anything wrong here thanks a lot for hel ...Show All

  • Visual Studio 2008 (Pre-release) Getting errors when creating xaml control

    I am trying to create a SecureStringTextBox object in 3.0 using xaml. I created a control that looks like this: xaml code <TextBox x:Class="PP.Controls.SecureStringTextBox" xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml "> </TextBox> code behind namespace PP.Controls { public partial class SecureStringTextBox : System.Windows.Controls.TextBox { public SecureStringTextBox() { InitializeComponent(); } } } The above code compiles just fine. Now I create my test app which looks like this: <Window x:Class="TestControl.Window1" xmlns:g="clr-namespace:PP.Controls;assembly=PP.Controls" xmlns=" http:/ ...Show All

  • .NET Development VB.net- Applications run slow periodically

    Hi, I am not an expert in vb so I am trying to explani the problem the best I can. I am using Visual Studio.net - Microsoft Development Environment 2002 version 7.0.9466 and Microsoft Framework 1.0 (version 1.0.3705). On top of it I installed the framework 1.1 with SP1. I create few VB applications using this setup and there are few issues I need some help for. 1) Whenever I create a new Vb application , I add to the "references" section of the project - the dll files - system.dll, system.data.dll, system.windows.forms.dll, system.xml.dll - but when I check the properties of these dll - they are the files from framework 1.0 folder. Is this normal or should it be reading the updated version of framework. How to set ...Show All

  • Windows Live Developer Forums Drive To / Drive From in Pushpin Menu

    I was wondering if anyone knows the javascript code to add a link for "Drive To" and "Drive From" into a pushpin menu Thanks in advance! Caleb T - MSFT wrote: In the description field for the pushpin, add your HTML to show a Drive To and Drive From link. Each link fires an event. That event gets the LatLong of the pushpin and stores it as a global variable. Then, when the user requests a route, the two globals (start and end) are passed to GetRoute(). I certainly thought about this but assumed there was a more generic way to add the actions to all pins. I have spotted the: <div class="ero-actions"> <ul></ul> </div> in the default pushpin menu / ball ...Show All

  • SQL Server Can I Use Non-empty Behavior for These Calculated Members?

    I still find myself extremely confused about using the non-empty behavior for calculated members. We have a series of calculated members that we refer to as "Velocity", such as "Velocity Sales". The basic definition for these velocity measures is to get the total from the previous 63 business days and then annualize that total (i.e. multiply by 4), with the 63rd business day belonging to the previous month. For example, Velocity Sales for any day in September 2006 would be totaling the sales $ for the business days in the range of 06/05/2006 through 08/31/2006, and then multiplying it by 4. Perhaps not surprisingly, these measures result in extremely poor performance. Since I'm confused on the non-empty behavior, this p ...Show All

  • SQL Server Increase Aggregation Percentage

    Is there a way to force the design aggregation in BIDS to 100% All of my dimensions have attribute relations defined (as indicated in the designer) yet I can get only around 35% aggregations defined. My main issue is an Excel pivot table that the user wants to create that has 3 row dimensions. When the Excel pivot table is first built, access is fast, but when the user drills down to bottom level of each dimension, the query takes a long time. We have a Hyperion Essbase/Analyzer report that shows the same information rather quickly. The difference I can see is that Analyzer has a list bottom function and the cube space in Essbase is very large (I think Essbase builds an aggregation for everything thus the faster access speed). As ...Show All

  • Visual C++ Command handlers differences (ON_COMMNAD_EX use )

    Hi all , I created a dialog based application in MFC and added one menu item (ID_MENUTEST_MENU1 ) after hitting on that menu only ON_UPDATE_COMMAND_UI andON_COMMAND gets called . i want to know the use of ON_COMMAND_EX and when it gets called CODE: ON_COMMAND(ID_MENUTEST_MENU1 ,OnCommand1) ON_COMMAND_EX(ID_MENUTEST_MENU1 ,OnCommandEx1) ON_UPDATE_COMMAND_UI(ID_MENUTEST_MENU1 ,OnCommandUI1) void CDataExchangeDlg::OnCommand1() { AfxMessageBox("Oncommand1"); } BOOL CDataExchangeDlg::OnCommandEx1(UINT nID) { AfxMessageBox("OnCommandEx1"); return true; } void CDataExchangeDlg::OnCommandUI1(CCmdUI* pCmdUI) { AfxMessageBox("OnCommandUI1"); } Thanks to Martin Richter and ...Show All

  • Visual Studio Team System Data Driven Unit Test question

    There has to be an easy way to do this but for some reason I cannot find it. We have 6 different responses that we are expecting back for the data we send. We want to be able to adjust the distribution between the responses so I have seperated the data into 6 different tables and created 6 methods. The problem is that if I use the Data Driven aproach in the samples it runs through all the data in the table every time the test runs. I only want one set of data each time but still want to go through each row before repeating. Is there a way to setup the DataSource/DataAccessMethod to grab only 1 new row each time the test is ran instead of grabbing all the rows Eventually we are going to be using a 32 client load for an 8 hour perio ...Show All

  • SQL Server SQL Find DUplicates query

    Hi all, i can find duplicate emails in my table like this select ExistingEmail, count(ExistingEmail) as cnt from YM_Email_Updates group by ExistingEmail having(Count(ExistingEmail)>2) but that groups and returns the email address and the NO of duplicates which is good. Is there a way to modify this query to actually return the ENTIRE row (not just the one column) would it involve including this query as a subquery. Ideally id like to return all the columns of all rows with duplicates but this query only returns the email address. I have tried adding the other cols and including them in the grouping but it does not work . TIA, mcm Hi, Strange, but I expect that this one will work: select * from YM_Email_Updates g ...Show All

  • SQL Server Parsing T-SQL is not validating table schemas

    I am curious why my stored procedures are parsing properly when you do not reference a table with its schema. The stored procs then fail when you run them. It seems that the parser does not validate that a tables schema is missing. This is an example stored procedure against the Person.Address table in the Adventureworks database. It will execute fine if I change the FROM clause to Person.Address. CREATE PROCEDURE [dbo].[Address_Load]    @AddressID [int] AS BEGIN  SET NOCOUNT ON;  DECLARE @intError int  BEGIN TRY   SELECT    A.[AddressID]     , A.[AddressLine1]     , A.[AddressLine2]     , A.[City]      ...Show All

  • Smart Device Development System.ComponentModel.Description("") user control

    Hi, i have a problem when i try to set the description of my property in the user control. In a desktop applications there's System.ComponentModel.Description("") that allow you to explain the description of the property. In compact framework is possible to use this description I use vs 2005, but i don't found it. thanks See this . ...Show All

  • Visual Studio http://www.vsipdev.com is not responding

    Hi, I need to get a PLK from vsipdev.com but this site doesn't respond, Any ideas Oreng. Hi Oreng, Try http://www.vsipmembers.com/ . I believe that all the VSIPDev.com functionality has moved over to that page. Thanks, Aaron Marten (Microsoft) ...Show All

  • Audio and Video Development Getting a VC-1 file ready for advanced content authoring

    Hi all, I just started to author advanced hddvd content but i vailed in getting a valid video content to test my first project. is it possible to multiplex a VC-1 file with the Sonic authoring system for standard HD content in a way that i can use it for my first advanced content project I tried to import the vc-1 file into sonic, generated a simple autostart HDDVD, multiplexed it and used the HVDVD_TS folder for my advanced content project but it didn't work. The Nero Showtime softwareplayer diplayed the menu correctly but didn't play the video. I also tried to burn a dvd rom and inserted it into my Thosiba HD_DVD player but it just displayed the disc error 0x4095C501. Can anybody help me thx mikeret ...Show All

  • Smart Device Development Combo selection and Pocket PC debug

    Hello, I want to know the method through which i can find that which combo box is selected amongs the several combo boxes in the dialgoue ................................ one more thing how i debug the code in pocket PC it always prompt for Debug Assertion Failed Abort, Retry, Ignore. when i press ingore several times it then work but when i draw any thing in the gallery. it prompt again . is there any special setting for Pocket PC Debug (using C++.net 2005). Is there any method that handle the System generate Message Box. (i.e. Message will be send shortly after we launch default sms and send message when we press ok i have to do some other work how i listen this system generate OK etc.. ) Thanks -Salman ...Show All

©2008 Software Development Network