Mark Starr's Q&A profile
Smart Device Development MSB3247
What a pain in the arse! I've obviously not properly de-installed VS2005 beta 2 properly before I installed the vs2005 release version, so now the code I've been working on doesn't work. Hurrah for nice easy install/de-install methods! When I build my app the output is this... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Consider app.config remapping of assembly "System.Data, Culture=neutral, PublicKeyToken=969db8053d3322ac, Retargetable=Yes" from Version "1.0.5000.0" [] to Version "2.0.0.0" [C:\Program Files\Microsoft Visual Studio 8\SmartDevices\SDK\CompactFramework\2.0\v2.0\WindowsCE\System.Data.dll] to solve conflict and get rid of wa ...Show All
Windows Forms How can I add component files to bootstrapper object?
Hi all! I use MSBuild and Bootstrapper class for creation setup.exe file. GenerateBootstrapper bt = new GenerateBootstrapper (); bt.ApplicationFile = @"My.application" ; bt.ApplicationName = @"c:\1.0.0.1\Myapp.exe" ; bt.ApplicationUrl = @"\\Ws-xp\Publish\Client\" ; bt.OutputPath = @"e:\temp\publish\client\" ; bt.Execute(); and my application successfully runned if framework2.0. already installed on this pc. When I want to add prerequisite information that I use BootstrapperComponentFiles and something else... Please help me, what I must do for adding infor ...Show All
SQL Server convert all caps names to proper names
Is there a way in the report designer to format a field that contains names to display the name as a proper name rather than in all caps as stored in the db Thanks. By proper name do you mean a name with just the first letter capitalized You could write an expression for it. It would look something like this: =iif(Fields!yourfield.Value.ToString.ToUpper = Fields!yourfield.Value.ToString, Fields!yourfield.Value.ToString.Chars(0).ToString & Fields!yourfield.Value.ToString.SubString(1, Fields!yourfield.Value.ToString.Length, Fields!yourfield.Value) The expression assumes that the field will never ...Show All
SQL Server Report Viewer/Explorer-WebPart missing under SharePoint v3+SQL Server 2005
Hello all, I'm new with SP v3 and the Reporting Services of SQL Server 2005. I did a prototyp report and show it with "SQL Reporting Services Report"-WebPart, but I can't find the WebParts Report Viewer and Explorer in the WebPart Gallery. Please, could somebody give me a clue where the problem could be, or how I could isolate the problem area. Cheers Marc Salut Marc, If you seach the keyword "web parts" in the help module you will find how to add the SSRS web parts ... Try this dos command ------------------------------------------------------------------------------------- ...Show All
Visual Basic ConfigurationErrorExeption
Hay, I get a error and i don't know where to find or search to resolve this. This is the code in the Settings.Designer.vb Public ReadOnly Property Stamboom_CreatorConnectionstring() As String Get Return CType ( Me ( "Stamboom_CreatorConnectionstring" ), String ) End Get The Error message is :(Configuration system failed in to initialize). someone know an solution I would try to fix this by pressing the Synchronize button in the settings designer. If that doesn't work, I would try the suggestions I had in this thread: http ...Show All
.NET Development SqlClient.SqlException
Hi, All. I am not sure my question belongs to here. I tried to use DAAB(Data Access Application Block) in my project, and got an unhandled system error on system.data.dll. The code broke on da.fill(ds); line as listed below. I have tested the connection string and the stored proc, and they are all working. What else should I do Thanks! public static DataSet ExecuteDataset(SqlConnection connection, CommandType commandType, string commandText, params SqlParameter[] commandParameters) { //create a command and prepare it for execution SqlCommand cmd = new SqlCommand(); PrepareCommand(cmd, connection, (SqlTransa ...Show All
SQL Server 3 Management Studio Bugs
Good morning, If this is the wrong place to post this I apologize, but I haven't been able to find any forums dedicated specifically to SQL Server 2005. I've posted 3 bugs to the MSDN Feedback Center, which have yet to be "validated". As I understand it, nobody from MS even looks at the issue unless another user has seconded the nomination, so to speak. And the only way that happens is if someone happens to search for the same issue. At this point I realize it's probably too close to release date and none of these will be fixed until later, but I would still like some confirmation before I waste any more time reporting issues. If you ha ...Show All
Visual Studio Express Editions Printing Basics
It would appear that printing is more complex than writing the actual program.... I've been reading alot on the web about priting in VB. Most these examples are print a simple text string or a single RichTExt box. Most applications have usually have more than a simple string or a single RichText box. Two questions: 1. Can someone direct me to SIMPLE examples to get me started on printing real world data Something that can step me through all this having to calculate each and every pixel location just to print stuff in a formatted manner Examples that show how to take something simple like an "address card" ...Show All
.NET Development Xml problem in finding a particular element when reading
Hi guys. What it the best way to do this I Have an xml file in this format <Countries> <Country> <ID>1</ID> <Name>Italy</Name> </Country> <Country> <ID>2</ID> <Name>France</Name> </Country> <Country> <ID>3</ID> <Name>England</Name> </Country> </Countries> Now i need a way to find if a particular Name exists in the xml and return true public Func ...Show All
SQL Server How to give premission to a Active directory group?
Guys, Only admin group users are able to view the reports from my reporting services server and as we know its not good to add lot of people in that group. Is there a way I can create a separate group with limited previllage and allow them to view these reports My co. also have a active directory group for the people who would like to use these reports. Is there a way I can specify that group name somwhere in the config file. Do we something similar to the one we have in webservice config file I see the authentication section, but no where I see the authorization section. <authen ...Show All
Visual Studio Express Editions Can't register for activation key for Visual Web Developer 2005 Express Edition Beta
When I try to register from the Activate Product... option in the help menu, I fill in the web form at https://profile.microsoft.com/ProductActivation/ProductActivation.aspx , but when I click on the Continue button, I always get the error message shown below. I have been getting this same message for a number of weeks now. Anyone got any ideas Rab Visual Web Developer 2005 Express Edition Beta 2 This registration thing is so lame, VSExpress2005/VWD is a free product why have this registration thing I have just tried to register, I have my 14 digit key, copy/pasted exactly from the web page: Your registrat ...Show All
.NET Development Concurrency violation when updating twice
I have a parent row that I create, which will have a number of child rows related to it. There is a status field in the parent row that I give a value of "UnderConstruction" (which is an enum with a value of zero) so that, while I'm creating the child rows, the parent row will not be processed by another method that looks for new rows to process. After populating the rest of the parent row, I do a .Update on its SQLDataAdapter, which will do the insert and return me the PK, which I need so I can relate the child rows to the parent row. Then I create the child rows (manually from code), assigning the FK value as fetched during the pa ...Show All
SQL Server Converting a parent-child table into a genrational table / text file
I need to convert a parent - child table into another table or a text file containing in a generational format. eg. child / parent / grand parent / great grand parent / .... Does anyone have a stored procedure of code to do this I'm working with a dimension having 250,000 + members, writing code is fast enough for much smaller hierarchies but with a dimension this size we need something fast. Thank you Hi Rod, Not sure if this is the same problem as you posted in TSQL under "Adjacency List' - as suggested there, recursive CTE would be one approach in SQL Server 2005: >> with GenTable ...Show All
Smart Device Development CeRunAppAtTime
hello ppl, I badly need to know this.. This CeRunAppAtTime event will set a notification queque to runn an application at the set time.. But i don't know how to do this in VB.net.. I search whole msdn but it gave me only C# codes, can somebody pls help me how to access the notification queue and add or edit them.. I would be so greatfull to ya, pleeassse help me soon.. Tanx in advance.. Regards Carty.. This forum is intended to deal with issues directly related to the .NET Compact Framework. It appears that this question can better be answered by someone on one of the newsgroups for Windows Mobile or Window ...Show All
Visual C++ Visual Studio 2005 Install
Hi, We just got 2 copies of Visual Studio 2005 Professional Edition, upgrade. Previously we were using either VB.NET or C++.NET. We are experiencing install problems. I have a general quesiton. Can we upgrade to the Professional edition from Visual Studio 20003 that just had either VB.NET or C++.NET I would think so. Thanks Hoop Hi, just take a look at this upgrade information: http://msdn.microsoft.com/vstudio/howtobuy/renewal/#up_pro You may be more detailed about your problems. This would help us help you ...Show All
