mnsh's Q&A profile
Visual Basic Please Help!- With My VB Code
Hello, I am creating a windows form in Visual Studio.NET using VB. I am getting these errors. Please let me know the correct code and instructions to fix: ERRORS *(389): Name 'r' is not declared. *(389): Name 'Orders' is not declared. *(389): 'For' must end with a matching 'Next'. *The section called required code is suppose to return two text boxes. Each text box is suppose to show a cell that is in the row that had the ...Show All
Windows Forms How to access the form
Dim f1 As frmAlertPage Do While c < j Try f1 = New frmAlertPage &n ...Show All
Visual Studio Team System how to add work items to a portal page
QUESTION: Can't find a way to add work items to a portal page Is there anyway to do this ...Show All
.NET Development delete first row in CSV file
Greetings everyone, I have a CSV file and for some reason the first row is bunch of junk data. Is it there a way to delete the first row using C# ... my boss wants a win application and i am a DB developer... i know very little about C#. Thank you in advance. Waiting for your input. Ion With that code, no. However it is possible to mod the code to do that. There are 2 ways. Either 1, read the input file into memory and pars ...Show All
Visual C++ implementaion of unwinding
I have troubles finding information on this subject, so I'll try to ask here: What kind of unwinding mechanism implementation is used by VC8.0 Is it the same old and slow 'update structure on the stack while we go' (like it was up to VC7.1) Or MS finally decides to go after GCC & others by separating successfull execution path on compile stage (which is significantly more efficient) Bye. Sincerely yours, Michael. ...Show All
Visual Studio Express Editions Checking if an object exists before returning?
Hey, I have a multiform program. On one form, i wish to return a ListViewItem, to the callling form, but ONLY if an instance of the class was made (i.e. only if the object exists). It goes like this... Top of code in secondary form: ListViewItem myItem; ... public ListViewItem GetItem() { if (myItem != null) return myItem; else return null; } Later on in the code of the secondary form: void ButtonAddClick(object sender, System.E ...Show All
Smart Device Development Z Order of Forms - SendToBack() BringToFront()
I've created a modeless form, and everytime I create it, regardless of using BringToFront() on it, or send to back on the parent, I can't get it to come to the foreground. Is this function not implemented in .NET CF Thanks. Any solutions I know nobody has responded, but that TopMost property saved me from a lot of headache. Of course, I had to use it in a hacky way, namely: this.TopMost = true; this.TopMost = false; but it works ...Show All
Smart Device Development Spy problems
I can connect with remote File View, RegEdit, HeapView, Process View to any of the Emulators or a real PPC2003 device. But when I run Spy I get either “The process cannot access the file because it is being used by another process” “Invalid Signature” when I connect to an emulator (if the emulator is not running it will bring it up) OR “The process cannot access the file because it is being used by anot ...Show All
SQL Server Parameter Information cannot be derived from SQL statements with sub-select queries
Parameter Information cannot be derived from SQL statements with sub-select queries. Set Parameter information before preparing command. Here's the query: update GCDE_SEQ set LAST_NO = (select max(FLD_NO) from PONL_FLD) ,UPDT_USER = ,UPDT_DT = getdate() where SEQ_NM = 'FLD_NO' Why can't Execute SQL Task handle this simple query I figure i can use 2 SQL Execu ...Show All
SQL Server ForEach Loop utilisation
Hello, ForEach Loop Item allow to make operations row per row. How can i do operations 10 rows per 10 rows or 100 rows per 100 rows Thanks ! Sorry... Those functions looks nice but are not made to my problem... I'm trying to resolve my problem with a transformation script to make a recordset containing rows in the correct format. If you want, i'll send you the script Nico ...Show All
.NET Development N-Tier Dilemma and Transaction
Hi all, here is my situation. When I developed my .NET 1.x application (required to be database indipendent and n-tier) I created a structure like this: - Presentation - BusinessLayer - DataModel (referenced in BusinessLayer and DataLayer to communicate entities) - DataLayer DataLayer: n assemblies specialized for the database. MyDal.SQL.dll, MyDal.Oracle.dll etc... DataModel: 1 assemblies with entities and collection M ...Show All
Visual Studio Team System Max 260 characters in path + projectfolder-hierarchi + programname?
I have just had a strange error saying that there is a limit to the total length of the source control path + project internal path + program name that may not exceed 260 characters. That is obvously too little if you want a minimum of structure in both your team foundation server structure and your projects and you want to stict to describing names for your files. How to I change this setting regards Jens Chr You can't. It's ...Show All
Visual Studio Express Editions Working with IComparable
The response I received to a recent post got me investigating collections, they're pretty cool. I am attempting to add a CompareTo function to a class that I've written so that I can use the Sort method. I have used Listing 4 in a DevX article as my pattern for the CompareTo function. Public Class Recipe Implements IComparable ' ...a property, RecipieID, is created & stored internally as intID Public Overloads Function CompareTo(ByVa ...Show All
Windows Forms Keeping forms in sync
Hello all, Form1 is bound to DataView1 and displays information for an account in text boxes. Form 1 also has a Datagrid1 that is bound to array1 that holds detail info for the current account. When the current account is changed Form1 has methods t ...Show All
Visual Studio VS Team suite Trial Installation: Error 1305
Hello All, While trying to install VSTS Trial on Virtual PC 2004/XPProSP2 I received the following error: ERROR : Error 1305 . Error reading from file d:\vs\Program Files\Microsoft Visual Studio 8\SDK\v2.0\GuiDebug\shortcutCLRDbg32.txt. Verify that the file exists and that you can access it. I could not read the file (but could see it on the dvd) from within the XPPro running on VPC 2004, but I could both see and read the file from my ...Show All
