ssmile73's Q&A profile
SQL Server Excel orientation/page break problems
We're using RS 2000. All our reports have header/body with 2 cm margins (the header has a background colour and text box labels at left and right hand sides) - the layout, pagebreaks etc in HTML, printing, PDF formats are fine, but when exported to Excel the right hand side of the header (and the final data column of the body if it is close to the right margin) is always split onto a separate page. The spreadsheet has the correct margin set but I can't get rid of the problem, even if the margins are increased to 2.5cm (which I don't want to do). Also, if the orientation of the report is portrait, it always defaults ...Show All
Smart Device Development Blocking deployment woes
It appears I have two problems. The first is that VS2005 appears to be trying to deploy my static library projects. Now why would it want to do that Not that it appears to find them: Some further experimentation reveals that the error " The system cannot find the path specified. " occurs for projects set to deploy to the emulator while " The configuration data for this product is corrupt. Contact your support personnel. " is reserved for projects attempting to deploy to an actual device. As it happens these are the exact same errors returned if I choose "Connect to device" from the Tools menu. ...Show All
Smart Device Development [unresolved external symbol CreateWindowExA] can't link user32.lib
Hi all. I'm usindg Visual C++ 2005 Standard and I installed the SDKs I need (Windows Mobile 2005 and 2003 for both Pocket PC and Smartphone). I'm trying to build unit tests to run on my emulator. Those tests need a window to display the results they get. So, I call CreateWindow (<=> CreateWindowEx <=> CreateWindowExA) in my WinMain method. At this point, I have linked aygshell.lib. I obtain: main.obj : error LNK2019: unresolved external symbol CreateWindowExA referenced in function WinMain If I try to link user32.lib, the output says this lib is missing. Any Idea By the way, I'm not yet really familiar with VC8 and I ...Show All
Smart Device Development Setup and Deployment project
I've just completed writting and testing my smart application (for pocket PC) and I'm now ready to deploy it. What template do I used create the setup for smart applications Thanks Hi Daniel. Thanks, that work, just created my first smart device setup. Cheers ...Show All
Windows Forms Is FotoVision an ongoing development project?
Hi rarvesen, look like you are the moderator of this forums. I love your webpage. They look very nice and informational (I like those flower pictures). Anyway, I would like to ask is FotoVision is an ongoing project Any enhancement will be provided in the future I think it will be a very good idea if there is a specific site& ...Show All
Windows Forms Binding datagrid to data returned by DataReader problem
I am having problems with binding datagrid to an arraylist. The way I am doing it is asking for much code to be written in order to achieve a simple task. Here is an example ' Getting data Dim cmd As New OleDbCommand(strSQL, conn) Dim dr As OleDbDataReader Dim arr As ArrayList cmd.CommandType = SQLType conn.Open() dr = cmd.ExecuteReader(CommandBehavior.CloseConnection) simple so far, but now I am having troubles in storing this data to an arraylist, on which datagrid is going to be bound to. The way I am doing at the moment, is creating a class that has all the field's names as properties for EACH SQL statement, but it see ...Show All
Windows Forms C# code problem
Hi !!! I have translated a VB code to C# code but i have problem as it gives me an error that i can not solve. my code is :- this.treeView1.Nodes(refEmp.Type).Nodes(refEmp.SSN); Type and SSN are read only properties that return only <b>: 'System.Windows.Forms.TreeView.Nodes' denotes a 'property' where a 'method' was expected</b> Please help what could be wrong!!!! ...Show All
Software Development for Windows Vista Error with file mapi.h
Hi I am Javier, I am making a validator certificate and i have to include the file mapi.h, but when i compile everything there are a lot of errors 307 for being strictly accurate and these errors are like missing { before *, missing ;. I cant understand where is the problem. I suppose that this file must include another file to solve these problems. If someone can help me. Thank you very much! This is a bit closer to what we need. As two people told you before, you need to post some of the actual errors in order for us to work out what it is that you've failed to set up on your machine. Wha ...Show All
.NET Development .NET client/server using SOAP/HTTP how to do so?
I am in the process of designing a .NET application that will have a client/server and a web based module. However the database will be hosted on the Internet and I don’t want to give direct access to the database for security purposes. I am thinking in some kind of HTTP/SOAP/XML connection. I have been reading about performance issues... however is the way we need to follow. Could you give me some URLs for further reading on this http://www.eggheadcafe.com/articles/20040730.asp ...Show All
SQL Server Blank page at http://localhost/reports and VS.Net Crashes on Preview
I have two questions. I am trying to work through some very simple reports to get the feel for SSRS. I am running SQL Server 2005 Developer Edition and I have VS.Net 2005 Pro installed on Windows XP SP2. I can walk through the report wizard just fine. But when I go to preview the report I get an exception in VS.Net. Faulting application devenv.exe, version 8.0.50727.42, stamp 4333e699, faulting module kernel32.dll, version 5.1.2600.2180, stamp 411096b4, debug 0, fault address 0x0001eb33. Now I know that this doesn't mean much in terms of sorting out the issue, but I thought that I would include it. My second question is that ...Show All
Visual C# Please help (saveing/opening data)
I have this form that allows a user to enter information about him/herself by entering text and checking check boxes. What I need is a way to: 1) Save all the input (text and cheked boxes) to a file 2) Have the user be able to open the file and it display all the information saved from the previous form and display that information in the right spot (text in the correct text box and the right check boxes checked) I've looked and havn't been able to find anything yet on doing that (maybe not looking in the right place). Any help or points in the right direction to doing something like this would be so appreciated as I am new to C#. Thanks! ...Show All
Visual Basic unable to convert generic types
Can somebody please explain why the following code causes two compile errors It seems to me that the code should be valid (and very useful in my app). Public Class Manager1(Of TSegment As Windows.Forms.Control) End Class Public Class Manager2 Inherits Manager1(Of Windows.Forms.TextBox) End Class Public MustInherit Class Class1 Protected _Manager As Manager1(Of Windows.Forms.Control) Public ReadOnly Property Manager() As Manager1(Of Windows.Forms.Control) Get Return Me ...Show All
SQL Server where can I find Wrapping or truncating property of values in a Textbox!
Hi All, I developed a report with some values in textboxes. I want the output not to wrap around to the next line but to be truncated if it is more that the size of the textbox. Is there any setting that i can do b/c values are going to the second line when their size is more like printing name and last name will cause last name to go to the second line Thank you in advance. I have had this problem to and have noticed the following. It will wrap on the client when testing but after I deploy it and run it on the server it works correctly. ...Show All
Visual Basic Need help using arraylist.sort on an arraylist of structures
I have a new problem. I want to have a dynamic array of a structure, and I want to sort the contents of the arraylist. If the arraylist is a simple collection of strings, .sort() works fine. But, with what I'm doing below, .sort() causes an "undefined" error to occur. Any ideas how to fix this problem Thanks. Public Structure People Public firstname As String Public lastname As String Public age As Integer End Structure Dim aryPeople As New ArrayList Dim p As People ' add code to populate a aryPeople.Add(p) aryPeople.Sort() <- error occurs here ------------- Also, is there documentation anywhere that really explains wha ...Show All
Game Technologies: DirectX, XNA, XACT, etc. What differences are they between emptyproject and emptyproject_2005?
apart from the MDX 1.1 and the MDX 2.0beta dll. is there any other differences. i ask because i see emptyproject framework uses dxmut.cs but the emptyproject_2005 uses wdxmut.cs. i'm wondering if i can use the emptyproject_2005 framework and just replace the MDX 2.0 beta dll with the MDX 1.1 dll. will the framework still work i saw somewhere that said the emptyproject was for .net 1.1 and the emptyproject_2005 was for the .net 2.0. if thats the case i'd rather use the .net 2.0 files. this is for the april 2006 sdk. nice. i hope you didn't think i was blaming you for the not so emptyprojects. ...Show All
