Asmenedas's Q&A profile
SQL Server Do you regularly rebooting your server?
I would like to know if you reboot your SQL Server on a regular basis and why... I do not regularly reboot our SQL Servers. They do get reboots when patches adn service packs are applied, but past that, I have found no need to reboot the servers. ...Show All
SQL Server Sql Server Express 2005 Final and Windows 98 SE
Hi, is it possible to install SQl-Server Express 2005 on Windows 98 SE. And when not, is there any other alternative for me, without rewriting my C# Code which actually connects only with .\SQLEXPRESS or must i install msde. And when i must install MSDE, is there one available with SP 3a or 4 included. Thx Markus Markus, First, you can download MSDE 2000 SP4 from: http://www.microsoft.com/downloads/det ...Show All
Visual Studio 2008 (Pre-release) Canvas, Shapes, and Events. What's happening here?
I've noticed some interesting behaviour with events on a Canvas, and I was just wondering what is going on. I have a custom GridControl with a Canvas on it, that has a handler for the Canvas MouseDown event. uiElement.MouseDown += new System.Windows.Input. MouseButtonEventHandler (uiElement_MouseDown); I've added some PolyLines to the canvas, and I've noticed that if I click on the lines, then my event handler doesn't get called. So o ...Show All
Visual C# How does the RTC Client API Register with SIP Server?
Does anyone know which line of code or methods does the RTC API Registers the Client with the Server I was assuming the IRTCClientProvisioning::EnableProfile to be the interface that uses the specific profile to register with the Server using digest authentication. But it seems that something is missing or i am doing it wrong cause my client now has a profile created with help from aqhuj , can anyone guide me please on how I will ...Show All
SQL Server Ad Hoc Company Security
Is there a way in Ad Hoc reports to prevent users from querying data from another companies data In my database each table row has a company Id so that my application only displays data for the currently logged in users company. Can I inforce this in ad hoc reporting Thanks, Duncan You could create a view that displays only the data for the company of the current user and then grant permission only to tha ...Show All
Visual Studio Current statement markers
Hi, I am implementing a language package complete with a debugger and all (not using the regular VS debugger SDK, for certain reasons). Now, the debugger is working but right now i am using the bookmark marker as the current statement. I want to use the regular Visual Studio current statement marker, but it seems that the MARKERTYPE enum does not have any such option. Ofcourse i can replicate it by making my own marker, but i don't want to do th ...Show All
Visual Basic Imagelists and listviews
hi, I have a listview and an imagelist and a button, when i click the button i can choose a program and then it will add it to the listview, the only thing is is it doesnt add the icon as well, heres the code im usin for the button: Dim ofd1 As New OpenFileDialog ofd1.Filter = ( "Executable Files (*.exe)|*.exe" ) If ofd1.ShowDialog = Windows.Forms.DialogResult.OK Then Dim fi As New System.IO.FileInfo(ofd ...Show All
Microsoft ISV Community Center Forums Wildcards In Access
1x1 1x1x1 22x11 22x11x33 In Access does anyone know how to filter just for records with just one "x". Like "*[x]*" -- returns all records. Like " [x] " -- returns only 1x1. Hi JooK, Good question I don't think you'll be able to do it by filtering directly on the value because it's not the value your filtering on, it's the number of times a character a ...Show All
SQL Server Bug with SET options for table-valued functions.
Hi, I think I've come across a bug in SQL Server 2000 (SP3): If I create a table-valued function with the QUOTED_IDENTIFIER and ANSI_NULLS options both set to ON e.g. SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO CREATE FUNCTION dbo.tfn_Test() RETURNS TABLE AS RETURN (SELECT 1 AS test) GO Then when Scripting this function out again (or using external tools to analyse it - SQL Compare f ...Show All
Visual C# problem with datagridview saving event
hi all I'm newbie in c# I have a form with datagridview, and i also check validation when user click on button save of binding navigator. But this is my problem, first i input data, but then, instead of click on button save, i click another row, and system said that System.Data.NoNullAllowedException: Column <colum name> does not allow nulls Can anyone help me to fix it How to check validation when saving Thanks a lot ...Show All
Visual Studio 2008 (Pre-release) svchost.exe
I received this error on my pc renning windows XP SP2: The memory could not be read file name svchost.exe then I can not access the network .how can I solve this matter. thanks svchost.exe is the norton antivirus stuff. It si something wrong with your antivirus or internet security - that's why you are not access the network afterwords - system security does not allow it. Sorry ...Show All
.NET Development Using App.Config
I have the following problem: mmc.exe is the process that loads my .NET ActiveX. The .Net ActiveX uses some assemblies that are not in the gac I want to use app.config to configure my ActiveX with the location of the assemblies As I understood the way to do it is is to create a new AppDomain with AppDomainSetup and the loader automatically will use this AppDomain Shouldn't I do something more in order to instruct the loader ...Show All
Visual C++ How to spawn a thread from the main one?
Dear all, I am new to Visual C++ and I would like to get supports on how to write a multithreading application. In fact I came from UNIX/Linux background and I am trying to write a network application using winsock2. The idea is that in the main function program "main()", the application is listening do data from the network. The moment the winsock API function (recv or recvfrom) receives data and fill the receiveing buffer "A ...Show All
SQL Server Sample on how to import Flat File with vertical structure
Hello, I'm looking for an example on how to import a Flat file that is not a csv file but had data on several lines, a small indicator at the beginning of the line indicates what kind of data is on the rest of the line. Not every field is availabye for each block. Anybody got an idea on where to find this kind of samples. Thx. Harry, I think the inconsistency in which ...Show All
Windows Forms FindControl.
Hi everyone, Does anyone know what would be the similar of FindControl method from Web library to from Windows.Forms library I need to get what controls do I have inside a panel, like TextBox, etc. Thanks in advancing. Doria Apparently this method was left out of windows forms. Too bad, I can see cases where it would be useful. You will just have to iterate recursively through the Controls collection of your for ...Show All
