Blake01's Q&A profile
Visual Basic ink recognize
im trying to get the ink to recogznie as soon as the inkedit loses focus or the pen moves off it.. the globalinkedit control has ink in it but when i force it to recognize there is no text...what am i doing wrong Thanks, Dan Public Sub PopInkEdit( ByVal sender As Object , ByVal e As EventArgs) AddHandler GlobalInkEdit.MouseLeave, AddressOf disposeInkEdit AddHandler GlobalInkEdit.LostFocus, AddressOf disposeInkEdit End Sub Public Sub disposeInkEdit( ByVal sender As Object , ByVal e As EventArgs) GlobalInkEdit.Recognize() ctrl1.text = globalinkedit.text End Sub the inkedit and the text ...Show All
SQL Server SQL server Groups
Is it possible that i can create a SQL Server Group in sql 2005. Eg. in 2K when u right click (in Enterprise manager) on Microsoft Sql servers you can see "New Sql server Group". I am talking about this group. I have many servers in NYC and Dallas and in VA. I want to group them in the group names NYC DAL VA. is it possible. I have sql server 2005 client tools with server on sql server 2000. now i can form groups in 2000 but i cant see them grouped in 2005. i just see the servers registered in 05. i cant see them as i can in 2000. if u still have problems then i will send u the screen shot. ...Show All
Visual Studio Express Editions Registration benefits
I just read the announcement about the benefits of registration. I already had registered so of course it didn't let me register again. Is there a way to still get the downloads or should I now know never to register an MS product until they have some registration benefits announced hotchilidamo, I am not Microsoft nor speaking for them. I have registered all express editions. Last time I checked (a day ago or so) I could download 9 items as benefits from http://connect.microsoft.com . I know some users had to wait a day or a couple before they could see all the benefits they could take part of. I also know that the website has been unavailable for myself a few times, but I tried it later and could ...Show All
Visual C# scheduling
Hi all, I have written a windows application in Visual C# and I want to make so that it schedules itself to run once daily when its installed. Does anyone know how I can do that Thanx in advance Dear Fellows, Every body knows that every version of Windows i.e from 95 to Vista has the schedule task but this is a Programming forum so while answering a question one will always reply with a solution in programing. So I did it that way. This is C# Language forum not the Windows XP forum so I assume all questions asked here are somehow related to perform a task prgramatically. Solution of Windows service is not dependant on user, The accound under which it run can be changed with a single property of Windows Service. Best R ...Show All
SQL Server encrypting connections to sql server 2005
can you please tell me how can i encrypt data sent between client application and sql server 2005. Hi, thats quite easy, you can do this on the protocol layer: http://support.microsoft.com/kb/316898/en-us HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
SQL Server Slow Running Insert After Changing OLE DB Destination Data Access Mode
Hello, In a Data Flow Task, I have an insert that occurs into a SQL Server 2000 table from a fixed width flat file. The SQL Server table that the data goes into is accessed through an OLE DB connection manager that uses the Native OLE DB\Microsoft OLE DB Provider for SQL Server. In the OLE DB Destination, I changed the access mode from Table or View - fast load to Table or View because I needed to implement OLE DB Destination Error Output. The Error output goes to a SQL Server 2000 table that uses the same connection manager. The OLE DB Destination Editor Error Output 'Error' option is configured to 'Redirect' the row. 'Set this value to selected cells' is set to 'Fail component'. Was changing the access mode the simple reason ...Show All
SQL Server Enable and disable websync.log
Hi, is there a way how to enable / disable logging on web merge synchronization into the file websync.log The file exists in the ISAPI folder, on some machines there are some messages, on others there is nothing. There are Timeout messages on the client during synchronization and we need to find where is the problem, if it is on the server side or if it is a network error or something else. Thanks, Pavel The web sync log should be enabled by default. On the IE replisapi.dll diag page, what do you see the status as ReplIsapi Settings: Property Value SNAC version (sqlncli.dll) 2005.90.1399.0 Logging Enabled TRUE Log Severity 2 Current Log Size 6735 ...Show All
SQL Server Connecting to Database on a Server
Hi, I'm new to SQLExpress, and I need some help. I am trying to create a SQL database that will sit on a shared server in our organisation. I go into SSMSE and click on New Database which takes me to the New database screen. I now want to change the default path name to our server name, but when I click on the Locate Folder button (...), it only allows me to select folders from my Local drive. Is this a limitation of SQL Express, is there a way around this... Thanks in advance... Thanks Glenn, Even if I do all that, I can't connect to any database except for the ones on my hard drive. I have even tried attaching databases in SSMSE and it only allows you to attach Local databases. There is now ...Show All
Visual Basic generating variable names
Sorry to be so stupid but I'm new and as yet have been unable to find a post that answers my question by searching. What I am trying to do sounds straight forward to me - but I can't do it. I want to be able to define and access variables from a string. Eg Instead of dim variable1 as integer dim variable2 as integer dim variable3 as integer dim variable4 as integer dim variable5 as integer dim variable6 as integer I want to be able write a for loop that defines all something like dim counter as integer for counter = 1 to 6 dim variable & counter as integer next counter Needless to say there aren't 6 variables (and for that matter nor is the code quite so simple) Similarly I might want this so t ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Creating .tga UVwrap for XNA?
Hi, I am new to this, but I have 3ds max and the DirectX SDK along with XNA GSE. In the tutorial they have a model (.fbx) and its texture wrap (.tga). I want to use a different model. I import one into 3ds max and it loads and the textures/materials are wrapped on it. I export the model to .x (which XNA can use too I believe) and now need to create a .tga that XNA can wrap it with. Thanks for the tip to this. Darren You have to assign the material to the object in 3D Studio MAX. I would search around for some tutorials on the subject that would help you get started. http://search.live.com/results.aspx q=3D+Studio+MAX+Texture+Tutorial ...Show All
Visual Studio SourceSafe automation VersionNumber question
I am writing a C# application to retrieve information about projects from SourceSafe. It will allow the user to select the database and retrieves all root level projects. Once the user has selected a project, it will retrieve all version labels that have been applied at the root project level. The user may then select two version labels and get a list of files that changed between those two versions. My problem is that as I iterate through the files in the subprojects, and request the item for each particular label with something similar to itm.get_Version("Version 1"), if the file was added after that particular label was applied, I can't find anything to indicate this fact to me. The VSSItem returned is not null, although the V ...Show All
Visual Studio Javascript Debugging With IE7
Hello, I have ran across an issue debugging an ASP.Net page after installing IE7 on my development machine and I have not been able to find a solution. I am using Visual Studio 2003 and I am no longer able to access the rendered source (including embedded javascript which is emitted in the code behind) using Debug -> Windows ->Running Documents -> Page.aspx When I click on the running page in the Running Documents , all that displays is the source page and not the page that is running in the browser. Doing these same steps in IE6 worked fine. Also, note that the debugger statement does break but only shows the source page (not the running page) in Visual Studio and places the break at the end of the </html> tag. Therefor ...Show All
Windows Forms folderBrowserDialog for server-side directories ?
On a multi-tier app, I want a FolderBrowserDialog for user's to launch on their machine, but the drives/directories I need to display should be the server-side drives/directories. Before I go and re-invent the wheel, does anyone know of any existing examples of doing this For client side browsing, it's one line of code. But for displaying server-side drives/directories on the client, I get the feeling this will be lots of code. Unfortunately UNC paths are ruled out, I need things like C:\SomeDirectory to be the C:\drive on the server. Thanks, Andy. There is very little hope that you'll be able to fake FolderBrowserDialog into making it believe that a share is actually something like a C: ...Show All
SharePoint Products and Technologies override the built-in function
The post " Understanding Excel Services UDFs " say : Developers create custom calculation packages to provide: Custom implementations to built-in functions. Does it mean i can override the built-in function I implement a udf named Rand() which is a built-in function in excel. [UdfMethod] public string Rand() { return "test"; } However it return a random number . That is not my not expect result :( Any suggestion That is a good question - the documentation is somewhat confusing. All that line means is, that you can create your own version of a function - but you cannot overload or override it. To do what you want, you will have to create a UDF called something like MyRand() (or whatever makes sense) and use t ...Show All
Visual Studio Tools for Office How to save and retrieve data entered in the Custom PropertyPage in Outlook using VSTO?
Hello, I have created a custom PropertyPage that shows up in the Tools/Options form. The custom control has various UI controls (e.g. text box, dropdown etc.). When a user enters these values and clicks on 'Apply', how and where do I save the data (without requiring any special security access on the client machine) so that next time when Outlook starts, I can restored the data Also, if I need to retrieve these values of PropetyPage from some other form, how can I access these Options values thanks in advance, -Bijal Bijal, There's no built-in mechanism in Outlook to store these settings. You can use the registry (HKEY_CURRENT_USER) or you could write to a configuration file ...Show All
