MPAZ's Q&A profile
Visual Basic VS 2005 and Express install on Win XP Tablet Edition
The current VS Express FAQ indicates that Windows XP Tablet Edition IS supported for all the applications, including SQL Server Express. Will VS 2005 Beta run on Windows XP Tablet Edition Well, I think you should be able to install the SQL Server Express 2005 on Windows XP Tablet PC Edition as long as your Tablet PC meet the hardware requirement. See the following link for more detail... http://forums.microsoft.com/msdn/ShowPost.aspx Post ...Show All
.NET Development VB.NET Regular Expressions
What namespace or library must be referenced (imported ) to be able to use regular expressions in VB.NET I've seen references that they exist, but don't know how to reach out to use them. Class Regex doesn't have properties Pattern and IgnoreCase. You should use something like this regEx = New Regex( patrn , RegexOptions.IgnoreCase) retVal = regEx.Test(strng) ...Show All
Visual Basic 0x prefix in VB
In some example microsoft code for vb, there was posted a declaration: Dim Key As Byte () = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16} which creates an error in 05. Is there a switch, define or setting that tells vb to use 0x with/instead of H "0x" is the C# hexidecimal literal prefix. "&H" is the VB prefix. Obviously ...Show All
Visual Studio Team System Incredibly (astronimically) slow performance on new RC of TFS
We upgraded from beta3 to RC on TFS. Also ran the 2.0 hotfix. I uninstalled the client (had no instances of vs2k5 running) and installed the new RC team explorer client. I also installed the 2.0 hotfix on my local computer. Now the SQL server runs on 100% load.. 'TfsVersionControl.dbo.prc_QueryItemsExtendedLocal;1' is running It loads the solution fine to a certain point, but then freezes. Getting latest from team explorer goes fine. Branching i ...Show All
SQL Server Is possible to delete LOG file in SQL
can i delete the LOG file in the sql bcoz of large file size. will it be able to use it without the LOG file and only with DAT file. help me SQL Server can't function without a log file. Regular log backups keeps your log small. If you are not interested in the records in the log you can issue a BACKUP LOG dbname WITH TRUNCATE_ONLY. Maybe issue a DBCC SHRINKFILE (Filename, Size) WITH TRUNCATEONLY after that. Using the SIMPLE r ...Show All
SQL Server Formal parameter '@P83' was defined as OUTPUT but the actual parameter not declared OUTPUT.
We are using SQR for Peoplesoft 8.47 and MS SQL Server 2000. I have a straightforward program that inserts Merit and Accomplishment data from a csv file into 4 tables. The majority of the fields that are inserted for each table are obtained by doing a select on that table. The csv file provides the updated fields to include in the insert. What I have run into is this: If the CSV file has more than 50 rows in it, it bombs with the follow ...Show All
SQL Server Data Reader Source cannot be configured
Hi, I am using a Ado Connection Manager to connect to a M S Access source. But when I use this connection Manager in Data Reader Source, I am Not able to Configure Data reader Source. It gives exception "Cannot Acquire Managed Connection From Run Time Connection Manager". Can anyone help on this. Thanks Dharmbir I have new Integration Services Project in Microsoft Visual Stud ...Show All
Smart Device Development ActiveSync + VS 2005
Hi, I'm using VS 2005 Beta to try out developing for my ipaq. During emulation, everything is fine, however when I try to deploy my program to my device, I get an error saying that the ActiveSync version I am using is not supported, and to download the newest version from microsoft. Did that, nothing changes. What's the deal If this continues not to work, can I just drop an EXE onto the device and have it work ...Show All
SQL Server Nested Procedures & Using Signature Based Security
I am currently developing a project that requires a server level permission for one stored procedure (ALTER ANY LOGIN) To this effect, I plan to create a certificate, sign the stored procedure with it, import the certificate into the master DB and assign privileges. I also understand that modification to the code invalidates the signature (after all thats the point of signing something). But what about user defined functions and stored ...Show All
Windows Forms Certain Events Don't Fire
Hello, I have a windows C# project with ToolStripComboBox and ToolStripButton, and I'm also using CAB and these files are in a loaded module. I tried a SelectedIndexChanged and Click event for those two controls, but they don't fire. Why don't they fire I don't understand the reasoning for that. Thanks, Brian Hey, THis corrected itself. I'm not sure why, but they were eventually firing. I'm having a problem wit ...Show All
SQL Server Problem with Hyphen in server name?
Hi all, My sql server has a hyphen in its name, and I've noticed I can't use a fully qualified reference, server.database.owner.table. Is this a known bug , what's the fix apart from renaming This is standard version, not a beta. Hi Meltdown, this is anugly things having a hyphen,or any other character in the server name, but putting brackets around that should solve the problem. [server].database.owner.tabl ...Show All
.NET Development Getting files from the remote server
I have the following network set up. I have a web server (IIS6) running .Net web application. On a remote computer I have a folder with files required by this application. This folder on remote machine is mapped on IIS machine as a network drive Y: After login in onto IIS server with personal domain account I am able to copy files between IIS machine local drives and network drive Y: manually through windows interface. ...Show All
Visual FoxPro Help! Save me from this error cursor not saved error message!!!
Hi all; I have this grid who's control source is a cursor who is exclusive. Somewhere in the grid I use a replace command to change one of the fields in the cursor. When I move to the next row, and change a field I get an error stating that the current row is not saved and needs to be saved. I have tried everything including putting a FLUCH FORCE command after the replace command. I don't see why an exclusively opened table shoul ...Show All
Visual Basic Config file on Class Library ??
Got a solution with 3 projects, a Web Service, a WinForms (MyUI), and a Class Library (Foo). MyUI calls methods in the DLL that access the web service. The DLL has project config settings that store the URL of the web service. I compile the solution and it compiles all 3 projects. In the DLL's bin dir it puts the foo.dll and foo.dll.config files. However, in the WinForms bin dir it puts the MyUI.exe, MyUI.exe.config, and foo.dll; it doesn't i ...Show All
Visual Basic keeping program from appearing to hang
I have written a program that needs to ping over 500 pc's on a network. Whenever a ping exception happens, the program has to wait a while before my try/catch block goes into effect. At this point, the program appears to hang, but is actually not. The program's picture box's will turn white when I navigate to some other window. I thought if I put in a progressbar it might keep it from doing this because it would be constantly updating a pictu ...Show All
