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

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

CiNN

Member List

Rattlerr
Klaxas
ramana reddy
Oz22
yfradkin
Joos
Angry Coder
Swarna
Kolf
fasttrack
Ringo21
droujav
tackett
Detisch
Ted.
Mamatha
Salvador Rocha
slein
bhavu
SW_skeets
Only Title

CiNN's Q&A profile

  • Smart Device Development How to load .exe file on Pocket PC 2003 emulator as VS.Net 2003 Debugger

    I am modifying an .EXE file using VS.Net 2003 but do not know how to load the file on the Pocket PC 2003 emulator to use it as the debugger. Is there and activesync setting that has to be established; cannot type in the "Use this PC:" block the name of my PC When using Embedded Visual Basic 3.0, I could use Windows CE Remote File Viewer for adding programs to the Pocket PC emulator. Yes I know VS.Net 2005 is out but am designing only to my personal PPC 2003 PDA. I am trying to learn this by self study and just getting into it now so please keep it simple if you can help. Thank you. I am sorry this forum is dedicated to questions related to Device Emulator shipped with Visual Studio 2005. You may ...Show All

  • Visual C# Enumerator on a linked list

    Hello everyone! I'm trying to get an Enumerator to work on a linked list but I'm not sure how to do it. MSDN documentation says that at first the enumerator should be positioned before the first element/node in the collection. Any tips on how to do that in a linked list I thought about setting it to null but then when the MoveNext() method is called I can't do current = current.Next since current is set to null. Should I save the firstNode, then in the MoveNext check if current is null and then do current = firstNode. Seems a little bit messy. Any tips Thanks in advance! -Marlun The LinkList type built into the .NET Framework (in System.Collections.Generic) already supports enumeration, so you don't nee ...Show All

  • Gadgets Gadget permissions?

    I've been trying to find any information on the <permissions> element for gadget development and I can't seem to find anything. What are the other options aside from "full". What I'm looking for is a way to: lock down a gadget to the desktop and force it to the background (much like the old ActiveDesktop) change permissions or settings so that a standard lab user cannot modify, close, move, etc. the gadget make the gadget center screen regardless of resolution standard lab resolution is 1024x768 but there are a few machines out there with 1280x1024. so if I make a standard gadget at 1024x768 I want it to be centered so that it appears full screen on the same resolution but centered on a larger resolution. Anyone have any ...Show All

  • Visual Studio Express Editions idiots code book

    hi everyone, i am a beginner to vb as are many who post here, i am putting together a book that explains all code statements and explains how they work and what they are doing better then some of the books i have read. i there is anyone who can submit their error mesages and solutions that will be great, also i will be posting all kinds of command questions as i have already done to others on other posts and i would be gratefull for yoiur explanation comments. i want to start with accept changes why do i use it and wehn dio i use it, what is it for thanks Ok, I've just decided to put my book online. It will take a while though. It's about 150 pages long and I need to convert it to html. ...Show All

  • .NET Development Help!!! Fail to update Oracle CLOB column on HP-UX

    I tried to update one CLOB column in Oracle 9i, but the saved data in database is gibberish. It only happend when I use Transaction in .cs file. But if I remove the transaction related codes, it work. Environment: Client: Windows XP, Visual Studio 2005, System.Data.OracleClient 2.0 Server: HP-UX II for OS, Oracle 9i with American set as the Language and a character set of English US ASCII Here are the code using transaction (not working version): string selectSQL = "select configvalue from appconfig where configid = 1"; string newvalue = txtNewValue.Text.Trim(); // use "test value" at web form lock (this) { DataTable dt = new DataTable(); OracleConnection conn = new OracleConnection(ConfigurationManager.Connect ...Show All

  • SQL Server What is the best way to migrate MS SHarepoint Services web sites

    We are using MS SHarepoint Services web sites to host MS Reporting services reports. We want to take web sites from development to production servers. Smigrate is the recommended tool but that loses security settings. Does any one know when Smigrate will be fixed or if there is a better tool to manage MS SHarepoint Services web sites thanks ...Show All

  • Visual C# GDI+ Question: ImageAttributes.SetGamma

    Hi, I am getting unexpected results when I call ImageAttributes.SetGamma. Specifically, calling with a parameter less than 1.0 causes the drawn bitmap to be brighter, and with param more than 1.0 causes the bitmap to come out darker. At least something is happening, but I thought that higher gamma values are associated with increased intensity. (but this may just be my misunderstanding). Is this the way it's supposed to work Thanks for any help...(oh, here is a code fragment)... ImageAttributes imageAttr = new ImageAttributes(); imageAttr.SetGamma( newGamma ); Bitmap newBitmap = new Bitmap( this .Width, this .Height, this .PixelFormat ); Graphics g = Graphics.FromImage( newBitmap ); Rectangle rect = new Rectangle( new ...Show All

  • .NET Development Issue with Windows services

    HI, I have created a windows service which runs a batch file. I also set the "Allow service to interact with desktop" option on the log on tab of the service properties. This will open up the console when I start the service. Now when I install the service on Win XP and start the service it opens up a console ( the batch file is run when the service is started), but this does not happen in Windows 2003 server. Can someone tell me know what might be the issue Hi, The user with whose credentials I login has admin privileges ( the domain used for login is "this computer"). I install and start the service in this login only. I guess this will be the user that runs the service too. Will these privileges be not e ...Show All

  • .NET Development How come Console.WriteLine() does not work any more

    Hi all, I have a C# winform application. If users run it from the command lines and pass a /Help or / to it, it does not invoke the winform, but instead uses the Console.WriteLine to display the help and then exit. I know for sure this works before, at least prior to my upgrading the VS2005 with SP1. Now suddenly, the WriteLine() does not work any more. If I enter /Help or / , the WriteLine() basically executed but does not write any thing on the console. And then the program exits ...peacefully. Note that I debug the code and indeed the WriteLine()s are executed. Within the VS IDE, it does write the messages to the output panel. But from the DOS command, nothing is displayed. Here is the code: static int Main( string ...Show All

  • Windows Forms Help: DGV Combobox settings

    I almost have this working. For some reason I get an error message at run time, saying that "Field called StatusName does not exist." I know it does exist; I use it on a normal combobox on the same form. 1) Why do I get the message 2) What code changes do I make to achieve the objective (below) The code fragment is below: (replace -> by a period to convert to C#) -------------------------------------- dgvCpyList->DataSource = bindingSource1; dgvCpyName->DataPropertyName="CpyName"; dgvCpyPriority->DataPropertyName="CpyPriority"; dgvCpyID->DataPropertyName="idCompany"; dgvCpyStatus->DataSource=bindingSource1; dgvCpyStatus->DataPropertyName ="idStatus"; dgvCpyStatus->V ...Show All

  • Windows Forms Temporary Behavior, Need Help

    I am creating a control with a custom designer that should allow a data object to be dropped onto it, setting some properties. This object will be coming from another application. I've already been able to implement this by overriding the OnDrag events of the control's designer, but I'd like to do it "more correctly" by attaching a behavior to the control's body glyph and overriding those drag events. The idea being I could just add another behavior if I needed to support another drop source, as well as reuse them for other objects. This behavior/glyph should only be active during a drag operation, and more specifically during a drag from outside the process. Is there a clean way to do this Thanks ...Show All

  • Visual Studio Express Editions How??

    How can i generate those numbers Example: I create a textbox1 and i create a button1 And i want to show this numbers: 1234 and 123456 and 123456789 If you click button1 and button1 show this number in textbox1: This:1234, if you click again button1 show this: 123456 but if you click again button1 show this number: 123456789 how :: In Visual Basic 2005 Express Edition :: Please post the code ! To add a 'clear' only to a click, (between numbers): Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Static x As Integer = 0 Select Case x Case 0 : TextBox1.Text = "1234" Case 1 : TextBox1.Text = & ...Show All

  • SQL Server Unattended SQL 2005 Express install enabling Ad Hoc remote queries

    Hi there, I am trying to create an un-attended SQL 2005 Express install. I have successfully made my own template.ini file to install SQL the way I like but I cannot find a way to make it install with the "Ad hox remote queries" option enabled. Is there anyway to do this I can't seem to find any switches in the INI file to allow this. Thanks Joseph Beckett Hi Jens, Thanks for that, it solved the problem. The only thing I had to do was to add: sp_configure 'Show Advanced Options', '1'; GO RECONFIGURE; Before running your command. Once again, Thank you. ...Show All

  • .NET Development Access to SQL Database via TCP/IP

    Hello, I developed a sql database application. The application runs well on my local machine. Now that the application is tested I want to set up a client computer and access my sql database which is stored on my development machine. I just don't know how I can modify the connection string in order to access from my client computer Current connection string: Data Source=.\SQLEXPRESS;AttachDbFilename="C:\WC Database\WcDatabase.mdf";Integrated Security=True;Connect Timeout=30;User Instance=True Can anybody help me and tell me how I change my application from local access to access via network (TCP/IP). Thank's Try a connection string like so... Data Source=MACHINEN ...Show All

  • Visual Studio Team System Testing Policy Metadata

    Hello, I am just looking for information about testing policy, I was to create that policy but it asks me a metadata file, where is that file How can I create those files what does that file contains ...Show All

©2008 Software Development Network