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

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

Programmer654

Member List

Lawrence Sutton
zzy
JBeardon
Developr
Rune Gulbrandsen
msaeida
David Chicks - MSFT
destroy
Naresh Bhatia
lsdhjroiwefjnwsd
Metaman
pdb2
Dio1961
VistaMann
Greg 3.0
samur
bonhomme
Jeremy_B
Joysen
Qwavel
Only Title

Programmer654's Q&A profile

  • SQL Server SQL Express 2005 & Reporting Services

    Hi, Can you tell me if having SQL Express as your database will provide suffient licensing rights to use Reporting Services 2005 Thanks, Robert Bruckner MSFT wrote: Announced at TechEd 2005 last week: http://www.microsoft.com/presspass/press/2005/jun05/TechEd2005Day2PR.mspx "With this CTP, customers and partners will be able to test the business intelligence components included in SQL Server 2005. To increase customers' and partners' abilities to utilize business insight capabilities, Flessner also announced that Microsoft will extend SQL Server 2005 Reporting Services from Standard and Enterprise Editions to all version ...Show All

  • Visual C# right button mouse menu

    Is there any site to see code about pressing right button mouse menu over a button (or image...)    i find this... http://www.c-sharpcorner.com/2/mouse_events.asp but i want find a real program which use it. Thx this might be of use : http://forums.asp.net/1132323/ShowPost.aspx ...Show All

  • SQL Server RE-Using passed parameters

    Hi All  I link to a report passing parm a,b,c (3 parms) a (Hidden), B(Multi Selection), C(Single selection), the report display correctly  and the parm selection boxes display with available options. I would like to be able to choose from the selection boxes and replace the initial (passed parameters) B and C would have a new value, and display the same report using the selected criteria. Thank you Trentino     I can't understand what you are asking. You want to link to the same report with new parameter values Or you want to just select different values Maybe ...Show All

  • Visual Studio How to read and write ".dng or dwg" file in C#?

    Hello Keith, My code: FileStream fs = new FileStream (pictureName, FileMode .Open); BinaryReader br = new BinaryReader (fs); DataRow row; row = aDataSetImage.Tables[0].NewRow(); row[0] = br.ReadBytes(( int )br.BaseStream.Length); the coding above I's used to read a file into byte[] but I can't some file which were be format ".dng and dwg". Can you help me to read those files I look forward to your relay as soon as possible, Thanks, Starfo Hello Starfo, I can't help with that, .dng and .dwg are files that I have no experience working with. Keith - Business Objects ...Show All

  • SQL Server SQL Authenfication

    Hi, i m trying to connect to msssql 2005 with SQL Authentication .but without success. "Server authentication is set to SQL Server and Windows Authentication mode". on connect i recive this error "Login failed for user ''. The user is not associated with a trusted SQL Server connection. [CLIENT:]" any help would be nice Luka How are you trying to connect Programmatically with a connection string or some tool It seems as the connection is still attempted to be made with windows authentication. If you need help with the connectionstring try http://www.connectio ...Show All

  • .NET Development How do you fix the error "Syntax error in UPDATE statement"?

    Guys, I need your help to fix this error since it's been bugging me for 2 weeks already to find a solution in the internet or book that won't work properly.  I tried fixing the update statement command but still shows the same error. Below is the source code: Public Sub changePassword( ByVal uName As String , ByVal pWord As String ) Try 'change the user's password Dim conn As System.Data.OleDb.OleDbDataAdapter = New System.Data.OleDb.OleDbDataAdapter Dim cmd As System.Data.OleDb.OleDbCommand = New System.Data.OleDb.OleDbCommand changeUserPasswordDataSet = New System.Data.DataSet con ...Show All

  • SQL Server SQL authentication traffic for Mixed mode

    Hello, SQL server 2000 authentication mode has to be set as mixed mode because the application - called Great Plains has to do that way for some legacy reson. I am wondering whether the authentication connection strings destined to SQL server for authentication will be encrypted(not in clear text) because it inclues the user credentials. Thanks for your comments here. certificate configured by a user is the one which is installed on SQLServer box. Perhaps description from BOL will explain things better Thanks, Ruslan Configuring SSL for SQL Server To configure SSL, first install a certificate on the Databa ...Show All

  • .NET Development Thread and ProgressBar

    Hi guys, I have a problem with changing the value of the ProgressBar in a Thread method. Here is the code.This is a simple windows form with a progress bar and a cancel button to stop the progress. using System; using System.Drawing; using System.Collections; using System.Windows.Forms; using System.Data; using OpenNETCF; using OpenNETCF.Threading; using System.Threading; namespace ProgressBar { /// <summary> /// Summary description for Form1. /// </summary> public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.ProgressBar progressBar; private System. ...Show All

  • Windows Forms Global object

    In a particular app, an object is instantiated as from a frameset form1 pops up for collecting data that user enters to fill in some of the object's properties. Upon clicking a button, form 2 pops up for user to enter more data and fill in more properties of the object. This scenario continues with additional forms in a common frameset... At  ...Show All

  • Visual C++ Greyed out class member functions in wizard bar / Class View goes to .h

    In VS2005 I'm finding that some (C++) class member functions are greyed out in the wizard bar (the horizontal toolbar at the top of the editor window with 2 dropdown lists, classes and class member functions). Also, if I double click on these ones in the Class View (tree control) I go to the declaration in the .h file rather than the definition in the .cpp file. Why is this I can't see anything too odd in my code layout and in VS2003 this was not happening. Is this a new 'feature' If it's a feature, is it possible to turn it off, as navigating my code is no fun at the moment TIA. Pete I think the graying out indicates ...Show All

  • Microsoft ISV Community Center Forums Multithreading, Callback & VBA in PowerPoint 2003

    Hi, I'm currently trying to get to work a VBA application which uses an external DLL (which I program parallely). The DLL starts a separate worker thread which calls a previously registered VBA callback function. This works perfectly (e.g. I can do a MsgBox "I was called with argument " + str(arg)) but if I try to change a slide in my slide show, PowerPoint says that "Hyperlink ^0" doesn't exist and crashes. At the end of this post I put a little bit of code in order to explain what I'm trying to do. If I call the VBA procedure *not* inside the thread (e.g. in a method of MyObject), it works, so I think it has somethin ...Show All

  • Visual C# finding c# memory addresses using visual studio debugger

    i'd like to find the addresses of 2 variables to make sure it's not the same address. i did this easily using c++ and breakpoints in the debugger but i can't find the variable addresses in c#. thanks. matt You can test if two variables are referencing the same object by using the Object.Equals method. You can use the immediate window to run the test, if you need. In the .NET Runtime, the physical memory addresses of objects may change when the garbage collector runs, and so the debugger does not display physical memory addresses. The only time the addresses should ever matter is if you're u ...Show All

  • Visual C# Refresh URL

    I want to find the user's public IP address. To do this I am using a hidden WebBrowser control that navigates to http://www.whatismyip.com/ . I then use a Regular Expression to get the IP. Every 10 minutes I want to check if the IP has changed. Currently, I am using WebBrowserControl1.Refresh() to get the new IP but it does not work - I always get the IP that was found when the program first started. If I restart the program I get the new IP address. How do I get the new content of the page rather than the old content using System; using System.Net; using System.Web; using Syst ...Show All

  • Visual C# Process & WaitForExit & OutputDataReceived

    . Rob, This is from a larger project so I've tried to cut and paste the relevant bits.  This took ages of trial and error to get working. Hope you can make sense of it. Cheers Steve The process is started from a class that also has a Windows form (to show progress).  The sendclip method starts the commandline process which returns as soon as the process is started - as then events take over.  The show dialog displays the form and kind of forces a 'wait'.  I use events to close the form when the process finishes and things carry on this.sendclip(clip, clip.Partialcommandline, Qsyst ...Show All

  • SQL Server SSEUTIL -run question

    If I do the following: sseutil -create test.mdf sseutil -attach test.mdf sseutil -run testscript.sql it seems the first line in testscript.sql has to be use "<fullpath>\test.mdf" , or the script runs against some other database (which one, I'm not sure). It makes we wonder what the attach is doing. Anyway, I'm looking for a command file way to create and define a database that is not tied to a directory structure. In other words, the commands above may be part of a .bat file, and many different developers may try to run this on their pc in an unknown directory. Any ideas or pointers greatly appreciated! ...Show All

©2008 Software Development Network