Escimo's Q&A profile
Audio and Video Development Video Size
As I see current version of the ihd doesn't support vido resizing. I.E. I can not place menu items at the left side of the screen and video at the right side of the screen. Is it planned to be implemented in future Polina wrote: Are they published http://www.dvdfllc.co.jp/hd_dvd/hd_what.html#howtos ...Show All
Visual Studio VS2005 SP1 Error 1935: error during installation of assembly 'Microsoft.VC80.ATL...' on Vista Ultimate x86
What could be the reason Rgds Adam I don't have a Vista 64-bit sandbox to try this one but take a look at the following KB article: http://support.microsoft.com/kb/814340/en-us ...Show All
Visual Studio Express Editions Error LNK2028, and LNK2019
I am calling a function that I wrote from my main program it looks something like this. bool GetDriverFilesList(vector <DriverEntry>& DriverList); Int Main() { bool sucess_fail; vector <DriverEntry> DriverList; ... sucess_fail = getDriverFilesList(DriverList); ... } When I run the program I get the two linking errors that look like this. Error 4 error LNK2028: unresolved token (0A0004E2) "bool __cdecl GetDriverFilesList(class std::vector<class DriverEntry,class std::allocator<class DriverEntry> > &)" ( GetDriverFilesList@@$$FYA_NAAV $vector@VDriverEntry@@V $allocator@VDriverEntry@@@std@@@std@@@Z ) referenced in function "int __cdecl main(void)" ( main@@$$ ...Show All
Visual Studio Tools for Office Error: InfoPath Form Template
Hello After creating the InfoPathFormTemplate Project i cannot do any operation in my Visual Studio 2005, for any operation it show me the error message "Visual studio has encountered an unexpected error" Can you suggest me any solution to solve this problem Regards Hi Eric, Just off the top of my head, have you tried repairing Visual Studio Would you list what you have installed, related to VS In particular versions of Visual Studio, any SDKs, Service Packs, etc. Thanks Roger ...Show All
Smart Device Development Errors in Standard Header files while compiling the OpenH323 pwlib v1_11_0 in Visual Studio 2005 development environment
Hi all, I am trying to compile the open source h323 stacks in Visual Studio 2005 environment. But i am gettting the following errors in the standard header files. Can someone please help me in overcoming this problem 1>------ Build started: Project: pwlibce, Configuration: Release STANDARDSDK_500 (x86) ------ 1>Compiling... 1>assert.cxx 1>E:\Program Files\Windows CE Tools\wce500\STANDARDSDK_500\include\x86\winver.h(157) : error C2146: syntax error : missing ';' before identifier 'DWORD' 1>E:\Program Files\Windows CE Tools\wce500\STANDARDSDK_500\include\x86\winver.h(157) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 1>E:\Program Files\Windows CE Tools\wc ...Show All
SQL Server Dbmail sending mails but recognised as spam by outlook07 and spamassasin.
Just started playing with the server 05 demo I am trying out the dbmail tool/ sp. Problem is that mails are being recognised as spam! Emails are being sent as text. Both Outlook 07 and spamassasin recognise the mail as spam :S.... I sent same info via outlok and all is ok. Difference is the header. Has anybody come across this Know of a solution Thanks DBMail does not require Outlook or any of the client pieces that SQL Mail required. What SMTP server are you using Where are you sending the mail Paul A. Mestemaker II Program Manager Microsoft SQL Server Manageability http://blogs.msdn.com/sqlrem/ ...Show All
SQL Server dbreindex - how does it work
i am trying to tune my db performance. i guessing its to do with indexing. i tried indexing through the db maintenance plan but that fails for some reason. So i am trying to re-index table by table. I ran the DBCC SHOWCONTIG command and found some scan density less than 50% I then took the table names and executed the command -> DBCC DBREINDEX(TableName,' ') i checked with the DBCC SHOWCONTIG but the values are still the same. nothing happened, Right should i have done something else. ...Show All
SQL Server Data Conversion Error on Excel Destination
I am inserting rows using OLEDBDestination and want to redirect all error rows to EXCEL Destination. I have used Data Conversion Transformation to Convert all strings to Unicode string fields before sending it to Excel Destination. But its gives the following error. [Data Conversion [16]] Error: Data conversion failed while converting column 'A' (53) to column "Copy of A" (95). The conversion returned status value 8 and status text "DBSTATUS_UNAVAILABLE". [Data Conversion [16]] Error: The "output column "Copy of A" (95)" failed because error code 0xC020908E occurred, and the error row disposition on "output column "Copy of A" (95)" specifies failure on error. An error ...Show All
Visual Studio Report Formula Issue
Ok I have a formula that populates a String Variable in my report Group Footer. The main formula is like this. If {cParty} = "S" and {cType}="I" and {fPrimary} = -1 then Seller := TrimRight({.FirstName})+' '+TrimRight({.middle})+' '+TrimRight({LastName}); My table looks like this, and my criteria is that IFolder =123456 IFolder cParty cType fPrimary FirstName Middle LastName 123456 S I -1 John A Roberts 123456 S I -1 Susan G Roberts My StringValue for Seller will only display John A Robert, even though Susan G Roberts is also valid. How do I get it to dispaly the correct values if muliple rows are true statements. ...Show All
SQL Server hosting SSIS packages where?
After i create a SSIS package, where can i put it or store it in the SQL SERVER 2005 so that i can execute it later on Grant Swan wrote: Hi, The option to do this is available once you have built you're project and you have done this whilst the CreateDeploymentUtility is True. All you then have to do is go to the deployment folder (usually in the bin directory) and run the .SSISDeploymentManifest file. This will give you all deployment options including where to store your package. This link gves some info on how to execute the packages programmatically: http://msdn2.microsoft.com/en-us/library/ms403355.aspx Hope this is of use to you. Cheers, Grant I don't understand what you just said.. ...Show All
Visual Studio Express Editions Textbox Change Enter to Tab
In Textbox1_KeyDown event I tried If e.KeyCode = Keys.Enter Then e.KeyCode = Keys.Tab But e.KeyCode is read only. How do I change the enter key to tab key On pressing the enter key in one textbox I want to tab to the next textbox in the tab order. Thanks, Private Sub TextBox1_2_3_4_KeyDown( ByVal sender As Object , _ ByVal e As System.Windows.Forms.KeyEventArgs) _ Handles TextBox1.KeyDown, TextBox2.KeyDown, TextBox3.KeyDown _ , TextBox4.KeyDown If e.KeyCode = Keys.Enter Then SendKeys.Send( "{TAB}" ) End If End Sub ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Native Direct3D or MDX or XNA?
I'm in the process of choosing 3D dev platform for a non-game desktop application. I've decided to use Direct3D (not OpenGL) because the application will be developed with C# 2005. I prefer to use C# instead of C++ Direct3D if possible. But I'm very confused of which is the right direction. Basically, the application renders 3D objects in a window and allows manipulation of those objects; it should be able to show different views of a 3D scene on areas of a printed page. Any suggestion is appreciated. Thanks. Great! It seems C++/CLI is the right way to go. I'll start to learn Direct3D rather than spending time on XNA. Please allow me to ask another question. Now that D ...Show All
Windows Forms Can't get help; ClickOnce deployment doesn't work
Hi I am a newbie to VB.Net (started about 3 weeks ago), and I have 2 main problems with the usage of the IDE: - I don't have any help file, obviously (big company, automatic install and so on, so no CD and the like), 'cause it tells me all the time that it doesn't find anything when I hit F1. So I set it so that the on-line help should be looked up first... Still no help at all. I have to go to the MS site for looking up every bit of info I need ! Why does the setting of "on-line first" not work Known problem - I just don't get the whole deployment stuff at all a) why is it using so absolutely incredibly complicated pathnames like "C:\Documents and Settings\myUser\Local Settings\Apps\2.0\CJ7ZZG3N.XN6\0NHXA5R4.DN ...Show All
SQL Server How to toggle visibility of a group of columns in RS
Hi, I need to toggle visibility of group of columns in reporting services report, just like we can do for rows. I know that individual fields can be hidden, but i need to hide/show complete column. Thanks in anticipation. Saeed asalamo alaykom saeed ahmad you can do that by using models in reporting services it means that when you using a model you can let the user select within the report builder to use columns dynamicly and you can do this in a defferent way by using sophesticated tsql using if and then that execute query with a specific columns by passing some parameter for the stored proc http://www.123writers.com ...Show All
Software Development for Windows Vista Print Driver Rendering Test (pgremlin) test failing
Hi All, PGremlin test for our XPS driver is getting stuck with below two lines on command shell. ******************************************************** Win32 Exception: StartPage() failed. Error code 1223 ******************************************************** Anyone having any pointers to this problem Just to add some observations, 1) "Print Driver Rendering Test (pgremlin2)" is passing. 2) It`s failing with above exception in both the cases.. a) When auto running by Vista RC DTM b) Running manually from command shell Thanks, Chetan ...Show All
