Jimmyh's Q&A profile
SQL Server Reporting Services 2005
Can I install and run Reporting Services 2005 on a SQL 2000 server currenly running RS 2000 Sorry, your original message wasn't clear enough, so I thought you wanted to run SSRS 2000 and 2005 at the same time on the same machine. Evidently, you just want to upgrade. Yes, 2000 reports can be published to 2005. They will be automatically updated so they work in 2005. Once updated, you cannnot round-trip them BACK to 2000, however. ...Show All
.NET Development Problem with XMLSerializer in .NET 2.0
We use the XMLSerializer to serialize a class hierarchy. This works fine in .NET 1.1 but in .NET 2.0 beta 2 I am getting the following error message: "If one class in the class hierarchy uses explicit sequencing feature (Order), then its base class and all derived classes have to do the same." This message is actually from the most inner exception. The 15 or so nested "outer" exceptions reported the following. "System.InvalidOperationException: There was an error reflecting type ' mytype ' This error occurs on the call XmlSerializer oSerializer = new XmlSerializer (oData.GetType()); where oData is object I am serializing. I ...Show All
Visual Studio Visual Source safe
Can u pls desscribe step by step how anyone can implement source safe in VB.net application through ms visual source safe. thanx in advance When you say implement SourceSafe... do you mean implement a SourceSafe client (or server) of your own in VB.NET or do you mean make Visual Studio act as a SourceSafe client ...Show All
Windows Forms System Process and returning a value to a form
Below is a sample of a class I am trying to get to work. I would like to start a system process(ipconfig) and return the results.Imports System Public Class Machine Dim myProcess As New System.Diagnostics.Process() Function IPConfig() As String Dim myConfig As String myProcess.StartInfo.RedirectStandardOutput =&nb ...Show All
Visual Basic getting files from FTP
Hey, I got a Windows application that processes Excel files and transfers all data to a DB. These Excel files at the moment are being sent to Malta from Germany via FTP........ the user copies the files to another location (as the FTP directory is not accessible) and then browses for them using an Open File Dialog.... the application then does the processing needed! I would like to automate this a bit more. 1. How can I access the FTP server (NOT anonymously!) 2. How can I check if the folder is empty 3. How do I retrieve files (preferably removing them from the FTP server and placing them in another location) Thanks for your help ...Show All
Windows Forms dll file in exe.file
Hi, in my solution I have two projects. One is referenced to the other. The exe file hast no a dll file next to it. Can I include the dll file in the exe file Thanks for your help chris Hi, you can include images, icons, zexz files etc in you exe, using resources. But using a dll will not work. http://forums.microsoft.com/msdn/ShowPost.aspx PostID=95439 ...Show All
Visual Studio Express Editions PSDK install fails
Error 1329. A file that is required cannot be installed because the cabinet file C:\Windows\Installer\MSI504.tmp is not digitally signed. This may indicate that the cabinet file is corrupt. (C:\Windows\Installer - not a valid directory btw, must be part of the PSDK install ) This was the march 06 x86 build. Running xp sp2 build 2600. error was thrown while installing this file... C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\src\atl\atl.cpp This was the web download, so after the installer rolled-back the entire install all I was left with was the 300k installer file. 300+megs of download *poof* gone. Tried the down ...Show All
Visual C# SQL data
I may have this idea completely wrong, but i wish to finda data on a sql DB by row....... _user_______pass_________last login date_________________ a name____******_________1/2/34_____________________ anoth name__******________1/2/34_____________________ i need to find info in a row, then check each column in the row for the info i need......i can't seem to figure out how to find what row# the info is in after u find it, and i can't find a way to find info by grid ordanice (row,column) i am making a simple project to remotly login to a network....i plan to setup useraccts by an sql database...........any help is greatly appreciated ...Show All
Visual Studio Express Editions Web Developer Express
I'm a student and studying ASP right now. I tried installing Visual Basic Express Edition with this Web Developer Express in it. I know that IIS is required, so i went to Control Panel>Add/Remove Programs>Add/Remove Window Components and installed IIS. But when i create a new ASP.NET Web site, with HTTP as location, http://localhost/Lab4 as the folder and Visual Basic as the language, i was alerted Configuring web site http://localhost/Lab4 to ASP.NET 2.0 failed. You may need to manually configure this site for ASP.NET 2.0 in order for your site to run correctly. upon clicking the OK button. For the image, please go to ...Show All
Visual Basic Creating, Adding and Viewing Data in a table
I need to create a temp table in VB2005 and then add data so I can create forms and labels after I have gotten all the required infor from other SAP tables. I have enclosed my code and could really use some help. I thought everything was working but when I try and view the data in the temp table there is nothing or it just isn't showing up. Try Me.WBDataTableTableAdapter.WBFill(Me.WBDataSet.WBDataTable, New System.Nullable(Of Decimal)(CType(Main.txtDate.Text, String))) intDBCount = Me.WBDataSet.WBDataTable.Count Do Until intDBCount = 0 strFSC = Me.WBDataSet.WBDataTable(intRowCount).FSC strMlevel = M ...Show All
Visual Studio Express Editions String transfer
I know that many have asked this question, but as i searched i just couldn't get answer to this so i'm asking it in my own thread. I have two forms, in form1 i have a textbox where certain person should enter his/her name, what i want is that the name that certain person entered is transfered into form2 so i could use that name in form2 to be shown in the MessageBox. One other thing, how can i transfer integer from form to form, so if i have int named Number and i do calculations in form1 and the Number = 10, how can i transfer that int Number so i can use it in form2 and that it has same value that it has in form1 after the calculatio ...Show All
Smart Device Development Flicker in user drawn control
I need to be able to paint my user control without flicker. I am drawing to a bitmap, and then drawing the bitmap to the screen (double buffering) However, when I call graphics.DrawImage(bmp, 0, 0), I still get flicker when the control repaints itself. I'm using a red background color to verify this. I figure that if i use a red background color in my bitmap, i should never see a white flicker, but i do. Any ideas Here's the gist of it: protected override void OnPaint( PaintEventArgs e) { // offScreenGraphics is previously created: offScreenGraphics = Graphics.FromImage(this.OffScreenBitmap) offScreenGraphics = this.Of ...Show All
Visual Studio filter
I added new crystal report to the project I dragged the table control from toolbox and assigned few fields from datasources window Now the problem is it is displaying all the records. I want to filter them according to Date field in the table how can i implement this Next problem later I took the report viewer control on to new form and assigned the report Now at runtime i want the user to filter the report like, above the report viewer in form , i want to display datetime picker for user to pick date and filter the records in the report ...Show All
Windows Forms How do I do LVM_SETWORKAREAS in a ListView Form?
With a ListView control created in C/C++ with the raw Win32 API, working areas can be set using the LVM_SETWORKAREAS message. Is there method or property for doing the same thing using System.Windows.Forms.ListView thanks. ...Show All
Visual Studio Working with search results
Hello Here is the problem : I have a large solution with plenty of projects and folders. When ever I search something, I get results like d:\projectname\development\web\webproject\yetAnotherFolder\AndAnotherOne\help.cs This is a bit anoying. I would like to see onelevelFoler\Class.cs in the results . With the help of vbdocman , I've managed to get my hands on the results of the search and now I would like to modify it but the window is read only. I know there is a way to change the format from registry but it cant get the format I need. Is there a way to edit the results in the "Find results" window Avi ...Show All
