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

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

xyzt

Member List

Ritesh305
Jonathan L.
J.Mathes
Adam Anderly
zapacila89
Emongii
tongkusat
captainsina
Drew Marsh
PublicError
Sql4088
Yeshia
smithmx
ramsarvan
Muhammad Masood
JustinA1
Kimbe
zviaa
cbpd86
Helen Cool Granny
Only Title

xyzt's Q&A profile

  • Internet Explorer Development IE7 RC1 hangs upon open - keeps trying to connect

    I just tried installing IE7 RC1 onto my computer. Symantec anti-virus was disabled upon install. When I open up IE7, it tries to connect, but freezes my system. Tab stuck in Connecting... mode. The internet connection is set to Detect Automatically and doesn't have a proxy sever. I was able to connect previously when using IE6 and can connect without a problem when using Mozilla browser. Don't forget you can right click in th IE icon, select property and get into the settings with out starting IE. Then go to Manage Add-ons. On our campus it was the Yahoo companion add-on that was causing the problem. Hope this helps. =) ...Show All

  • Visual C# Form.Close() or Form.Dispose()????

    I am trying to figure out what i need to do too well let me explain differently.....I have a login in form then once i login a new form comes up with some information in it but the login form is still there.....So my question is How do i get rid of one form when the new one is loaded From the looks of it Me.Close() isn’t being called until after your Form2 instance has been closed. When you call ShowDialog() on a form it becomes the... master form if you will and prevents you from going back to the one that spawned it until you close it. To get around this, try replacing Me.Close() with Me.Hide() putting it before infoForm.ShowDialog() so that the first form is disappears before opening the new one. ...Show All

  • .NET Development Unable to locate Assembly asdlfkjasdfkljasd

    OK, this one is a real head scratcher. I have a paticuarl application on my beta server that flips out almost every time I modify the source code. It gives me an error saying that the cached assembly doesnt exist. Sounds like a permission issue right But I've checked for all of that... and my other apps work just fine. So I google and find some info on app-pools, so i stick the app in its own app pool. Still.... same problems. I spent an entire day fighitng with this thing... all to no avail. It is a win 2k3 server with .net 1.1, and 2.0 installed. I have currently ONLY .net 1.1 apps setup in IIS. Could this be caused by a flaw in my code If so How This is extremely frustrating because its preventing me from coding :| Someone ...Show All

  • Visual Studio IE plugin, symbols not loaded

    Hello. I built an Internet Explorer plugin that is installed on the customer machine via a cab file, it is loaded as any IE plugin. The plugin generates, in case of a crash, a dump using MiniDumpWriteDump, the dump type is DUMP_MINI. The symbols file is generated on a XP Pro machine, with VS 2005 compiler. The scenario is the following: I receive the dump file, generated on another XP machine (it seems that it does not matter if Home of Pro edition), generated under IE6, I open it in VS 2005 and the symbols are not loaded. First I thought it's the same problem as I had before (please see http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=763981&SiteID=1 ) and copied the dll and the cab file in the same folder with the sy ...Show All

  • Smart Device Development VisualStudio2005 fails to create SmartDevice MFC apps but works fine with c#

    I have VisualStudio 2005 "Standard Edition" and the Windows Mobile 5.0 installed. I can create c# SmartDevice applications fine. I have evc3.0 and evc4.0 installed on my machine too which work fine. When I try to create any C++ Smart Device applications, I get a "Line 4033" "Object Required" "Do you wish to debug" error in my IDE. When I click "Debug" and try to debug in Visual Studio 2005 I notice the following: File : Common.js Function: ConstructClassName Line: var bValid = (window.external.dte.VCLanguageManager.ValidateIdentifier(strCandidate)..... window.external.dte is null. I reinstalled the SDK but no use. Any suggestions     I can import eVC 4.0 projects. So I guess the Wi ...Show All

  • Smart Device Development Connecting active sync to emulator in an x64 environment

    Hi, I am trying to connect my Windows Mobile 5.0 emulator to active sync on a 64 bit machine, but the emulator is not being recognised by active sync. Is this a problem with the 64 bit environment (is active sync+WM 5.0 emulator) supported on a 64-bit machine Is there something that I am missing here Thanks Deepthi Yes. I have the 4.5 beta running now, but it's at an average; unstable. Still can't install 4.2. As for the usual questions, I've restarted the machine, I've kept current with windows updates, and I have all of the latest software. ...Show All

  • Visual Studio 2008 (Pre-release) DLinq designer not installed correctly

    I've installed the latest August CTP version and when following the DLinq designer walkthrough I don't see a DLinkObjects template in the add new item dialog. Somehow this is not installed correctly (I also tried a repair but it didn't work). If I create a file with a .dlinq extension it does open up the designer and I can drag tables from the server explorer. Any advice is welcome. Tx, Harry First of all, the DLINQ Designer was a feature of the May 2006 CTP, not the August ADO vNext CTP. Since the May CTP was a prereq for the August CTP, I assume you have installed it. As for the DLINQ Object template, I suspect you are working with a LINQ Web site. By default, the designer is not present ...Show All

  • Windows Live Developer Forums Dynamic TileSource not showing up in 3D

    Hi all, I'm using sharpmap to render some shapefiles as dynamic tile sources, and I've run into an issue with 3D mode.  The same code seems to work flawlessly in 2D mode, so I'm kind of stumped.  Here's the nefarious javascript: function AddHazardLayer(layername, zorder) {  try {   var bounds = [new VELatLongRectangle(new VELatLong(42,-127),new VELatLong(29,-108))];   var tileSourceSpec = new VETileSourceSpecification();   tileSourceSpec.ID = layername;   tileSourceSpec.TileSource = GetTilePath3D() + "&LAYER=" + layername + "&QUADKEY=%4";   alert(tileSourceSpec.TileSource);   tileSourceSpec.NumServers = 1;   tileSourceSpec.MinZoom = 1;   ...Show All

  • Visual C++ Adding objects to ArrayList?

    Hi, I want to use an ArrayList to store objects (see below) ArrayList *arrylst = new ArrayList(); MyClass1 *class1 = new MyClass1(); arrylst->Add(class1); However, it gives me an error saying it can’t convert class1 to type object. My question is how can I get it to work Thanks for your help! No, use std::vector, or one of the other STL containers. #include <vector> std::vector<MyClass1*> v; v.push_back(class1); ...Show All

  • .NET Development Multiple elements in a configuration section

    Hello All, I would like to know whether it is possible to have multiple configuration elements with the same name within a custom section. Changing the element name to say "operation1" instead of "operation" (see sample file below) seems to work but i would like to use the same element name. I think i have to set something like maxOccurs=unbounded but not sure where to do it inside my custom classes. I have already implemented custom classes inherting from ConfigurationSection,ConfigurationElement and ConfigurationElementCollection to implement the stuff below. Am i missing something Currently if i add multiple elements with the same name within the section i see the following error "The element <opera ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DirectX clearing device problem

    Sorry if this is a dumb question but im a beginner at DirectX development. My game window is drawn and works well (nothing else is drawn at this point). I have no code errors except when I hit the X button on the window I get this: The Code: dGDevice.Clear(ClearFlags.Target, System.Drawing.Color.SlateGray, 1.0f, 0); The Error: System.NullReferenceException was unhandled Message="Object reference not set to an instance of an object." Source="Microsoft.DirectX.Direct3D" StackTrace: at Microsoft.DirectX.Direct3D.Device.Clear(ClearFlags flags, Int32 color, Single zdepth, Int32 stencil, Rectangle[] regions) at Microsoft.DirectX.Direct3D.Device.Clear(ClearFlags flags, Color color, Single zdepth, Int32 stencil) I hav ...Show All

  • .NET Development Insert(..) procedur error....!

    I am trying to insert into a table (I can add new columns to the table) new row with this procedur: Public Sub Insert(ByVal nova1 As String, ByVal BrojIks As Double, ByVal Prezime As String, ByVal Ime As String, ByVal BrojInd As String, ByVal zadnji As System.Nullable(Of Integer)) Dim i As Integer Dim nova As OleDb.OleDbDataAdapter = New OleDb.OleDbDataAdapter Dim InsertCom As OleDb.OleDbCommand = New OleDb.OleDbCommand Dim tableMapping As System.Data.Common.DataTableMapping = New System.Data.Common.DataTableMapping("Table", nova1) veza.Open() For i = 0 To Form2.Studenti1Data.Tables.Item(Index(nova1)).Columns.Count - 1 tableMapping.ColumnMappings.Add(Form2.Stud ...Show All

  • Visual Basic Recommended source for icons?

    I got my version of Visual Studio Basic .Net from the Microsoft website, but it looks like the installation didn't include the icons collection. At least, one of my Basic books refers to a collection of icons that comes with .Net, and I don't have it. Anyway, can anyone recommend a public domain source for icons that I can use in my .Net applications Thanks. The style and look of icons have changed dramatically over the years. If you really want a professional look to your applications, I recommend going to iconshock.com. You have to pay for them. But I think they are much more professional looking and "current" for modern applications. And I actually find their prices quite reasonable conside ...Show All

  • Visual Studio Team System Newbie Question - Edit Existing Team Project

    We have recently began using TFS. During the setup process, we downloaded and modified the MSF for Agile Software Development - v4.0 process template to include some custom fields with enumerations that we use internally. Example : Field Name : Department Enumerations: Finance Help Desk Business Development etc. We have recently need to add an enumeration to a field we created for an existing team project. Is there anyway we can update the process template to include this new field enumeration to an existing project What is the best method of adding this enumeration Should we change the database directly and if so, are there any issues we should be careful about any advice would be much appreciated!! ...Show All

  • Visual Studio Tools for Office Synchronize between Word and SQL Server trough content controls

    I want to create a Word addin that allows our client to create documents such as invoices and contracts in Word 2007. There are three important constraints...... The documents must be centrally stored within a database. The documents must be based on a templated that is generated on information in the same database. It must be possible to (on-the-fly) add 'free text' content controls that are also stored in the database.... For example.... We have three database tables....a document table, a content table and a documentContent table that describes the structure of the document.. <document Order> <contentControl OrderHeader> </contentControl> <contentControl OrderDetails> ...Show All

©2008 Software Development Network