Hybrid Bray der Burrito's Q&A profile
Smart Device Development Imagebuttons
Hi I am searching for some Imagebuttons designed for Compact Framework 2.0. But I cant find any company which have developed such buttons. Any suggestions I also have tried to build my own Imagebuttons based on several articles in different forums. The problem with theese buttons is that I cant get the desired text to show upon the image. Everything else is working just fine. Anyone who knows something about this Hi, there are some really nice 3rd party controls at http://www.pocketpccontrols.com/ I have no connections to the s/ware, but have bought the button controls, and was very happy with the look of the resulting application HTH Pete ...Show All
Smart Device Development Converting PocketPC 2003 Project ----- Windows Mobile 5.0 Pocket PC Project
Dear ppl, I have been working on a Pocket PC application. Its been 4 months now. There are various forms in the project. The project is a PocketPC 2003 (.NET CF2.0) Device Application Project. Now the Is there a way to convert a PocketPC 2003 (.NET CF2.0) Device Application Project to Windows Mobile 5.0 Pocket PC (.NET CF2.0) Project. Regards Nabeel ...Show All
SQL Server Calculated Members and Aggregation
Hi, I am still in AS 2000 and would like to know if it is possible to have calculations performed at lowest granular level of the cube before aggregation. Perhaps I am missing a basic understanding on this but what I am hoping to achieve is to hold parameters at the lowest level in a separate measure ‘Param’ (separate column in the Fact table) and then reference to those parameters in a calculated member with the resulting values held in the default measure of the cube before being rolled up in the aggregations to higher levels. Currently in the higher levels input parameters are being aggregated before determination of the calculated member value. Will much appreciate your suggestions on whether it is possible ...Show All
Smart Device Development PDA reboot to re-run application?!!
Hi guys, I've encountered a little problem. I've developed a program in C# to be run on a PDA. I got it successfully setup and installed on the PDA, but when i run the program it runs once. At that point if i close the program it doesn't run again until i do a reboot (soft reset) of the PDA. Any ideas on how i can get around this problem Thank you Your application probably never really exists, probably because you have background threads running. Make sure all threads are terminated before exiting the application. ...Show All
Windows Forms Cannot Change to Allow Null
The VS2005 dataset designer will not allow me to set int datatype fields to allow null. I get the following message: For columns not defined as System.String, the only valid value is (Throw exception). cannot change to allow null. I have tried setting the default value to zero with no success. I know I can write a function to call for every int field but that is ALLOT of fields. There has to be a workaround I am missing I cannot just update or I get a SQL Syntax error because I SQL ends up looking like : "UPDATE pipe SET PIPE_2_AREA_13 = 471.24, PIPE_2_DIAM_13 = 45, PIPE_2_LENGTH_13 = 32, PIPE_2_NUM_13 = 15, PIPE_2_AREA_14 = , PIPE_2_DIAM_14 = , PIPE_2_LENGTH_14 = , PIPE_2_NUM_14 = , PIPE_2_AREA_15 = , PIPE_2_DIAM_15 = ,& ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Problems with SurfaceFormat.Bgra1010102 on the XBOX360
graphics . PreferredBackBufferFormat = SurfaceFormat . Bgra1010102; If I have the above line right after I create my GraphicsDeviceManager, anything I render to the screen comes out as total garbage in terms of color values *except* while one of the 360's panels (or whatever they're called - the ones the big X button brings up) is rendering. In that case everything renders fine. Simple example, I render out a farily heavily tessellated quad who's verts range from -32 to +32 in world space (in both X and Z directions, Y = 0). My vertex shader passes abs( worldPos.xz ) into the pixel shader as a texture coordinate and the pixel shader returns float4( frac( texCoord ), 0, 1 ) . I expect this to give me a r ...Show All
SQL Server WHY FLOW DOESN'T GO TO CATCH BLOCK
Hi, I have a problem with using TRY CATCH. Even though an error is generated in TRY clause ( selecting from table that doesnt exists - nothing) , an error is not logged into database. If I add a SELECT 1/0 in first line ( just befoer select * from mama ) flow jumps to CATCH and appropriate entry is written to database with help of LogError proc. Here is that stored procedure with error: CREATE PROC sp_getQuestion @QuestionId INT AS BEGIN BEGIN TRY SELECT * FROM nothing ; SELECT QuestionId , QuestionTitle , DateCreated , DateLastMod , TopicGroupId , UserId , Body , MinPointsForAnswer , PointsForAnswer , ExpirationDate , Status FROM Questions WHERE ...Show All
Visual C# Spell Checker using word.
I came across this code on the net and was wondering if anyone could help me tweak this to search more than just one textbox. Thanks protected void Button1_Click( object sender, EventArgs e) { Word. Application app = new Word. Application (); app.Visible = false ; object template = Missing .Value; object newTemplate = Missing .Value; object documentType = Missing .Value; object visible = true ; object optional = Missing .Value; object saveChanges = false ; object originalFormat = Missing .Value; object routeDocument = Missing .Value; Word. _Document doc1 = app.Documents.Add( ref template, ref newTemplate, ref documentType, ref visible); doc1.Words.Firs ...Show All
Visual Studio Remote Debugging
I am trying to do remote debugging on a C# application that I have. I have my host computer that has Visual studio 2005 and i do a network share of the Remote Debugging Monitor executable to run that on the remote machine. I get everything to the point where I can run and debug the executable on the remote machine from my host machine. Everything appears to run fine except for when I try to connect to a socket in the application it throws an exception. When i print out the message of the exception i get this: Request for the permission of type 'System.Net.SocketPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed. Anyone know how to get this to work or any information to help Ive been working on it ...Show All
Smart Device Development Smart Device Phone Conversation recording...
I'm wondering if it's possible on Windows mobile to record a phone conversation to two files: one exclusively recording each party. It seems this would entail isolating the mic stream from the line-in stream. Is it possible to separate these streams Can Windows mobile 5 support two wave recorders simultaneously Much thanks. Venkat No, it's not generally possible - not to one file, not to two files. You can not record from the phone line or play to the phone line due to hardware limitations (or rather hardware design): http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=704452&SiteID=1 At best you can record outgoing voice (and potentially incoming – if microphone would pick ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How do i get into the Creators Club
hi. sorry if this has been answered, i just can't find anything on the forums. I'm browsing xbox live market place on my 360 and i just can't find the creators club. where is it and how do i get in it may help to know... i only have a one month xbox live gold account, and i'm in the UK. thanks It's a bit hidden amongst the documentation. Here's where I found it: a) From XNA Game Studio Express, select Help → Contents on the main menu b) In Microsoft Document Explorer (the Help program's official name), navigate to: XNA Game Studio Express → Getting Started with XNA Game Studio Express → Connecting Your Xbox 360 with Game Studio Express In Step 2 of its contents you'll find the skinny on how to j ...Show All
Visual C# Empty an Array
Hello, I have an array that gets modified everytime a button is pressed. What I need is to empty out the array at the beginning of the button pressed event. arrayList[ ] arrayList1 = new arrayList[cntMax]; //this is how it is defined outside of the buttonpressed fuction arrayList1[ ] = null; //this is the code i have inside the beginning of the button pressed function arrayIndex = 0; I get an error with the second statement. why don't you just create a new instance of the array arrayList1 = new arrayList1[ length ]; also I could be confused but are you using the standard .NET ArrayList() collection or is this your own arrayList[] collection ...Show All
Internet Explorer Development Errors in MSDN Library's Web Development section
The MSDN Library’s Web Development section is an important reference source for many web developers. Its accuracy is therefore important. But I can’t seem to find anywhere to report errors in the documentation. Does anyone know who to talk to if we need to get errors fixed In case anyone is reading this message who can fix such errors, the example given for the HTML Q element [1] is erroneous: <P>He said, <Q>"Hi there!"</Q> If you consult the referenced HTML 4.0 specification, you'll discover that this example is seriously mistaken [2]. The specification states explicitly: ‘Visual user agents must ensure that the content of the Q element is rendered with delimiting quotation marks. Authors should not pu ...Show All
Smart Device Development unloading of application
Hi, I'm writing an application for compact framework Pocket PC. My application unloads frequently when it finds low memory. i want to run my application always in the memory. How do i make ay application always running in the memory. Please give me good solution. Thanks a lot in advance. Srinivas I'm not sure I understand the question. What do you mean by "application unloads when it finds low memory" Does you application run out of memory and throws OutOfMemoryException Thanks, Roman ...Show All
SQL Server When to DROP the temporary table?
Hello, In a stored procedure on SQL Server 7, I create a temptable, populate it. create a second temp table, and no longer need the first one, and DROP the 1st temptable. the second temptable is joined with another table and the results are RETURNed. Do I DROP the second temptable just before the RETURN, after it Does it matter I'm curious, and trying to learn more about using stored procedures. Thanks Why do you use temp tables do you need to share data with some other code else you can use in-memory tables that are managed by the engine something like that: declare @tmptable table(s_rownum int, s_cmdid int) ; with pal as ( select * from ( select row_number() over (order ...Show All
