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

Software Development Network >> Enlikil's Q&A profile

Enlikil

Member List

ntsoo
Sniper167
Bruno VB Express Discover
Rattlerr
sticksnap
Wilk06
Steve Jackson
Amad
bijubiju
Sanchit Bahal
pomp
davidgreen24
rosraj
peterfajardo
bobchauvin
Greg Hoover
nicromi
Dr.Virusi
lord_8
kidwidahair
Only Title

Enlikil's Q&A profile

  • Visual Basic Contatenation

    I'm very new to VB programming and I am trying to take the first name and a last name from two textboxes and cont. them into a txtFullName Below is the code I have been trying to write and I keep getting a blue error line (Value of type 'String' cannot be converted to 'System.window.Forms.TextBox'. Could somebody help please Ted Public Class Form1 Private Sub TextBox1_TextChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtFullName.TextChanged Dim FullName As String Dim FirstName As String Dim LastName As String txtFullName = LastName & ", " & FirstName   TedCullen wrote: ...I am tryi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. When is LoadGraphicsContent(true) called?

    Hi, I'm wondering if LoadGraphicsContent(true) is ever called by XNA (rather than client code) except for when the game is first started. The reason I care is that if I have to reload, for example, a Texture that a few different objects are still using, I have to make sure that they use the new Texture reference rather than their old one, which is now dead. Basically: am I guaranteed that LoadGraphicsContent(true) is never called except when the application first starts up and when I call it myself It appears that's how it's supposed to be, but from the documentation I'm not 100% sure. Thanks, Max Yes, that is the way to do it. It is not necessarily inelegant (because you can hang other functionality on t ...Show All

  • SQL Server Threshold for data cache

    Hello Everybody- I am looking for some answers on below queries, 1. How many rows of data can be contained in the data cache, here in case of a temporary table (# tables) 2. When would SQL server decided to have the temp table on tempdb instead of data cache I did some google around but couldn't conclude anything. Thanks in advance! The temp table is always going to be written to tempdb. End of story. The data will be in memory, but it is also going to be written to disk. As far as how many rows can fit in the data cache, that all depends upon the size of your data cache and the size of each row that you are reading or writing. ...Show All

  • Windows Search Technologies WDS 3.0B2 - Losing list of included locations?

    After installing B2 I went to options and set search to include most of the folders on my C drive. After doing that search status showed that it was going to index 120K files. I tried a search and didn't get a match I thought I should have. I went to options and the included folders list doesn't include the items I'd previously added. I added them again. Again, search status said it would index 120K files. It is a few days and I just opened options again and the list of included folder is empty again! Please try to install the latest version from http://support.microsoft.com/Default.aspx kbid=917013 and reply back if you still see this problem. Thanks, David Peng (MSFT) ...Show All

  • SQL Server No Debugging and logging when a single script task is executed

    Hi, I cannot execute a script task in the VBA code window. I cannot debug or log if I run a single script task from the right click Execute Task . Every time I have to run the entire package in order to be able to debug. What am I missing appreciate a help. Gulden Gulden wrote: Thank You.. I guess it is the only way.. If memory serves correctly, yes, it IS the only way. We hope this will change in the future. It certainly SHOULD be changed! -Jamie ...Show All

  • Visual Studio Express Editions full screen

    How do I make my app become full screen When I press the full screen icon it only expands the form and the other items in the form remain the same size they do not expand to a relative size. How do I resolve this issue Thanks ykgreene wrote: no this did not work. I could have a placement issue as well What do you mean Still having the same issue Andrej ...Show All

  • Visual Studio Tools for Office filter in out + vb

    Hi, We want to know if it’s possible put a filter whitch don’t send/receive a mail if this mail have a size, for example, to 4 Mb. It's possible . This configuration we could put a user group or this configuration affect all user . could i write a little vb app or a macro to do this or it there a filter in outlook that could do it alistair If you are set-up on Exchange Server, you can implement this kind of policy/rule via Exchange. You couldn't do this on a client machine, because by the time your code executes to check the message, it's already on that machine; from what you've stated, you want to prevent this before it even reaches the client ... in which case, this m ...Show All

  • Visual C# Base class array to string array conversion

    System. Array myvalues = (System. Array )range.Cells.Value2; Now wanted to convert the base class array myvalues to string [] array. How should we do it Thanks! edukulla, The problem I see in your code is that arrays are zero-based in C#. This means that: vals = new string [10]; will allocate an array with 10 elements, numbered from 0 to 9, while you are trying to access vals [ 10 ], which is the 11th. Try to change, in your code: vals [ i - 1 ] = ((Excel.Range) worksheet.Cells [i, 1]).Value2.ToString (); HTH --mc ...Show All

  • SQL Server Send data to a network printer from a CLR trigger

    Hi, Does anyone know how to print from a CLR trigger Cheers James Hi, it really depends on what you want to print. If you want to create your own "report" from the CLR program you might want to use the http://msdn2.microsoft.com/en-us/library/system.drawing.printing.printdocument.aspx PrintDocument class for this. Otherwise, if you want to print some known file type like a acrobot you would have to use another method to print the data. HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • SQL Server change save settings directory on SSMS 2005

    when i exit sql server management studio i get the following error: The automatically saved settings file '\\SERVER\DATA\Sql Server Management Studio\Settings\CurrentSettings-2006-09-21.vssettings' is not available for write. You can change this file on the 'Import and Export Settings' Tools Options page. i'm guessing this might be because of the corporate policy of pointing everyone's "My Documents" at a read-only folder. i'd like to follow the advice on the dialog but unfortunately my Tools, Options dialog does not have an 'Import and Export Settings' page. any ideas bug raised as https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=208955 ...Show All

  • Visual C# ThreadExceptionEventHandler being suppressed by VS

    I have a bizarre problem. In my main form entry-point (i.e. static void Main), I register a ThreadExceptionEventHandler which should catch unhandled exceptions and do some appropriate processing. For some strange reason, this works fine on another developer's machine, but is suppressed on my machine. I've unchecked the option to use the VS Debug Assistant, unchecked various JIT options...still, when I run the project without debugging, I just get a bland dialog saying 'Client has encountered a problem and needs to close' [Debug] [Close] buttons. When I run it inside VS2005 I hit the point where I've purposely caused a DivideByZero exception. Tearing my hair a bit on this one, as it seems nonsensical that the custom error handling should w ...Show All

  • SQL Server Axis Labeling Issues

    I'm trying to plot some data with integer x-axis values ranging from 1 to 1000. And I can't get the first x-axis label to be 0 rather than 1. Since I'm incrementing by 100, the rest of the labels are now 101, 201, etc. How do I get these to start at 0 (or even 100...as long as all data shows up) Did you try to set the 'Min' property to 0 on the x-axis tab of the chart properties dialog Btw, more information on axis labels and the category vs. scalar x-axis mode are available here: http://msdn2.microsoft.com/en-us/library/aa964128.aspx#moressrscharts_topic3 -- Robert ...Show All

  • Visual Studio 2008 (Pre-release) Simple Type Binding

    Hi all, I'm sure what I want to do should be easy, but it has got me stumped (and unless I can get it sorted quickly I may have to revert back to Windows.Forms!). I've got a window with a CheckBox on it. In the code, I have a class with a static Boolean. How can I make a binding between the two (bi-directional ideally) so that I don't need to write OnChecked type handlers. In the Window.Resources I added: < ObjectDataProvider x:Key = " MapInfo " ObjectType = " {x:Type ds:MapDisplay} " /> The control itself is defined as: < CheckBox IsChecked = " False " Content = " Show something " DataContext = " {Binding Path=IsGridlineVisible, Mode=TwoWay, Source={Stat ...Show All

  • Visual C# Set Click Area // Test Click Location

    Hi, Using VS 2005 on WIN XP pro SP2, I built a C# console app that works on XP. It uses/opens a serial port to detect pin changes, opens a file, and uses the system timer and timer events. When I try to execute it on a WIN NT4 SP6a PC, I get a kernel32.dll entry point not found message. Are there any build/release options I can change to get this to work on the WIN NT4 system, or something I can put in my code to fix this I don't think I can use VS 2005 on the WIN NT system. If you need more info, let me know. Thank you, Steve .NET v2.0 does not support NT4. You must have at least W2K. It also supports Win98. This is from the system requirements documentation in MSDN. If you did get i ...Show All

  • SQL Server populate catalog Full Text Search SQL 2005

    Hi To All I'm trying to populate catalog in SQL 2005, but it doesn't work because in tables there are ntext fields. In SQL 2000 it works normally. I've made some test in both sql server. Why Is there something to set in sql 2005 Thanks Bye I had a similar problem when I was creating my first catalogs.. I found that you can index a table and tell it to start a population but unless you enable the fulltext the catalog does not populate. Can you verify that fulltext is enabled for the database and the table Right click and select properties for the database... I don't remember exactly where it is but is should be selected. For the table, right click the table... choose full ...Show All

©2008 Software Development Network