Software Development Network Logo
  • Smart Devicet
  • Microsoft ISV
  • Game Technologies
  • IE Development
  • SQL Server
  • Visual Basic
  • VS Team System
  • Audio and Video
  • Visual C#
  • .NET Development
  • SharePoint Products
  • Windows Vista
  • Visual C++
  • Windows Forms
  • Visual FoxPro

Software Development Network >> wleizero's Q&A profile

wleizero

Member List

AndyMills
stallion_alpa
The Hamster
hidme
cobain81
Amit Sharan
stenis
eldiener
Dave Houlbrooke
blabus
Jim Perry
Bigmo
JavaBoy
v_praveen
Tero Kruth
Will Buchanan
elixic
Dual Cortex
mbosfo
febwave
Only Title

wleizero's Q&A profile

  • Visual C# Handle a meta refresh 0

    I have a method of using WebRequest and WebResponse to post login info to a page and once i do i am given a response with: <meta http-equiv="Refresh" content="0;URL=http://..ADDRESS_HERE..."> To which I can not figure out how to handle using the two fore-mentioned objects! How does one handle this type of meta tag If needed I can post my code! --- william Yeah, I already have a method incorporated for handling the cookies; i also just noticed this site has different frames on the pages and I'm not sure if that has anything to do with my method not working! Another option I was looking into since this is such a pain in the butt, was to just use a WebBrowser control and have it hid ...Show All

  • Visual Studio 2008 (Pre-release) ADO.NET vNext Installation problem

    I attempted to install ADO.NET vNext today, but upon starting the install wizard, I was prompted with a message box stating: "Could not access network location VisualBasic\ADO.NET vNext CTP\1033\." I have previously installed the .net 3.0 framework, Visual C# express 2005, Visual Web Developer 2005, and the May 2006 Linq CTP. I'm logged in as administrator on my box, so I couldn't imagine it would be a security issue". Does anyone have any thoughts on this, or any suggestions where I might look for answers I didn't have any luck googling on Ado.net vNext installation problems. Thx for any help. I decided to look at the MSI tables with Orca.exe. I noticed in t ...Show All

  • Windows Forms Databinding and textboxes

    I'm working with a dataset that is filled from a database (OleDb, access). I have a number of textboxes with databinding to data in the dataset. For example: txtForBinding.DataBindings.Add(new Binding("Text", Table.Rows.Find(Id)["Column"], "")); The problem is that when i edit the contents of the textbox, it does not affect the dataset. Is there any method i have to call to store the data into the dataset regards, Kristian Ok, that worked. Changes are now made to the dataset. Now i've encountered another problem. How do i save the dataset to database The dataset will have updated, inserted and deleted rows. I've been using a dataadapter to fill the dataset with data. sorry ab ...Show All

  • Visual Studio Tools for Office Uninstalling or upgrading existing outlook add-in

    Every time we want to install a new version (with changes) of outlook add-in; if it is already installed we have to first uninstall the previous version by going to add/remove programs. Is there anyway to create installer file that will update the existing add-in The following documentation does not provide any information on how to modify the custom action so that it actually uninstalls the previous add-in and installs the new one. http://msdn.microsoft.com/library/default.asp url=/library/en-us/odc_vsto2005_ta/html/OfficeVSTOWindowsInstallerWalkthrough.asp InstallShield and Wise are products that you have to pay for. WiX is free (I believe). http://sourceforge.net/projects/wix/ ~Joe ...Show All

  • SQL Server Need help building a cube

    hi, i am a newbie to Analysis Services. Could someone help me build a cube. I read somewhere that a cube must contain some sort of measure or aggregate, however, i am working with data that has no need for a measure, it doesn't have columns that could be used as a measure(i.e. units or currency)...how can i build a cube without a measure and is this possible thanks yadgor2000 As per the other replies: If you have no measures, you have nothing to analyse... so the question to be answered is why are you trying to build a cube Maybe some other technology would be more appropriate. ...Show All

  • SQL Server What version: Enterprise manager or Management Studio Express

    This may be a dumb question but I have searched and haven't found an answer to it here yet. We are planing to get SQL Server 2005 for a specific purpose.We have several existing stand alone SQL Server 2000 database servers already. I have Enterprise Manager (2000) client installed on my PC. I recently installed SQL Server Express (2005) on my PC to get to know about new features. I have run into problems (BCP specifically) with having two versions of C:\Program Files\Microsoft SQL Server\80\... and C:\Program Files\Microsoft SQL Server\90\... on my PC. Is there any point before or after we purchase Standard version of SQL Server 2005 when I can do away with C:\Program Files\Microsoft SQL Server\80... and/or uninstall Enterprise manager In ...Show All

  • Software Development for Windows Vista creating a desktop shortcut to a .url file

    Hi, I create a few desktop shortcuts when my application installs. I create a couple of shortcuts to .exes and a couple of shortcuts to .url files. The shortcuts to the .exes work just fine. But the shortcuts to .urls don't. I am using Vista pre-rc1. In InstallShield, I use the "AddFolderIcon" command to create a shortcut. Thanks for any help ! Anuradha ...Show All

  • SQL Server running the upgrade step from version 610 to version 611 fails

    I am having an intermittent problem when restoring a SQL Server 2000 database to SQL Server 2005. I have a job that runs daily that restores the database. This job has ran 20 times with no problem and has failed twice. When it fails it fails in the exact same place with the same error message: >>Restoring Backup File: D:\Backups\Production\IHI.bak [SQLSTATE 01000] Processed 388880 pages for database 'IHI', file 'IHIDat.mdf' on file 1. [SQLSTATE 01000] Processed 1 pages for database 'IHI', file 'IHILog.ldf' on file 1. [SQLSTATE 01000] RESTORE DATABASE successfully processed 388881 pages in 130.732 seconds (24.368 MB/sec). [SQLSTATE 01000] >>Bringing database online... [SQLSTATE 01000] Converting database 'IHI' from version ...Show All

  • .NET Development RPC Server Exception

    System.Management. ManagementScope ms = new System.Management. ManagementScope ( "\\\\" + stringMachineName + "\\root\\cimv2" , co); oq = new System.Management. ObjectQuery ( "SELECT * FROM Win32_processor" ); query = new ManagementObjectSearcher (ms, oq); queryCollection = query.Get(); return queryCollection; well guys i am trying to access remote system but in doing this some machines give mein following exception System.interop.Runtime.COmException RPC SERVER IS unavailable (Exception from Hresult:0x800706BA) can u help me this how to solve this Have a look here: I hope this will solve your problem: http://forums.microsoft.com/MSDN/ShowPost.aspx ...Show All

  • Smart Device Development Detecting user input on Pocket PC

    Hi all, Is there a way/API that allows one to detect if a user has entered/tapped any key on a PocketPC. Im writing an app in C# that ideally would lock the screen if there has been no user input/taps after 3 minutes. If there is a way to detect user entry then I would use that to display the username + password dialog box after 3 mins of inactivity. Does anyone know of any such API Thanks in advance Nick Hi crt, Im not well versed with the API's you mentioned ( or C# for that matter) as Im new to this type of programming. Could you please explain a little bit more about the information you provided. Atleast that way even if I dont get it, I have a start on googling it. Thank you very much. ...Show All

  • Visual Studio 2008 (Pre-release) Receiving Sendtimeout after 10 requests to a service

    We have a service which isrunning in IIS on the Feb CTP. This service calls another service. In IIS we a running in memory problems, when calling out of a service another service. So we make the decision to upgrade to the new version (June CTP) of WinFx. Now we have a new problem. After 10 request we are geting the following error: The request channel timed out while waiting for a reply after 00:03:00. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout. ---> System.TimeoutException: The HTTP request to 'http://localhost/HelloWorld/HelloWorld.svc' has exceeded the allotted timeout of 00:03:00. The tim ...Show All

  • .NET Development ResourcePool problem

    Not sure what has changed, but I'm getting this exception. I have registered oledb32.dll and comsvcs.dll but no dice. Please advise. ************** Exception Text ************** System.PlatformNotSupportedException: 'ResourcePool' is not supported on the current platform. at System.EnterpriseServices.Platform.Assert(Boolean fSuccess, String function) at System.EnterpriseServices.Platform.Assert(Version platform, String function) at System.EnterpriseServices.ResourcePool..ctor(TransactionEndDelegate cb) at System.Data.SqlClient.ConnectionPool..ctor(DefaultPoolControl ctrl) at System.Data.SqlClient.PoolManager.FindOrCreatePool(DefaultPoolControl ctrl, IntPtr SID) at System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConne ...Show All

  • Visual Studio 2008 (Pre-release) Error during compile (ANSWER)

    I've got an application in progress that was written with plain ol' Visual Studio C# 2005 (no LINQ preview installed). Then I installed the LINQ preview. I found the settings in the project files to copy to my existing app, so I did that and it compiles fine. I can use the new keywords like var and execute DLinq queries and so on. However, one statement is giving me the following compile error: Error 3 The type arguments for method 'System.Data.TypedTableBaseExtensions.Where<T>(System.Data.TypedTableBase<T>, System.Query.Func<T,bool>)' cannot be inferred from the usage. Try specifying the type arguments explicitly. C:\Programs\StarTrek\StarTrek\Database\CompanyGridForm.cs 75 9 StarTrek The statement is: var ...Show All

  • SQL Server How to order measures in SSAS?

    Hello, I'm wondering if any of you was able to sort all measures (including calculated) alphabetically so it is displayed nicely in pivot table I'm able to sort them by partitions, but do not know how to sort all measures across partitions. Your help is appreciated. -Lawrence Yes. I am not quite sure how to create folder to bucket the measure groups, and the link does not really tell me how (or maybe I'm missing the steps). Do you create the folder in SSAS or Excel I am currently using Excel 2003 Pivot Table connecting to OLAP 2005 Cubes. Thanks! -Lawrence ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. kW X-port for 3ds Max 9 (X file exporter with XNA support)

    I have made a preliminary version of the kW X-port plug-in available for Max 9. The full Max 9 download from Autodesk is almost 3 GB and is still going, so I haven't been able to test it yet -- it's just re-compiled with their new SDK. I give it a good 90% chance of working fine, though :-) The version for Max 8 has been tested, of course, and is still available. It might work as far back as Max 6, because they are apparently version compatible from 6 through 8, but I have only tested on 8. kW has some features that might help with XNA usage, such as support for the Max Direct3D9 material with shader parameters; support for mirroring along Z and mirroring the V coordinate ; support for properly exported skinned meshes even if ...Show All

©2008 Software Development Network