ccutrer's Q&A profile
Software Development for Windows Vista Windows Security
This is probably the wrong place for this but maybe one of you can help On my machine when I press ctrl alt delete a windows security box comes up. On another machine with the same OS only task manager comes up. How do I get it to open the windows security instead Thanks If the security system is turned off, e.g. on Windows XP with the welcome screen and fast user switching turned on, Ctrl-Alt-Del directly invokes the Task Manager instead of the Windows Security dialog. ...Show All
Visual Studio Tools for Office Downloading XML Data in Access
I have an access application that needs to download a set of XML files on a weekly basis. I then load this data into my application. The developers of the site i'm downloading the files from have provided a URL to which you post an ilogin and ipassword variable. You are then supposed to get a reply of OK or failed. After authentication, session should be created with Session Key ("XMLSessID") passed as a cookie... I would then need to go and Load and Save each of the XML pages, using this authenticated session. Without embedding an IE browser into the MS Access application, how could i do this Thanks! -Ben Hi Ben Well, this forum doesn't cover cookies or MSXML either . for that, if you're us ...Show All
Smart Device Development Your own installation
How can i make my application use it's own installation Like this: *Click: setup* Alert: Are you sure you won't to install this program Install Don't Install: *Install* *first screen: Welcome to ***** [[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[* *Second screen: where do you want to save the file * *third screen: Installing -----------------------------* *fourth screen: Thank you for installing this program* Why dont you want to use the CAB route If you want to write your own installer, it would be easy to do so - just write an executable which uncompresses the rest of the files and puts them in the right folders after displaying the right UI ...Show All
Visual Basic AutoScrollPosition property setter didn't take the value
Hello All who interest to share idea. I gone through the history of the question posted , here I see that the answer to them where has mentioned that I works, I try accordingly but it doesn't work. The issue is , what ever value ( positive or negative value ) we set for this property it doesn't take ,it always has value of empty point {0,0} says I set the value as bellow Me.AutoScrollPosition=new point( 100,200) or Me.AutoScrollPosition=new point( -100,-200) when I trace the value of me.AutoScrollPosition during debug I always get x=0 and y=0 or in another word empty point indeed its Empty property is True. Many guys asking for the answer for this but I didn't see any of them is a real working answer. I don't know why it doe ...Show All
SQL Server database trigger question
Hi I am trying to setup a trigger on a database where the trigger fires off a store proc when there is an insert. For some reason, its working on a database in Dev and not on a database in QA. the trigger is on an insert to a table, the trigger looks something like this create trigger XXX after Insert SET XACT_ABORT OFF -- this so that when the proc attached to the trigger fails, insert it anyway exec updatesomething if @@error <> 0 exec createAudit In dev, the row is inserted, but in QA the row is not. I did a trace, both have the SQL:BatchCompleted event of the insert sql statement, but in QA environment, the trace does not have the sql statement after exec updatesomething. it just stops at exec updates ...Show All
Windows Forms binding source - seeking to understand a logic
hi, i have a dgv with a navigator,. okay now both have a source a binding source bs. bs has datasource an object, ex. class person - name, phone1, fax. now, my bs is set at design time to the object so i get the columns and can reorder etc . when at run time, i ran a stored procedure to get values from my database,each variable comes from 1 table and this is my preferred method. okay still good. i get the values which are stored in a datatable,. i then change my bs.datasource = thedatatable, remember at design time, it was bs.datasource =myobject. Where i do not understand is that my grid is keeping the same layout as i did at design time, and the values are filling in the grid nicely., is that coincidence or a prop ...Show All
Visual J# Vj# control not working in IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519
we are hosting vj# control in IE which is not working in particular version of IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519 which seems to be the latest and greatest version of IE which we upgraded by isntalling it through the windows updates (both high priority and optional updates ). please advise how to make it work in the latest version of IE. pleas advise, Here is the sample code. homepage.htm <HTML> <BODY> <IFRAME name="leftframe" src=" http://www.google.com " APPLICATION="yes"></IFRAME> <IFRAME name="webwindowsframe" src="Page1.htm" APPLICATION="yes"></IFRAME> </BODY> </HTML> page1.htm <HTML> <BODY&g ...Show All
.NET Development DataAdapter.UpdateCommand don't work
Hi, Can someone explain why this code lines don't work Dim cn As OleDbConnection Dim da As OleDbDataAdapter Dim ds As DataSet cn = New OleDbConnection( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=H:\ISEL\PFC\V 2005\bin\Basedados.mdb" ) da = New OleDbDataAdapter( "Select * from CircuitosDados" , cn) Dim builder As OleDbCommandBuilder = New OleDbCommandBuilder(da) builder.ConflictOption = ConflictOption.OverwriteChanges builder.QuotePrefix = "[" builder.QuoteSuffix = "]" ds = New DataSet cn.Open() da.Fill(ds, "CircuitosDados" ) da.InsertCommand = New OleDbCommand( "(Origem, NoCircuito,FonteOrigem,NomeQuadro) Values (' ...Show All
Visual Studio Express Editions COM class error when using Microsoft Word
I am using an app with a spell check feature. Microsoft waord is the application that I am using. Recently I have started getting the following error: Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 8007007e. The error seems to be generated by the following line of code: The application crashes at this line every time a spell check is initiated. The code that creates an instance of Word seems to be the problem issue. Am I missing something Again remember that this app was working fine for a month. Dim objWordApp As New Word.Application I Import the following namespace. Imports Microsoft.Office.Interop I believe th ...Show All
SQL Server Connect IIS to sql server 2005 db
I have developed a website that connected to sql2000 db Now that I have upgraded to SQLserver2005, I always get the follwing message after launching the website: Microsoft VBScript compilation error '800a0401' Expected end of statement /iisHelp/common/500-100.asp , line 11 Dim objASPError, blnErrorWritten, strServername, strServerIP, strRemoteIP Dim strMethod, lngPos, datNow, strQueryString, strURL --------------------------------------------------------------------------^ Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][Gestionnaire de pilotes ODBC] Source de donnees introuvable et nom de pilote non specifie /FMCQ_Web/Include/Modules/modADO.asp , line 18 I have tried different th ...Show All
Visual Studio 2008 (Pre-release) Is this working? --> void IExtension<ServiceHostBase>.Detach(ServiceHostBase owner)
All, When I run the sample WCFWFSession solution - service project - under the WNetFXCrossTechSamples the following breakpoint never stops: void IExtension <ServiceHostBase>.Detach( ServiceHostBase owner) { // When this Indigo Extension is detached, then just stop the WSC workflowRuntime.StopRuntime(); } But the Attach does... void IExtension <ServiceHostBase>.Attach( ServiceHostBase owner) { // When this Extension is attached within the Service Host, create a // ...new instance of the WorkflowServiceContainer if (workflowServicesConfig != null ) workflowRuntime = new WorkflowRuntime (workflowServicesConfig); else workflowRuntime = new WorkflowRuntime (); w ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DrawTransform problem - looks like a DriectX bug
Hi there, I use Line.DrawTransform to plot some 3D lines. They all plot fine, however when I start moving the camera forward all lines that are in the direction of the camera move "jump" to infinity when I clip the near plane (it is my guess that it is the near plane). Could you please help with some advice. My hunch tells me that it is a rather obvious problem for more advanced game programmers - too spectacular to miss :) There is not much in the code, really 1. I define the lines in a Vector3 [][] v3Lines = new Vector3 [1][]; 2. Draw the lines with float FieldOfView = ( float )( Math .PI / 4); float aspectRatio = this .Width / this .Height; //1.0f; float zNearPlane = 10.0f; //pure guess for this ...Show All
SQL Server Dynamic create table
Hi, I need to create a table....whose column names should be dynamic...I wouldnt know in advance what the column names would be...These coulmn names are availabe in another table as rows... Ex: TABLE_A Data Column Names Col1 Col2 Col3 Col4... Some column Names are known already...I need help in writinf the Create table statement.. I need to write something like Create table Table1 (SerialNo int,Name nvarchar(50)+ AS select * from TABLE_A + Address nvarchar(500)).... Now the Table1 should look like Serial No Name Col1 Col2 Col3 Col4 Address Can some one please let me know how can i accomplish this...I know i need to write a Dynamic Query but dont exac ...Show All
Windows Live Developer Forums Error tryiing to change domains
the specified service does not exist as an installed service. I get this message on a couple of Windows 2000 machines when I try and join another domain. Can't find anything about it Please help ...Show All
Visual Studio Team System error whyle tryng to export to excel
When i try to export a report with a Matrix i get this error: Hi there, Checkout the SQL Reporting Services forum: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=82&SiteID=1 they should be able to help you. Mauli ...Show All
