JoeCodester's Q&A profile
SQL Server ReportItems in Page Header
I've added a hidden field to my report so I can show the value in the page header using ReportItems. However it only works for the first page - the value is blank on subsequent pages. Does the hidden field need to appear on all pages of the report Would I need to make it a hidden field in a repeated list or table Greame One trick I learn is that instead of using the hidden field for report header. I created a parameter and then selected "Internal" to be used only with the report. You can parameter in the page header. Hammer ...Show All
.NET Development Basic XSLT issue...
I have an ASP.NET app making two very basic XSL transforms. The first of which works perfectly, and the following XML result is stored into a database. Subsequently that XML is retrieved and put through another transform to be displayed as HTML. This does not work so well, and the issue is very strange... The node names by themselves are NEVER identified by any 'select,' 'test,' or 'match' attribute. Some simplified XML code and XSL findings are below: < xml version="1.0" encoding="utf-8" > <notesCollection xmlns=" http://my.fake.namespace.com/generalNote.xsd "> <note> <title>some title</title> <body>some text</body> </note> </notesCollection> ...Show All
SQL Server 1 Flat file to 2 destination tables with different mappings :Please Help
Here is the Scenario. I have a flat file with name " Employee.txt " (Full url: C:\Employee.txt ) .The File content is like this Anil,Engineering,1997 Sunil,Sales,1981 Kumar,Inventory,1991 Rajesh,Engineering,1992 ( Note: Items are Comma Seperated ) Now, i have a SQL Server database called " EmployeeDB" which has 2 tables " TblEmp1 ", " TblEmp2". The Table is like this. TblEmp1 : Columns EmpName EmpDept EmpjoinDate TblEmp2 : Columns EName EDate Edept using integration services (SSIS) i need code(vb.net or c#) to Create a dtsx package so that i can push the flat file content to these 2 tables. And the condition is : After Executing the package Data loaded in TblEmp1 should be like this EmpName ...Show All
Windows Forms dotfuscator problem with report
i use dotfuscator and i didi the progect and all wrok well but in reports(crystal report) it's give me "unable to find the report in the manifest resource.please build project, and try again " !!!! any idea why !!! ...Show All
Visual Studio Express Editions Can't install Visual C++ 2005 Express
Everything was fine when the installation just stopped and doesn't want to continue: http://img312.imageshack.us/img312/4356/errorex7.jpg How are you installing the system. If you are using the web installer to download and install I have seen problems with the connection dropping out and stopping the install. My suggestion is to first make sure that you operating system is upto date. Then try the manual install method to install the express product. If that fails then try installing the components seperatly, ie the framework and sql express/ sql native client, then try the express ide again. ...Show All
Visual Studio Object data source in a different project
Hi, This is my first go with Crystal that comes with VS 2005, although I've used Crystal and VS 2003 previously. I'd like to use business objects as the source of my data. These business objects are in another project, which is a library of bo's. This library is referenced in my UI (Windows Forms) project. I read the tutorial starting on page 354 in this document http://www.businessobjects.com/global/pdf/dev_zone/cr_vs2005_walkthroughs.pdf That seems like it would work for me, but my objects are in a different project and so do not automatically appear under the "Available Data Sources" in the Standard Report Creation Wizard. What do I need to do to access objects in another project Any help appreciated, Mike ...Show All
Audio and Video Development Taking Screen Snapshots
Is anyone aware of a way to take screen captures of the video and save those to the player storage for later viewing application.addEventListener( "scheduled_event" , OnScheduledEvent, false ); function VideoMainCaptureCallback(i,uri) { application.FileIO.copy( "file:///filecache/myimage.cvi" , "file:///required/myimage.cvi" , true ,aplicationFileIOCallback); } function aplicationFileIOCallback() { Player.playlist.play(); } function PlayerVideoMainCapture(filename) { try { Player.video.main.capture(filename,VideoMainCaptureCallback); } catch (ex) { DebugOutput( "PlayerVideoMainCapture(" + filename + ") Exception: " + ex.message); } } function O ...Show All
Visual Studio Express Editions Accessing elements from a different window form
Hey everyone, Just downlaoded C# EE (Express Edition) the other day and ive gone through the 10 hours of Absolute Beginners videos, so i have a decent understanding of C# now and the way Visual CSharp Express Edition 2005 works. My question is this, Say i have a new Windows Form popup as a dialogue box with a single text area known as textBox1, and when someone clicks on the "Add" button it is to add the contents of the textbox onto a RichTextArea known as mainWin in the "main" class. So what im asking is, in the class button click 'contructor' i think its called (when you double click on the button in the designer view) How would i go about accessing main.mainWin (and its set to public) (ps. id LOVE to post source co ...Show All
Visual C++ any documentation for coding a compiler
I have a friend who is doing a school project: coding/implementing a comipler for C or C++ Where can he find some documentation pls Thanks. Here is the final draft of the C99 international standard. How complex is this compiler supposed to be ...Show All
Windows Forms TreeView: SelectedNode always null?!
I'm experiencing a weird problem with a System.Windows.Forms.TreeView. After the following few lines of code: TreeNode myNode = new TreeNode("foo"); treeView.Nodes.Clear(); treeView.Nodes.Add(myNode); treeView.SelectedNode = treeView.Nodes[0]; treeView.SelectedNode is null. I'm doing a whole lot of things with my treeView before that, so I don't know what messed it up. Anyway, after clearing it, adding one Node and setting SelectedNode to this one node, it's not supposed to be null, right Apart from the fact that SelectedNode is always null, everything's just fine with the treeView... I'm pretty sure it's not a thread-issue as I used Invoke to call the method containing the snippet above. I'm also on the same thread the tree was cr ...Show All
Visual Studio How to debug in your own model?
Hello everyone, I should apologize if there were some similar discussions here. I have a basic question. I used DSL tools to build a new solution, then i executed, and modeled another system based on the solution, here i want to use the "Debug" command on the menu to make the system running, just like the example "WinzardUIP", generating a new window.. I have read the document in the project, but still did not get how to start it. Do i have to build another project too and how can make the new project integrated Any suggestion or related work are welcome! Thank you very much! Di Hi, You can start the debugging process from the Visual Studio instance you are designing your DSL in. This is the one ...Show All
Software Development for Windows Vista Certified for Vista - TEST CASE 15
I have a question, regarding Certified for Vista, TEST CASE 15. Verify application installs to the correct folders by default (Req:2.3) and which one it says: 6. Default install directories are: a. Native x86 and x64 applications i. Program Files - %ProgramFiles% ii. User’s AppData - %APPDATA% iii. ProgramData – ALLUSERSPROFILE% Our application has 2 kind of shared user data: 1.) Sample data that is the same for all users, that is copied at the install time, at may be modified by users at application run-time 2.) License data (serial number) that is the same for all users, that is taken from user input at the install time, and also sholud be written at install time to a shared folder. In witch directory should I put this kind of ...Show All
Windows Live Developer Forums Java & Windows Live Mesenger Compatibiliy Issues with Windows Vista Ultimate 64 bit
Ok! I hope someone out there will be able to give me a hand with respect to this issue! I've recently changed from XP over to Vista Ultimate X64 and I have to say I'm starting to get over (and rather frustrated) with the whole "WOW" experience that is Windows Vista! The lack of drivers I can live with but problems with software built by Microsoft is a whole over ball game. Specifically, what my problem relates to is that in connecting up to WLM, the program only takes me as far as the contacts menu before it subsequently crashes with only a pop-up box stating that "Windows Live Messenger has stopped working" whilst simultaneously attempting to obtain a solution of the internet which is consequently not forthcoming. In seeking to obtain ...Show All
SharePoint Products and Technologies Parent content type is not found correctly
I made a new content type for my feature with the following definition: <ContentType ID="0x01C428C71042B34562B51A69FEBFF26F91" Name="Urlaubsanspruch" Hidden="TRUE" Group="Urlaubsantrag"> <FieldRefs> <FieldRef ID="{3944F8B9-21F8-42c8-85AB-BEEF4E863688}" Name="Mitarbeiter"/> <FieldRef ID="{8ADC8169-6BA9-4d7e-B77D-B0F8B79BBEC5}" Name="Vertreter"/> <FieldRef ID="{FE07F11B-C5CE-4067-8F54-55440D516558}" Name="Vorgesetzter"/> <FieldRef ID="{213DCBD5-EF1B-4175-AA2D-5258FC550A99}" Name="Personalabteilung"/> <FieldRef ID="{6EB5AA2B-9870-418 ...Show All
Visual Studio I can't debug a VS package
When I begin to debug, I got two error message dialogs, One is something like I 'm debugging some app without debug info, and the disassamble code is going to be displayed, I can skip this, but it's annoying. The other is a warning that the system debugs are active. I set the VS2005 to the default debugger for my windows system. So how can I remove these two error message dialogs That particular warning is due to the debugger not being able to find matching debug symbols for devenv.exe. You can certainly ignore this, but you might want to try configuring the debugger to search the public symbol server by following the instructions in the following article: How to: Use a Symbol Server I don't quite follow what you mea ...Show All
