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

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

Antarctica

Member List

Supernaut
pedestrian
sqlduck
Coach24
DMan1
NineOldMen
John Fly
banswaraboy
Mystagogue
Klaus Byskov Pedersen
Rian Edwards
cosmmm
rcopley2
BhuttCrackSpackle
JohnBurton
Bumper
amitsinha
rwright142
Rupesh Bhurke
M. Simioni
Only Title

Antarctica's Q&A profile

  • Smart Device Development Visual Studio PaocketPC 2003 SE emulator connection Problem

    I am using Visual Studio PaocketPC 2003 SE emulator .My Machine is in LAN . I want to test my ASP application running on localhost. So I changed Setting->Connections->Advanced TAb->Select Network->My Work network ->Edit->Proxy Settings->Checked Checkbox this network connects to the internet->ok->ok->ok. After this i opened IE in emulator and tried to connect to google.ca . I am getting the following error:- Unable to connect :you have no modem entries created and no network card present. Please HElp Hi after the successfully setting the connection I am able to connect to the internet through Pocket PC emulator. But once I try to connect to webservices running on the ...Show All

  • Visual Studio Team System Static Data Management

    Hello, This is probably a stupid question, but I'm starting to play around with Data Generation scripts for unit tests in my database project, and I have a query about what I would call static or system data. For example, the data generation scripts take care of user data, but what about tables of types or the equavalent of enums for instance, a UserType table which contained data such as: UserTypeId | Description ---------------------------------- 1 | Standard User 2 | System administrator 3 | Editor Or similar The IDs would have to stay constant thoughout the system, so either I create a deployment script that creates the data or use the data generation tools. If I use a deployment script, will (1) the data ...Show All

  • Visual Studio Custom Folder's Hierarchy

    Hi All, Background: I'm working with VSIP/MPF interfaces & classes. I'm making a function that adds items programmatically into the running project. To be more organized, these new items are added to a custom folder in a project. 1. If the folder doesn't exist yet, this also means adding the first item , a folder should be created and then should be added to the project. Then the first item is added to that folder. 2. If the folder exists, this also means there is at least one item inside that folder, then add new item to that existing folder. 3. I use IVsProject3.AddItem() method to add item to project. Problem: 1. I tried to add the first item to the folder, but instead the item is added to the project. I realize that I use the proj ...Show All

  • SQL Server SQL2005 Performance problem with updating subscribers with identities

    Since we've upgraded to 2005 we've had major performance problems with updating subscriber tables that contain identity PK columns set to manual or auto range management. If a table has identity range management set to 'None' (the "old" 2000 way), the peformance is fine. Below are sample tables: CREATE TABLE [dbo].[ID_RANGE_TEST]( [ID] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL, [DATA] [int] NULL CONSTRAINT [PK_ID_RANGE_TEST] PRIMARY KEY CLUSTERED ( [ID] ASC )WITH (PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO CREATE TABLE [dbo].[ID_NONE_TEST]( [ID] [int] IDENTITY(1,1) NOT NULL, [DATA] [int] NULL CONSTRAINT [PK_ID_NONE_TEST] PRIMARY KEY CLUSTERED ( [ID] ASC )WITH (PAD_INDEX = OFF, IGNORE_DUP_KE ...Show All

  • Visual Basic Need help waiting for event

    Hello, I need some help learning how to wait for an event to fire. Events are fairly new to me, so bear with me! I have successfully created an event handler, however, I need my program to wait for this event to fire before continuing. I've looked at the EventWaitHandle class, but I am not completely clear on what I need to do. A little bit more about the situation: I'm using a class/application written in VB6. I call a method in this class and it has the possibility of doing a LOT of calculations, however I have no clue how long it may take. As such, "sleeping" for a period of time is not possible. But because any further action in my program requires the results of those calculations, I cannot continue excecution. ...Show All

  • .NET Development WSE 2 x509 Certificates

    Ive got a scenario where multiple clients ( each with a different certificate) accesses our service. When returning a signed and encrypted response from the service i need to sign it with the client public key. As there could be numerous keys i dont want to hard code a certificate in the policy file. Is there any way to automatically pick up the x509 token from the request to use in signing the response. I can do this in code but need to be able to do it within a policy file. ...Show All

  • Software Development for Windows Vista Product Identification Tool - How to use

    I am trying to follow the steps to get The "Works with Windows" logo. One of the first steps is to get a Product ID Code. I downloaded the Microsoft Product identifcation tool, and ran it on my system, but it does not display my application in the list. What prerequisites do I need in order for my app to appear in the list so that I can proceed wiith this. Also, is it looking for installed applications or msi files. I have both for my app on this machine but the tool did not pick them up. Hello Michael, I don't see anything out of the ordinary there. Here is a screenshot of Add/Remove. My app is Orca! 2006. http://www.WhidbeyIslandSoftware.com/private/addremove.bmp I did the side b ...Show All

  • Visual Studio Crystal Report Viewer Flickering

    Hi, I am trying to display a report using Windows Forms and the CrystalReportViewer control (I'm using VS 2005). I discovered that when the form is first drawn, if my mouse is moving, the report will constantly refresh itself, flickering. This continues for as long as I'm moving my mouse after the form is loaded. If I stop moving the mouse, everything is fine; the report finishes rendeding and there are no more problems. I would like to figure out how to get rid of this behavior. Has anyone encountered this before Thanks in advance for any thoughts / comments you may have on this issue, Greg Sherman I am seeing the same issue. I didn't realize the flashing was related to mouse movement until I re ...Show All

  • Visual Studio Express Editions connect to database

    Hi People! Please, HELP ME! I use Visaul Basic express edition and I want to connect to remote microsoft access database. 192.168.54.106 with computer about this IP I want to connect Data Source=C:\software\software.mdb This code work con.ConnectionString = "Provider=MS Remote;" & _ "Remote Server=http://192.168.54.106;" & _ "Remote Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=C:\software\software.mdb;Persist Security Info=False" but later appears exception sql = "SELECT System FROM software" da = New OleDb.OleDbDataAdapter(sql, con) da.Fill(ds, "software" ) exactly here that, there is no connect T ...Show All

  • .NET Development LongTime formatting problem?

    With the code, DateTime dt = new DateTime (2006, 11, 14, 1, 23, 45); Console .WriteLine(System.Globalization. DateTimeFormatInfo .CurrentInfo.LongTimePattern); Console .WriteLine(dt.ToLongTimeString()); Console .WriteLine(dt.ToString( "T" )); I get the result of HHmm:ss 012345 012345 Shouldn't I be getting 0123:45 instead of 012345 yes, i do believe you should...I'm getting the following output with the same lines of code: h:mm:ss tt 1:23:45 AM 1:23:45 AM ...Show All

  • Visual Studio Team System MSSCCI Provider installation error

    Hello! One of the devlopers has .net 1.1 framework installed on his computer. He is using Visual Studio 2003 and wants to access Team Foundation Server. I tried to install msscci provider version 1.1 from the msdn downloads website and it comes up with the message: "The setup requires the .net framework version 2.0.50727. Please install the .net framework and run this setup again. The .net framework can be obtained from the web. Would you like to do this now " The user isn't ready yet to get .net 2.0 framework. Please assist. Thank you! Could you clarify a bit the environment Installing TFS Msscci should set all the registry keys. I've posted them in case you have Visual ...Show All

  • .NET Development How to convert Class object into DataSet?

    Lets say, I have a following XSD utility generated class as follows: [XmlRoot(Namespace="http://example.com/2007/ex1")] public class Example { public Example () {} public string Name; public int Power; } I have to pull data from several tables(MS Access2003) and store it in a DataSet. Now, Is it possible to use it like: Example example = new Example(); example.Power = 42; example.Name = "Kibo"; DataSet myDataSet = new DataSet(); myDataSet = example; or myDataSet.Add(example); Somehow, to add the example object tree in myDataSet , and pull values from tables directly into myDataSet. This will help me in doing following things: 1. I'd not need to change my existing ...Show All

  • Visual Basic enabling controls on a form

    I have a form with a split container with 2 panels each holding 20 text boxes. I've tried using a for each statement with a if GetType is text box then enable = true etc... to enable these text boxes and when that didn't work I tested this : mol4.Enabled = True mol5.Enabled = True Where mol4 and mol5 are two different tb's. It didn't enable them. I've never run into this problem before. Any thoughts The state of the container control will override the state of it's children (i.e. if your panel is disabled then all textboxes in the panel will be disabled, regardless of the individual textbox's enabled flag state). So, rather than enabling/disabling 20 individual textboxes, just set the pan ...Show All

  • Visual Studio How do I run programs before and after my application executes?

    I'm building a program where I need to execute a java program each time before and after my project runs. Is it possible to do this within visual studio so that I can just press F5 and it will run the entire sequence You mean that you want to run before and after *building* your project In that case, the simplest way is to edit your project file and add something along the lines of after <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Target Name="BeforeBuild"> <Exec Command="..."/> </Target> <Target Name="AfterBuild"> <Exec Command="..."/> </Target> ..assuming that you are *not* using C++(/CLI) as it does not, yet at least, u ...Show All

  • Visual Basic Listbox

    hello, How can I retrieve the values the user selected from a listbox with a selection mode set to = SelectionMode.MultiExtended What data are you trying to get at From your post it looks like you've populated the ListBox with DataRowView instances. If there is a specific member or property in the DataRowView you need, just cast the object back to the DataRowView instance and access it directly. ...Show All

©2008 Software Development Network