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

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

olichap1

Member List

SwitzMan
internettalk
AAAshish
Shuja
Den380
Jordan Sparks
traimo
Earlover
James Matthews 11
gontran123
Babylon
EppuTheHeppu
bkannappan
David Jehring
Bao Baboon
Mark Collins
AlexU
Jessard
SamSam698
beng2k
Only Title

olichap1's Q&A profile

  • SQL Server SSRS Parameter passed to SSIS as datasource?

    Hello, I've set up a report that uses an SSIS package as its datasource, connecting to a Datareader destination.  This is a piece of cake, but how do I go about passing parameters to the package   Any ideas Thanks, Steve ...Show All

  • Windows Forms creating controls at runtime

    I am building a web app that creates links or buttons or whatever at runtime and applies a name to each based on rows in a data table.  Does anyone know how to do this, I just want to have a dynamic set of links to other pages based on database row index (like userID), I am writing in C# Something like below  ...Show All

  • SQL Server SQL Express 2005 Configuration Manager - Cannot connect to WMI provider

    Hi, when I go to the SQL Server Configuration Manager utility, the following error pops up : Cannot connect to WMI provider.You do not have permission or the server is unreachable. Note that you can only manage SQL Server 2005 servers with SQL Server Configuration Manager. Access is denied. [0x80070005] This is on a Windows 2003 SP1 server, and the database is an upgraded MSDE 2000 database. The database itself appears to be working OK. My application can connect to it, I can connect to it via sqlcmd, etc. (all locally). I'm logged on as an Administrator, so permissions shouldn't be a problem. I ran FileMon to see which file it's compla ...Show All

  • Windows Forms picturebox overlaying

    I was wondering if anyone knows how to add a .bmp to a picturebox, and then take a textfile, and overlay the text in the textfile on top of the picturebox. From there I would like to save the contents of the picturebox (background image and text) into a single file...such as ExampleFile.bmp. Thanks for any help. Dennis Ok...I've figured&nb ...Show All

  • Windows Forms how to color cells of a column based on some condition ?

    Hi, I want to know how I can color the cells of a single column in a windows forms datagrid  - based on some conditions  Thanks, -Apurva. This site has a good example of how to do this, http://www.syncfusion.com/FAQ/WinForms/default.asp#44 Hope that helps ...Show All

  • Visual C# Transparent background

    Hi, Is it at all possible to give a label or another control a transparent background I want to display text, and in most cases the ability to click on it, without spoiling the background image of my panel or form. Regards,   Guido Aha! If I select the backcolor in the property window, the forecolor is alright. Before, I did so in the form constructor. A small bug ...Show All

  • Software Development for Windows Vista WWF Performance

    I created a simple console app to host the workflow engine and run a simple sequential workflow consisting of a while condition, a sequence, a couple of trivial custom activities, and an incrementor to kill the while loop after 10 iterations. On a fairly powerful developer machine, running a release build, running outside the debugger, performance measurements showed that it took about 1.0 second to load and unload the workflow and another 1.0 second to execute it. This does not include the time to initialize the workflow engine. For my application I would need these times to get down into the millisecond range. Is the c ...Show All

  • Visual Basic Cannot find KeycodeV2.dll, or invalid keycode

    Hi, I made a VB.NET application using Visual Studio .NET 2003 Pro that connects to an Access Database on a main server. The development machine operates on Windows XP Pro. The client machine is Windows 2000. I've been to many sites regarding this. So, I've already added the 6 merge modules (including Crystal_regwiz2003.msm and I have the correct Key Code obtained from having registered Crystal Reports and have tried the Key Code found under Help > About... > Crystal Reports), I have also registered crqe.dll on the client machine, bootsrapped the .NET Framework, downloaded MDAC on to the client machine, etc. And ye ...Show All

  • SQL Server SQL Server 2005 Express and ASP

    Hi! I have an ASP web application based on Access. I have DSN defined in ODBC Admin. I decided to upgrade to SQL Server 2005 probably Workgroup edition. Right now I am trying it with Express. I thought it will be fairly easy, because I was going to define another DSN using SQL Native Client and use it without changes to my ASP code. Not so easy. I can configure DSN and it tests fine in ODBC Manager. In ASP I am getting errors like Microsoft OLE DB Provider for ODBC Drivers error '80040e4d' [Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user ''. The user is not associated with a trusted SQL Server connection. What d ...Show All

  • Windows Forms need help with datagridview

    I have a datagridview with a comboboxcell. when a value is selected in that combobox, I want the datagrid to change the selected cell. What I mean is, I don't want to use the TAB key. It should jump automatic to another column in the same row. Could somebody help me I found an other way to get want I wanted. After a combobox selection in the datagridview, I used two events to handle my needs. first. private void orderregelsDataGridView_CurrentCellDirtyStateChanged( object sender, EventArgs e) { if (orderregelsDataGridView.CurrentCell.ColumnIndex == orderregelsDataGridView.Co ...Show All

  • Windows Forms cleared bound textbox reverts to original value

    I've got textboxes bound to number columns in a dataset that is _not_ strongly typed. When I want to clear a bound control of its value, I highlight the contents of the control and press the delete key (which doesn't seem to trigger the KeyPress event of the control). When I tab out of the control, it reverts back to its original value w ...Show All

  • Visual Studio 2008 (Pre-release) Textbox input validation

    Hi here i'm trying to enter some text into textbox but my problem is it accepts any data what i want is the input text should starts with alphabetics (a to z or A to Z) only. How can i do this Can anybody give me a simple code to do this Thanx - Nagu In the TextChanged event of your textbox, use a code that will find all the word in it and see if they start with what you want. Something like this : public void textbox1TextChanged(object sender, RoutedEventArgs e) { foreach(string word in textbox1.Text.Split(' ')) { // Use a regular expression to test word } } ...Show All

  • Visual Basic To VB 03 or VB EE, that is the question.

    I have an application that was programmed in VB 5 (yes, Five). I purchased VB.Net 2003 a couple of years ago to update my application by adding new screens, illustrations and generally make it pretty. A few days ago, I decided to get started on my updates and I found out about these forums and have read about the different versions of VB.  I am not much of a programmer, but seem to be able to get by, however after spending a week with VB.Net 2003, I'm not sure what I've got myself into, everything is different. I do need to print to paper (which seems to be an issue) and while not a true database, my application needs to read and write ...Show All

  • Visual Studio 2008 (Pre-release) DataContracts and COM

    I'm having problems trying to see the fields of a data class exposed through an Indigo service (attributed with [DataContract] etc.) from a VB6 client during the client's dev and wondered if anyone can help. The scenario is: I've got a service that I wish to expose to VB6 as a COM client. The service exposes a DataContract type which is used as a parameter to one of the service methods. I generated the client proxy from svcutil and compiled it into a dll that was marked as ComVisible(true). I then registered this using regasm /tlb (basically following the example from the WCF documentation). In VB I then referenced the type library create ...Show All

  • Smart Device Development Porting application to smartphone 2003

    Hi, I created an simple application using VS2005 (newProject/Smart Device/Device Application) i can run the application in PPC with windows 2005,2003. i also tested it using smartphone emulator for windoes mobile 2005. i can install the application in smartphone 2003 but when i select the application button the wait cursor appears for short period then nothing happens. i tried to convert my application project in vs2005 to smartphone 2003 but i do not see it. does it mean that i cannot convert application to the application for smartphone 2003 will really appreciate your replies. regards, raju i developed my app ...Show All

©2008 Software Development Network