Software Development Network Logo
  • Game Technologies
  • Visual C++
  • VS Team System
  • Windows Live
  • .NET Development
  • SQL Server
  • VS Express Editions
  • Visual C#
  • Windows Forms
  • Visual J#
  • Microsoft ISV
  • Architecture
  • Visual FoxPro
  • Smart Device
  • Visual Basic

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

Polarina

Member List

Ajit Godbharle
keiichi
K. Rose
jack7701
The Aqua
srii
SQL 2k5 Newbie
David d
brettn
Nishantha
Simon Harriyott
Morpheo
Roygana
Vitor Hervatin
seekhelp
ebailey
Bluesky_Jon
Ashokag99
Gu1234
Christopher.Gao
Only Title

Polarina's Q&A profile

  • .NET Development Membership provider doesnt connect to sql server.? RC1

    Hello, I configured my asp application with membership provider, the code below connects, I used management studio and it connects, but the membership and role functions doesnt work, the debugger says its unable to connect to sql server, look below the web.config, it has exactly the same connection string. Thanks Dim conn As String = "Data Source=CAMPEON;Initial Catalog=inventario;User Id=inventario; Password=inventario" Dim sqlconn As New SqlConnection(conn) Try sqlconn.Open() Response.Write( "Conectado" ) Label1.Text = "Conecto" Catch ex As Exception Throw ex Finally sqlconn.Close() End Try 'This s ...Show All

  • Visual Studio Team System Build Failed - When drop location is on other machine, than the build machine

    Hi, My Drop Location is on another machine on my network. I get a "Starting Build: Logon Failure: Unknow User Name or Bad Password On the Build Summary page - Clicking on the Drop Location Link takes me to the Drop Location. The Drop Location Folder is Shared with Write Permissions. The Build gets past this error when the Drop Location is the Build Machine. Thanks Please reply with build log file. What is the user account under which build service is running This account needs full control of the drop site. Similarly the account under which web services are running need full control of the drop site. Than ...Show All

  • Software Development for Windows Vista Changes to an already running .xoml

    I would like to know if its possible to change an already running .xoml and make the changes effective in the running workflow without having to restart the host Thanks I believe you'll want to look at dynamic update. There are samples in the SDK and a lab in the WF HOL. This will change the currently running workflow, but not any started after this or other instances that are running. You'll need to apply the changes with dynamic update to all running instances, and then change the XAML file if you want to impact new instances. Matt ...Show All

  • Windows Search Technologies Cannot install/re-install MS DeskTop Search (nor toolbar): "cannot remove older version"

    Cannot install/re-install MS DeskTop Search (nor toolbar): "cannot remove older version"; running XP Pro on Intel 865 motherboard with 1 gig of ram and 3Mhz Pentium 4. Error message "cannot remove older version" is response to running new download; nothing which looks remotely similar to desktop search shows up in {Remove Software} nor do I find any version of anything which looks like desktop search in \Programs\..., including complete invisibility of any of prior third-party (Google, Yahoo/X1, Copernic) desktop search utilities which I have previously installed and removed. What to do How to "remove older ve ...Show All

  • Visual C# Events And User Controls

    Hi, I've got a user control inheriting from System.Windows.Forms.TextBox and I've added a ListBox as a child.  I would like to expose an event when the ListBox changes visibility.  Any help would be greatly appreciated. Code Snippet Follows==================================== public class TextBoxLookup : System.Windows.Forms.TextBox { private System.Windows.Forms.ListBox listBox1; private void OpenListBox() { Control ctlParent = this .Parent; ctlParent.Controls.Add( this .listBox1); this .Text = ""; this .BackColor = Color.GhostWhite; this .listBox1.Location = new System.Drawing.Point( this .Location.X, ...Show All

  • Visual C++ typedef Definition Help w/C Program

    Hi everyone, I'm very new VS. I hope this is the proper group to post to. I have a C program with a size_t variable declaration. When I hover the mouse over 'size_t' I see a tooltip that indicates size_t is a 'typedef unsigned int'. When I right-click on 'size_t' and select 'Go To Definition', however, I get a dialog popup that says, "The symbol 'size_t' is not defined". The 'Code Definition Window' also has the text, "No definition selected". So, my question is, how is it the tooltip can correctly report the size_t typedef but VS is unable to show me the definition of the typedef This seems to be inconsistent. size_t must be defin ...Show All

  • Visual C++ Get String From PTRDIFF

    I have a struct with a PTRDIFF member.  It holds an offset to a null terminated string. how to get that string. example: i have OBJ_something->PTRDIFF_member i want it in LPWSTR mystring ,Thanks I think this was answered on another thread, http://www.xtremevbtalk.com/showthread.php t=229019 Nikola VC++ ...Show All

  • Visual Basic Start application as Administrator.

    Hello, Is it possible to run a program as a different user, like Administrator. For example: I define the Administrators password in the program, the program starts, and then runs with Administrator priveleges. I know about the option 'Run as', but i want the program to start at startup, run as an Administrator and do his work. Thanks in advance. Hi, Before I start I have to warn you that if you store the password as cleartext in your code you make it available to anyone with ildasm utility and your binary. Now here is the code: Imports System . Security . Principal Imports System ...Show All

  • SQL Server ANYONE PLEASE - Local Synchronization Between SQL Mobile and Local SQL Database

    Hi Everyone I am at the stage of architecting my solution My goal is to develop the system on a windows application and pda There is a central server which will create a publication called inventory The laptops which host the windows application will be subscribers to the central server using merge replication The client now wants the PDA using SQL Mobile to synchronize with the local subscirber database on the laptop using active sync. They dont want to do it via WIFI to the IIS Server at the central server I have been reading for days and I am still unsure whether this is possible to do. I know Appforge provide a condu ...Show All

  • Visual Basic Installing.

    Kelly, You will get alot further with your frustrations by providing details of your problems/issues to the product feedback center: http://lab.msdn.microsoft.com/productfeedback/Default.aspx ...Show All

  • Visual Studio Express Editions LearnVS.net's projects?

    http://msdn.microsoft.com/vstudio/express/vb/learning/ I downloaded those, wanting to get into using VS2005. I have Standard Edition I can't seem to use those projects with the VS2005 Standard. Is there a compatability problem between the two programs i don't think so. extract(install) any project they will add msdn folder in (my documents) go there and find any myproject.vbproj or myproject.sln double click it , it should open vs and you can see the code hope this helps ...Show All

  • SQL Server Detach sql2000 msde database using SMO.

    Hello, I am trying to detach a database from an instance of msde 2000 using smo.  When I call the Server.DetachDatabase function using my valid server object I get the following error. "This method or property is accessible only while working against SQL Server 2005 or later." Does anyone know if it is possible to detach a msde database using the .net smo objects.   What I am trying to do is detach the database and then re-atach to an instance of sqlexpress.  I thought about just stopping the server and copying the mdf file to a new location but I cannot figure out how to sto ...Show All

  • Visual Basic Creating Events

    Hi all, I am trying to hook up an application i have created using Events but am a little unsure as to where to put everything. So any guidance in the right direction would be appreciated. What i have is a form with two user controls, a textbox control and a data grid. what i am trying to do is when the user selects a customer from the text box control it will populate the datgrid with their details. I have declared a Public Event NewCustomer and Raised the event in the selected index change of the textbox control but am a little unsure as to where to go futher! Should i handle the event in the form class or the datagrid user c ...Show All

  • Visual Studio Tools for Office Can I use Actions pane control in my shared addin project?

    Hello. I want to make shared addin moudle for MS-WORD, which use the actions pane control. Is there any way I know that actions pane control can be used in the office document or template project. However the coded template file(.dot) can not be used as the global template. So, I want to make the shared addin module for any document. Please let me know how it is possible Best Regards John Hi No this is not really supported to any specific template, we have written a solution that has an extensible solution that will dynamically change the controls subject to the base document. We then have a tool that ...Show All

  • SQL Server Passing Parameter Query from SQL Function to Access Project Report

    I can pass a parameter from an Access Query to an Access Report (MDB) by entering [Select Date] in the Query criteria and by placing an unbound control with a control source =[Select Date] on the report. I can't get this to work from a SQL Function Criteria to an unbound control on the Access Data Project Report. In the Function Criteria, I enter @SelectDate. In the Report control, I enter @SelectDate and it gives me an 'Invalide Column Name' error. Any idea how I can pass a parameter from a SQL Function to an ADP report THANKS! p.s. I tried searching for other postings on this without any luck. ...Show All

©2008 Software Development Network