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

Software Development Network >> 67RAM67's Q&A profile

67RAM67

Member List

Daniel Gary
Andy Hough
ron nash
davser
jaegd
A.Russell
Will.Rogers
Kevin Hoffman
dustinto
dmk70
__murph__
martona
Vijay Chegu
cashrolls2
Vladimir Chtepa
Andrei S.
mortiz2112
ChitownDotNet
三晋一枝花
Toby Leduc
Only Title

67RAM67's Q&A profile

  • Visual Studio Express Editions MaskedTextBox Help

    Hi, im having trouble with the 2 questions below. I have searched everywer for the answer, but couldnt find it!!!! so if ny1 no's the answer, please help! Question 1: I have created a button and a text box, and I want the buttons function to be "onclick, insert ^1 into textbox". how can i do tht Question 2: I have created a button and 2 text boxes, and I want the buttons function to be "onclick, copy text from text box 1 and paste it into textbox 2" + some extra text I want to show e.g. i want "Hello" to be copied from text box 1 and pasted into textbox 2 with "I am saying" text showing before the Hello I would realli appreciate it if some1 would help!!! ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Third Person Camera

    Hi sorry im not sure if this is an 'entry level' question or not, but... how would i go about setting up a third person camera, using the mouse to choose direction and the up/down keys to move forwards and backwards. i have been searching for days and days and found no tutorials and only one example, which i could not apply to my own code (i'm pretty new to this), so any help or advice would be greatly appreciated!! thanks oh and i am using directx9 and visual c++ sorry that might have been too much to ask in one question so i will rephrase .... could anyone tell me how, or point me in the direction of a tutorial which creates a camera that moves back and forth as the up and down keys are pre ...Show All

  • Visual C# Outlook add-In -> how to get Sender SMTP Address

    Hi, I'm trying to make an add-in for outlook and I need to grab the Sender Address; I'm using Microsoft.Office.Interop.Outlook.MailItem which has a SenderEmailAddress Property but when it comes from Exchange, it gives somethign like that: /O=ANALYSTIK/OU=FIRST ADMINISTRATIVE GROUP/CN=RECIPIENTS/CN=EPLANTE I have a book that talk about CDO using reflexivity but the example tells how to grab the subject but I don't need CDO for that! The MailItem object has it. On the net I found an example in VBNet that uses this method: Public Const CdoPR_EMAIL = &H39FE001E string o = (String)objSession.GetAddressEntry(strAddressEntryID).Fields(CdoPR_EMAIL).Value But GetAddressEntry doesn't give a result that has Fields. ...Show All

  • SQL Server SQL Server could not configure 'serverdados\repl' as a Distributor. ERROR 15466

    I have completely uninstalled and reinstalled SQL 2005 in same computer name Can someone point me in the right direction Here is the error I receive when I try to 'Configure Distribution' in the SQL 2005 management studio. TITLE: Microsoft.SqlServer.ConnectionInfo ------------------------------ SQL Server could not configure 'serverdados\repl' as a Distributor. ------------------------------ ADDITIONAL INFORMATION: An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo) ------------------------------ An error occurred during decryption. There is no remote user 'distributor_admin' mapped to local user '(null)' from the remote server 'repl_distributor'. Changed datab ...Show All

  • Gadgets MIME Types

    I am trying to serve our own gadget from our linux server and it keeps trying to come across as a .zip rather than a .gadget install file. Any help with what mime type to send would be appreciated :) ...Show All

  • Visual Basic visual basic

    hi can anyone help me i have just started using visual basic i am doing some work for college i have been ask to design a progra asking the user to enter their name ,address town postcode and phone number i have to create 5 tet boxs foer the information when i click for the second text box should it say text box two Agree on not hijacking the thread, but the "problem" I had with that was that I like to make my controls obvious what they are. So if it was a "textbox" that held a "name" then I would call it txtName <- text box with name txtAddress <- text box with address cboZipCode <-combo box with zip codes dpStart <- date picker with "Start" ...Show All

  • SQL Server ReportItemCollection

    I've asked this question in a few different forums and so far I've had not response, I hope I have some better luck here. I'm writing a custom rendering control to render very basic reports in WML. I'm stumbling at the first hurdle, though. I've added references to "Microsoft.ReportingServices.Interfaces" in my project and "Microsoft.ReportingServices.ProcessingCore" and I've added 'using' directives for "Microsoft.ReportingServices.Interfaces" and "Microsoft.ReportingServices.ReportRendering" in the code page. Now, according to the MSDN library, the Report object has a property called Body which returns the body of the report as a Rectangle object. A Rectangle object has a property called Repo ...Show All

  • SQL Server SQL 2000 replicate to Oracle 10g R2

    Hi all, I have some questions about replicate data from MS SQL 2000 to Oracle 10g R2: 1. Is it only SQL 2000 Enterprise Edition support replication 2. Is it the Oracle DB must install on Intel-based Windows server Thanks! Regards, Edwin Hi all, Thanks! 2 more questions. 1. Is it possible using transactional replication of SQL 2000 to replicate insert, update, delete data to Oracle 10g R2 immediately once execute DML on SQL 2000 FB 2. I am not familiar with 2-phase commit protocol. It seems SQL 2000 using this for replication Is it means any DML againat SQL 2000 (publisher) only commited if replication data commited on Oracle DB (Subscriber) Thanks! Regards, Edwin ...Show All

  • .NET Development Compiled Regexs on 64bit are very slow

    If I make a Regex object with a very large (but simple) expression, then setting the RegexOptions.Compiled option makes the regex take a very long time to execute (the first time at least). When I construct my object: BfMatch = new Regex(String.Format("^ ({0}) +(.*)",type_befores)); The code executes fine, but if I change it to: BfMatch = new Regex(String.Format("^ ({0}) +(.*)",type_befores),RegexOptions.Compiled ); Then when I later do: BfMatch.Match("short string"); It takes a very long time to execute The string I am using to construct the Regex is below. Can anyone else reproduce this My assembly is built for .Net 1.1 (ie, in VS2003) but is being called from an application built in VS2005. Regards D ...Show All

  • Visual C++ Failure to locate DebugCRT in DLL projects after VS2005 SP1

    I've been using VS2005 since it was released. I've learned a lot about side-by-side assemblies since then and have altered my deployment procedures accordingly and moved on. However, since I installed SP1 yesterday, the DebugCRT assembly hasn't worked properly for DLL projects, and right now I have no idea why. My first experience of this issue was debug versions of my applications failing on the machine they were built on with a 'MSVCP80D.DLL not found' error. Release versions of the application work fine. Debug and release versions built before SP1 was installed continue to function on this machine. Recognising this as a side-by-side assembly issue I started investigating. The embedded manifest in my DLLs reads as you would expect: &l ...Show All

  • Visual C++ Handling Ctrl-Break quickly and efficiently in a Windows GUI app

    I have a Windows GUI application written with Visual C++. When my program is busy, I display the hourglass cursor and want to allow the user to hit Ctrl-Break to signal my program to stop processing. To do this today, I use PeekMessage to watch for a WM_KEYDOWN message, check if it's VK_CANCEL, and if so, terminate my operation. The problem is that PeekMessage will return the first WM_KEYDOWN message that it finds in my message queue. So if I do not specify PM_REMOVE in the call to PeekMessage, then the WM_KEYDOWN for the Ctrl-Break could get hidden behind the WM_KEYDOWN for any other key that the user happens to hit. But, if I do specify PM_REMOVE, I'm not in a position to handle the keystrokes at that moment (because my program is bu ...Show All

  • Visual Basic Noob Database question

    Hello, please excuse this question from a total Noob! Im quite happy programmign away in the VB.net 2005 application that im developing, and i am displaying fields from my sql 2000 database, in data grids, in text boxes and all is well. But my question is this. how can i manipulate data fromt he database that isnt shown in test boxes on the screen, i.e id love to load some variables with values from the database is this possible the syntax is elluding me at this stage. many thanks and i look forward to some advice on an article that may help, Google just gives me back so many misleading articles! Your not binding data to a variable - your simply refering to an item in the ...Show All

  • .NET Development Windows Service .NET Runtime 2.0 Error Reporting and Event ID:5000

    I have a windows serivce developed in VS2005 running on Win2003 which read xml files from a local directory and saves them in SQL2000 tables. This service has been running for the last month with no errors. This week it generates the error below and stops. (the service is a manual one and is running as Local System Account). It is running on other servers with the same configurations. Source: .NET Runtime 2.0 Error Reporting Event ID: 5000 Category: None Computer: SSGP-SOP01 User: N/A Description: EventType clr20r3, P1 itdp.net2utils.ntservice.exe, P2 1.0.0.0, P3 45250dc5, P4 isc.edi.bll, P5 1.0.0.0, P6 45250db4, P7 3d, P8 3a, P9 system.exception, P10 NIL. Has anyone come accross this problem A. doesn't ...Show All

  • .NET Development Catch events in javascript from .NET usercontrol works in C# but not in VB.NET

    Hello all, I've created a .NET usercontrol and embedded it in an HTML page using the implementation found here http://support.microsoft.com/default.aspx scid=kb;en-us;305624 The Control Library was coded in VB.NET 2005. I can access my properties and methods from javascript with no problem. I tried to raise events in my UserControl and catch them in the HTML with javascript but I couldn't get it to work. Here are some methods I tried. <script FOR="uc1" EVENT="MyEvent"> alert("event fired"); </script> as well as I even read that VBScript "automagically" handles it by letting you define a script like this Sub ObjectName_EventName End Sub. This didn't work ...Show All

  • Visual Studio Tools for Office Visual Studio Tools for Office "V3" - InfoPath 2007: InfoPathVSTool_setup.exe cannot install

    I have been trying to install the InfoPath 2007 support for Visual Studio 2005 without much success (InfoPathVSTool_setup.exe). I have the Team Edition of Visual Studio 2005 here are the successful install messages: Event Type: Information Event Source: MsiInstaller Event Category: None Event ID: 11707 Date: 8/18/2006 Time: 11:21:07 AM Description: Product: Microsoft Office Professional 2007 (Beta) -- Installation operation completed successfully. Then I install the CTP for Office 2007: Event Type: Information Event Source: MsiInstaller Event Category: None Event ID: 11707 Date: 8/18/2006 Time: 11:26:48 AM Description: Product: Microsoft Visual Studio Tools for the Microsoft Office System CTP -- Installation completed successfull ...Show All

©2008 Software Development Network