aurelio1's Q&A profile
Windows Forms Form at back
Hi a form that is loaded goes to back behind my main form. My main form loads and does frmUpdateNews.Show() frmUpdateNews.BringToFront() but that dosn't work. I even tried putting it on the main forms click event and still no luck Nope, i put it directly into the formLoad of my parent form and made nothing else in there and still it sets parent form to focus. I even made the first form to load the parentform and still it aint working... I started a new prog, and tried it again. It is the MDI form's fault, there is a problem ...Show All
Visual Studio Team System URL Encode option for QueryParameter does not work
In a webtest's QueryString Parameter, there is an option to specify whether you want to URL encode the value or not. However, this option seems to be ignored by the webtest engine. Let's say that I want to send a > symbol as it is - not as %3E but as >. (yes, I know RFC 1738, but this is a TEST for my app). So I specify > as value in the UI and say "False" for URL Encoding. However, when the webtest engine sends the request, it ignores that user's specification and still sends the encoded version. In IE, it works - I can specify this in the browser's address and IE will actually send out that character. Is th ...Show All
.NET Development Creating CLR Assembly
I recently stumbled accross IronPython and was very intrigued by how the CLR could understand Python code (and could even use full debuging capabilities with it). I am interested in learning how to do something similar for another language. I believe what I am looking to do is manually create a CLR assembly from code that I am parsing My actual problem is I'm just not familiar with the terminology involved with this work, so my searches have not turned up many useful results. Are there MSDN or 3rd party references on how to do this I have been digging through the IronPython code, but trying to teach myself something ...Show All
.NET Development DVD Burning component
I'm currently using an obscure ActiveX control (DVDWriterPro2) for DVD burning in my app. I have been having stability issues with this control and would prefer something that doesn't have to run on a visible form and is a pure .NET component. I know Nero has some sort of SDK available and Roxio licenses their Authorscript burning technology (probably at a premium), does anyone have experience in this area Thanks, Luke Unfortunately this only supports CD's. I hear Windows Vista will have native DVD burning but as far as I can tell thats still about a year off. ...Show All
Visual Studio Tools for Office List to install to develop office application using .Net...
Hi everybody, Can anyone tell me exactly what need to install to be able to develop office applications with .Net like Excel Please provide exact name of package. Thanks. Installed in pc: VS 2002 Professional Edition (.Net Framework 1.0) Visual C# 2005 Express Edition (.Net Framework 2.0) MS Office 2000 Professional den2005 ...Show All
Visual Studio Express Editions Program ignoring double click
I am having issues with a program I'm making. I have several labels, and the single click command sets a variable to a certain value based on which label was clicked and then runs a subroutine. I also have made an event for a double click, which opens a new form to input data. The problem I encounter is that the program is ignoring the double click event because while the second click happens it is in a large subroutine. I know that this is the case because if I quote out the command to run the subroutine on the single click event then the double click event works. I have tryed changing the speed of my double click in windows and I know that ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Fix Found Windows XP Pro, DirectX 9c install completed ! I cant Install Directx 9.0c December 2005 dsound.inf problem
When I try install Directx 9.0c December 2005 Redlist I Envisage with this Error : "An internal system error occurred. Please refer to DXError.log and DirectX.log in your Windows folder to derermine problem." I several time download Directx 9.0c December 2005 and November 2005 but everytime I Envisage with this error and when I go to DXError.log and DirectX.log see this Problem with dsound.inf : -------------------- [01/05/06 01:40:11] module: dsetup32(Sep 28 2005), file: setup.cpp, line: 6443, function: CSetup::InstallDirectXInfsFromInfSection Installation of 'C:\WINDOWS\System32\DirectX\DX113.tmp\dsou ...Show All
Visual Studio Adaptation
I want my add-in to be able to respond to a mouse wheel event while a document is active in the Visual Studio text editor. My immediate goal is to bind Ctrl+WheelUp to PgUp and Ctrl+WheelDn to PgDn, but it would be nice to have this adjustable. I just don't know how to respond to a mouse wheel event. Thanks, Sam Hai Sam, If your question is for VS.NET 2003, then I 'm afraid there is no events available that can help you to capture those Key Events. The available events with the DTE are as follows; windowsEvents = (EnvDTE.WindowEve ...Show All
Smart Device Development Redistributing static libraries?
I have a static library which is currently available on Win32, Win64, Mac OSX and Linux. However I'm interested in a qualified opinion if it's realistic to create static libraries on Windows CE My library is written in C++ but exports a C frontend. However I'm in doubt. There exist atleast 4 different processor types (x86, mips, sh and arm) and on top of that lots of different SDKs. I mostly only use CRT functions, STL and a few Windows specific functions but I sense I could be in big trouble as far as compatibility goes. As I found out ( http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=111412&SiteID=1 ), there are problems when m ...Show All
SQL Server SSIS remote connection failing ... local connection OK
I'm getting "Access denied" error when I try to connect to SSIS from my desktop (Database Engine is fine). I'm a member of sysadmin within SQL, as well as an administrator on the server. I don't have any problem when I log on to the server directly via Remote Desktop and open SSIS. I went into the surface area config tool, and I see that Database Engine and Analysis Services both expand and have a sub tabs to enable Services and Remote Connections, but Integration Services does not expand to a Remote Connections option, just Services. We're running MSDN Enterprise edition. Does it matter if all the SQL services are using &qu ...Show All
.NET Development well format xml
Hi, I get an xml file, which is not well formed, it's structure is like: <groups> <group> <name></name> <desc></desc> <items> <item> <name></name> <desc></desc> </item> </items> </group> </groups> As you can see, the problem is, that some nodes are defined in different mapping types. I can't do anything with the xml input as I don't generate it. How can I well format it without much of work In fact I need to load it into a dataset. My personal idea was take a regular expression and ...Show All
SQL Server SQL Memo datatype
I hope I'm in the right forum I have a simple VB.Net application that records Engineering Change Requests. Currently I'm using varchar fields to record proposed changes. I'm using varchar since I don't know what the datatype is equal to the MS Access Memo datatype. I did look in the help files with limited success. If I remember correctly it said that you can use the Image datatype to store large amounts of data. When I tried to creating a select statement in VB.Net with an Image datatype field, VB said that it can't handle that datatype. Help Thanks David Davis In SQL Server 2000, yo ...Show All
SQL Server Using "IN"
I've got two tables. My first table, tblProducts, has a varchar field that contains comman delimited list of IDs from tblSizes. I'm trying to select retrieve each row from tblSizes where their ID is listed in the "Sizes" column of tblProducts. I was trying to use "IN" with the following statement but I get this error: Conversion failed when converting the varchar value '1, 2, 6, 3, 4 ' to data type int. Here is the SQL: SELECT LongName FROM tblSizes WHERE ID IN ( SELECT Sizes FROM tblProducts WHERE ID = 1 ) The error is pretty straight forward, but if I can't use "IN" for this what can ...Show All
.NET Development Embeddable database or DBF Library?
I have been using the Pocket Access database format for my applications as they do not need SQL Server and the customers do not need SQL Server / MSDE on their desktop. I don't feel that XML is a valid option for a database but I may be wrong. Any alternatives to Pocket Access and or SQL Server would be appreciated. I was wondering if anyone had seen a DBF library in C# that can be used in the Compact Framework. Thanks in advance for ANY help or suggestions. RE: I could accomplish the same effect with code as you stated above but I would basically be writing my own database correct Well, .Net handles most o ...Show All
SQL Server Get trailing spaces when import data from FoxPro
Hi, We have a problem regarding the Visual FoxPro OLEDB driver. When we import data from FoxPro into SQLIS using Microsoft OLE DB Driver for Visual FoxPro, all string fields get spaces upto the it's field length. Example: Column A has a length of 10 characters. If we insert "bob" into that field in FoxPro and then read it from FoxPro and store it into SQL server. The resulting value in column A in SQL Server will be "bob ". We are reading data from booth Visual Fox Pro and FoxPro using the same driver, we can't seem to find any OLE DB driver for FoxPro. We have a solution which is to trim ...Show All
