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

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

celecstialclockie

Member List

davidt1234
Mr_Gear
michhes
Zulfiqar Malik
phil green
Jose Flores
FrankIan
Jason Foster
Dayna
m4lomb
croc
zmrcic
amygal
Waxxy
Kyle Fender
Nirvana
VC_Learner
v.iyer
el-chema
RogMauri
Only Title

celecstialclockie's Q&A profile

  • .NET Development Hide password in connection string

    Is there a way to hide the password from the connection string of an SqlConnection instance at runtime Thank you! Do you want to hide the password in memory or hide it in the config file If in the config file, then take a look at http://weblogs.asp.net/owscott/archive/2005/07/29/421063.aspx If in memory then take a look at http://blogs.msdn.com/shawnfa/archive/2004/05/27/143254.aspx ...Show All

  • Windows Forms No-Touch Deployment - Who is using it?

    Hi all, My company is writing an enterprise app and we are strongly considering no-touch forms for the workhorse parts of it.  I am curious about how prevelent the no-touch approach is becoming. Are people seeing a lot of interest in no-touch   Are a lot of people actually developing for no-touch   Has anyone started deploying no-touch forms   If so,&n ...Show All

  • .NET Development Connecting to a database and parameters in sql

    Hi, I am creating a small web app, that searchs a database depending on the information the user enters onto the web form. I create the connection to the database by using the visual studio wizards by binding the data top a grid view. Below is my code SqlParameter word1 = new SqlParameter(); word1.ParameterName = "@tb_1"; word1.Value = TextBox1; SqlCommand cmd = new SqlCommand("SELECT * FROM ApprovedComponents WHERE Vendor = @tb_1"); cmd.Parameters.Add(word1); //Used this in hope after entering cmd into SqlDataSource1.SelectCommand after cmd failed const string command = "SELECT * FROM ApprovedComponents WHERE Ve ...Show All

  • Smart Device Development Microsoft Device Emulator Community Preview - Won't Start

    Windows 2000 SP4 I have installed the Microsoft Device Emulator Community Preview, with ActiveSync, but am unable to get it to Cold Boot. The furthest it gets is the emulator window with skin launches and then I get an error "DeviceEmulator..exe has generated errors and will be closed by Windows. You will need to restart the program. An error log is being created." Even with the /c option, I am not provided with any debug information. Your assistance is greatly appreciated. Respectfully, Gary This is really starting to frustrate me. This is my third day working on ...Show All

  • Visual Studio Team System Error : Already configured for testing by another test run

    Hi All, I have this following test method, <TestMethod(), _ HostType( "ASP.NET" ), _ AspNetDevelopmentServerHost( "C:\Web\" , "/Web" ), _ UrlToTest( "http://localhost:35012/Web" )> _ Public Sub AddContextParmsToHashtableTest() Dim lContextParams As IDictionary = HttpContext.Current.Items 'TODO: Initialize to an appropriate value Dim lRequestDictionary As Hashtable = New Hashtable 'TODO: Initialize to an appropriate value Dim lRequestDictionary_expected As Hashtable = New Hashtable 'TODO: Initialize to an appropriate value Accessor.AddContextParmsToHashtable(lContextParams, lReque ...Show All

  • Visual Basic Print directly to LPT1 on Visual Basic 6 urgent!!!

    Hi, I already managed to print directly to LPT1, however, I need to specify the font type, wether to use italics and bolds, etc. Can anyone help me Thanks a lot. These forums are for VB.NET and there are better places to find answers for older versions of VB. Maybe the VB6 newgroups - http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.vb.general.discussion&lang=en&cr=US There are plenty of VB6 sites still out there, www.codeproject.com is one that allows VB6 questions. ...Show All

  • Visual Studio Express Editions debugging not working

    i'm using VC++ express edition. I was trying to debug one of the examples that come with the help system. but even after setting breakpoints the program doesn't break at the particular break points. it was working fine a couple of hours ago. i tried debugging the same program that i debugged a couple of hours ago. even tht wouldn't work. i don't know if this is a bug in the vc++ .. but its really bugging me. i've been trying for the last hour to debug the program and its not working. thanks in advance... hello; am trying to port an application wich works on Mingw compiler version to win32 on VC++ I'm trying to build a GTK ...Show All

  • SQL Server Error-14010-remote server not defined as subscription server

    Running SQL Server Personal Ed (Server A) on Tablet PC (publication and distribution setup here) trying to push data to SQL Server 2000 Enterprise Ed. (Server B). When I start sync I get two failures. First is 'remote server not defined as subscription server'. Second, subscription to publication xx not valid (error# -2147201019). The snapshot is succeeding fine. What do I need to setup on Server B I have the same db on both servers. I did run sp_add subscriber only to verify Server B already exists. A subscription shows up on server B; listed as never started. I have not been able to succeed this ta ...Show All

  • Visual Studio Converting IDTWizard to GAT project and solution templates.

    I'm trying to convert our existing project templates into GAT. Unfortunately my GAT doesn't let me do some things and does too many things for me in other cases. First, let's throw away the Visual Studio text replacement stuff everywhere and use the "T3" stuff. I previously complained about this for project items and somebody replied that I might be able to do that in the next release of GAT. Does this also apply to project templates Second, the Action is only ran AFTER the project has been created. There is no way that I can see to get in before the project is built. Third, I can't disable the project Name and Location. My wizard is respon ...Show All

  • SQL Server Toggling Visibility on a Snapshot not working

    I have a clean SQL 2005 install, with SP1 installed. It is connecting to a TeraData warehouse. I have create a few reports that Toggle the Visibility and they have seemed to work just fine. Until I render them from a snapshot (the problem doesn't exist with a cached copy). Once I render from a snapshot the ability to toggle the hidden rows goes away. It looks as if it is going to show the rows then returns to it collapsed state. The ReportServer database is on a separate machine from the Web Service. The Web Service is running in a Virtual Server (R2 - latest). The reports are only being accessed from within the intranet and the proble ...Show All

  • SQL Server Transactions and Service Broker

    Problem: I want to use the Service Broker to split up my processes so that they can process concurrently next to each other, but I only want the changes committed if all the processes of the same conversation group succeed. Is this possible in the service broker I came up with this, but the problem with this solution is that my transactions are all started first (4 in this example) and only are committed after all 4 are started, so only the last commit has the effect of commiting the changes to the database... Any pointers would be helpfull! Cheers, Peter. Code: [CODE] /* CREATE DATABASE testpdd USE testpdd create master key encryption by p ...Show All

  • Visual Basic CLR error: 80004005

    I am using Visual Studio 2005 on Windows Server 2003. All service packs are installed. I first had this problem when trying to distribute an application for testing so I then created a simple application to try and narrow down the problem but to no avail... I create a simple Windows Application that has a single form with a single button on it that, when clicked, shows a messagebox with the words 'Hello World'. I compile it and run it fine but when I install it on another PC I get the following error on startup: CLR error: 80004005. The PC it is compiled on is a Windows Server 2003 with all service packs installed. .NET framework ve ...Show All

  • SQL Server How do I parse contents of a field record?

    I have a table which contains a name field. The names contained in the field may be actually more than one name i.e. first name, middle name and last name separated by a space. Is there any way to write a query to parse the name field into three separate fields based on finding a space I'm trying to do this in SQL2000. Any ideas would be much appreciated. ...Show All

  • .NET Development DataBind controls at run-time!

    Hello again: Is it possible to bind a textbox control at runtime in web applictions. Thanks alot.   Yes you can. Please refer to the follwing article http://dotnetjunkies.com/WebLog/ageofempires/archive/2003/12/16/4528.aspx Regard's AfterBurner MCP ...Show All

  • Visual FoxPro DELETE FOR-PACK ON BUFFERED TABLES

    I have a buffered(5-optimistic )tables in vfp 9.0.when i use delete the records arent deleted i use tableupdate but they dont get deleted.i use pack but i get a msg saying table should be in no buffered mode i then change buff to 0 (not programmatically with cursorset.. but from dataenviroment) but is still get the msg! how can i delete a record table must be in buffered mode As you have been told several times. TableUpdate() does NOT physically delete records!!! Please stop wasting people's time. When you issue DELETE in visual FoxPro it does not physically remove the record from the table, it sets a FLAG o ...Show All

©2008 Software Development Network