Bryan C. Smith's Q&A profile
SQL Server SQl Server Management Studio Express problem
I installed the softwaren and connected without problem to my SQL 2000 server. When I click on the SQL Server log and try to read it, nothing is displayed. Any ideas I can read the other database objects and security parameters without problems. Also, do I need the full version to manage backups, jobs, etc. That will work. Not a great solution since I am able to view the logs with SQL Server 2000 Enterprise Manager. ...Show All
SQL Server CREATE INDEX statement for SQL Mobile not documented?
Hello, I'm unable to find documentation for the CREATE INDEX statement for SQL Mobile. DROP INDEX is documented however. Is this a known issue or am I missing something This can be seen here: http://msdn2.microsoft.com/en-us/library/ms173440(en-US,SQL.90).aspx If you scroll the left pane up a little, you will notice that CREATE INDEX is not in the tree. Am I missing something Thanks. Finally it is live in SQL Mobile Books Online @ http://msdn2.microsoft.com/en-us/library/ms345331(en-US,SQL.90).aspx Thanks,. Laxmi Narsimha Rao ORUGANTI, MSFT, SQL Mobile, Microsoft Corporation ...Show All
Visual Studio Express Editions timed events
hi... i was just wondering if there was some sort of command to wait a certain number of seconds before it went on to do the next command. If i need to do this a certain way with complex code, show the code if you could. threading.thread.sleep(100) 'wait for .1 seconds Information at: http://msdn2.microsoft.com/en-us/library/d00bd51t.aspx Ed ...Show All
Smart Device Development Interaction with bluetooth headset
Hi, is there an easy way to play some audio via a bluetooth headset or capture the audio from the headset I didn't find a lot of information about this on the web & msdn but I'm sure I'm not the first person trying to write an application interacting with a BT headset... michivo This forum is intended to deal with issues directly related to the .NET Compact Framework. It appears that this question can better be answered by someone on one of the newsgroups for Windows Mobile or Windows CE. In order to get a quicker and more accurate response, please consider reposting this question to one of the ...Show All
SQL Server SQL Server Date/Time & other data typesV
Hi I'm have big problems trying to save Unicode information into my MS SQL Server 2000 Desktop Engine. Alright, so the problem I'm having now is I'm working with MS SQL 7.0 and PHP5. I've trying to get information to save into MS SQL, however it is storing it all weird. When I save the information and try to view it in Enterprise Manager it shows it has random characters but for some weird reason I can output that information on the page correctly when I do a SELECT query. Here's an example of my problems. < php $insQ = "INSERT INTO my_tblBusiness ( pkID, fkbusinessID, ntitle, ...Show All
Windows Live Developer Forums ReplaceIM and RecieveIM - How to use???
Say the user types 'hello' and presses send, is their a way to replace 'hello' with 'hello, how are you' before it is sent out. So the modified message is sent. Also, can this be done on recieving messages as well, so the recieved message is modified before it is displayed Because their is the ' ReplaceIM' and 'RecieveIM' properties and i would like to know how to use these. Thanks -Balupton ' ReplaceIM' and 'RecieveIM' tag to True in messanger xml file function Channel_OnRemoteAppClosed() { msChannel.SendIM( fetchRemoteNickname() + " Has Left the Conversasion "); } function fetchRemot ...Show All
Software Development for Windows Vista How to tracking with oracle?
Persistence service with oracle ,only create a table with GUID column and STATE column. But tracking service with oracle, a lot of table must be created. Can you tell me a easy way to do that, thanks One place to start to see how a tracking service can be implemented is within the SDK samples, there is a tracking service written that uses a file system as the store for the information, as well as one which logs to the console. ...Show All
Visual Studio 2008 (Pre-release) How does one hook custom events into Xaml?
I'm trying to implement a Data Binding layer to protect my UI from business logic dependencies. I'm using XAML to bind a control (TextBox in this case) to a datasource, which works just fine so far. However, the underlying datasource fires a custom event. The UI needs to catch this event and act on it (enable some controls). If I use code behind to register for the event and catch it, then I'm breaking the markup/code separation. How can I register for and catch a custom event strictly in XAML code Note1: Just to make it intgeresting, the event is a generic that derives from AsyncCompletedEventArgs Note2: The event w ...Show All
Visual Basic Stopping, or freezing a window
Hello I have a program ready to go, (a WIN32 Console Application.) but when I test it, the console is up maybe for less then a second.....! is there ANYway to make it pause or freeze till the user decides to quit thank you! Hi, At the end of your console program, you can specify a Console.ReadLine() method. So that the program pauses before it ends... cheers, Paul June A. Domag ...Show All
.NET Development Working with Web Services in Visual Studio 2005
H i all, I'm new to ASP.NET and web services. I'm able to create a web service successfully.And i tried to add it as a web referrence to another ASP.NET application.The Add Web Referrence dialog window displays my web service,but when i clicked the link to add it,i got this error: "Server cannot access application directory 'C:\WebSites\MyWebService\'. The directory does not exist or is not accessible because of security settings." If anyone knows how to solve this ,plz help. In the WebService you are trying to add to another project, g ...Show All
Visual Studio Team System User account access
I'm trying to setup some users in TFS and have problems adding users based on an InetOrgPerson object. User objects seem to work properly. Here are the symtoms: 1) When an InetOrgPerson is added, its display does not include a user icon and domain prefix. A User account adds with a user icon and the domain prefix. 2) When trying to access the TFS server, various Invalid User errors popup. One in particular states something about Invalid Account. 3) If adding a Group object instead (the long-term prefered method), the display is correct, but the result is the same (probably at the point where TFS is trying to validate the user). Does TFS secu ...Show All
Windows Forms How do you refresh data bound to a DataGridView
This should be easy... but I don't know how to do it. I have created a DataSet that is bound to a DataGridView so that the DataGridView displays the data in my DataSet. If my DataGridView is called dgvStudents, the following code DOES NOT do the job: dgvStudents.Refresh(); I can see the grid itself flash and refresh(), but the data behind the grid is not being refreshed, so new items in the database (added by another process) are not being displayed in the grid. How do you do this Possibly I should post this as a new thread but I believe I'm running into a similar situat ...Show All
Visual Basic Boolean Explanation Please!!!
Private blnNoAction As Boolean = False Now i am declaring 'blnNoAction as a Boolean varible that is set to FALSE, but the thing is i do not know what that means........and i dont know how i should use this varible...can some send me a link or run me an explanation on how this works, i am fimiliar with the operators AND OR NOT but how does this tie in to declaring a varible as boolean A boolean variable can only hold two values: true or false. Typically, it is used on a control flow statement such as if, while, etc. For example, a method can have as one of it's parameters such a variable: Sub PrintResult(Message as Stri ...Show All
Visual Basic Syntax error: Missing operand after 'Name' operator.
Any help would be great. I'm trying to setup a filter for my address book program that uses an Access database. I have it working for a different form and I did it the same way as far as I know. For some reason though on this form I get the error "Syntax error: Missing operand after 'Name' operator." Here is the line of code that gives me the error: Me.PhoneBindingSource.Filter = _ String.Format("{0} like '%{1}%'", _ Me.PIDSDataSet2.Phone.Last_NameColumn, _ Me.FilterTextBox.Text) from the code example you provided Me.PhoneBindingSource.Filter = _ ...Show All
Visual Studio Team System Important Information
Hi, Im trying to create my own custom rules... logic looks very simple but there is not enough information specially about the namespace Microsoft.Cci Where can I find more information about the types of Microsoft.Cci Or where can I find information about how to start developing my own custom rules We are evaluating FxCop to apply in the white box quality assurance process in the biggest bank in Ecuador ( Banco del Pichincha www.todo1.com )... probably all the rules must be developed until first week of July... Thanks for your help Carlos Figueroa Microsoft MVP ASP/ASP.NET You should be aware that writing custom ...Show All
