Software Development Network Logo
  • Microsoft ISV
  • Windows Vista
  • Visual Basic
  • VS Team System
  • Smart Device
  • Visual J#
  • Visual C#
  • Windows Live
  • Windows Forms
  • SQL Server
  • Visual FoxPro
  • Visual Studio
  • Visual C++
  • Architecture
  • .NET Development

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

Mailtm

Member List

Tensor
mrpete_56
ilyaostr
Si MS
Erik Arfeuille
MrLukas
ceedee
Daemon5577
Jay_
Microfix
LProgrammer
stuartdunkeld
dc2000
MSDN Sealevel
Rasmus Christian Kaae
Michael Lowe
Ravs
dennist
JustDotNet
Dan Krause
Only Title

Mailtm's Q&A profile

  • Visual C# Deployment doubt

    I have created the deployment package to install my webapplication using Setup wizard. 1. Using dialog box i have installed the application in any drive and create the virtual directory. 2.Next screens in i have asked the servername , username, password to connect the server and next screen i have asked database name to create the database in the server. Using this connection i am running the "sql.txt" file which has sqlscripts. I am using the installer class to connect the server and creating database in server and running the sql script files 3.What is my doubts is " i want to update the connection information string which i con ...Show All

  • SQL Server After Install of 2005 still 2000 Engine!

    I have installed the new SQL Server 2005, but I see my local database as version 8.9.193, means SQL Server 2000. I do not know why setup did not upgrade it. What do I need to do now  I think some new options are now working because of that... Was your SQL Server 2005 installation successful   And did you do an upgrade, or a separate instance installation   Check to see if you have a second instance of sql server running, this may be your SQL 2005 installation. ...Show All

  • Software Development for Windows Vista synchronizing with workflow thread

    Hello,     Is there any way to synchronize the execution thread, the one that raises events received by some eventsink activities, with the workflow thread I mean, synchronizing the first one with the finalization of the handler associated with the eventsink activity... Regards, M Hello,    I don't want to execute all instances with a single thread environment, so I'll implement a synchro queue based on instanceId with events and I'll be listening to tracking events to set the appropiate event when idle arrives. I think this will work... Thanks for your ...Show All

  • SQL Server Recovery Model of Subscription Database

    Hi: I am having lot of log problems with Subscription databases. Currently all my subscription databases are on Full recovery mode. I am thinking to change them to simple because I don't I will be doing point in time recovery of them. Do the subcription databases have to be on Full mode Can I change them to simple to keep my log small and then I do not have to backups of my logs also Please let me know. Thanks Thanks for replying. Log of the subscription database is about 96% full. I tired to truncate it but still size stays around the same. Even though I changed the recovery model to simple, it should truncate i ...Show All

  • Smart Device Development RegistryKey Set Value Error "Opened as read only"

    I am trying to change the username in my application but its show me a message error "Cannot set value, RegistryKey was openend as read only" Private Sub ButtonUserN_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonUserN.Click Dim RKey As RegistryKey RKey = OpenNETCF.Win32.Registry.LocalMachine.OpenSubKey("Ident") RKey.SetValue("Username", TxtUserName.Text) RKey.Close() End Sub How i change this property "read only" Thanks I found the answer RegistryKey.OpenSubKey Method (String, Boolean) [Visual Basic] Overloads ...Show All

  • Software Development for Windows Vista WinFX Crashes

    OK. Just installed the November CTP's and installed all of them. Everything seems to "work", but I can only get the WPF samples to run about 1 in 5 times - and when they do run, they crash very quickly. Almost all of them do this, no matter how complicated they are. Such as, when I run the "sample viewer" app, sometimes it will actually start up just fine, and I can start to navigate around.  But usually within a minute or so (or a bunch of clicks), the app will just crash hard.  If I try running it within the debugger it will just close jump back to VS with no message or error. Here's the error: EventType : clr20r3   ...Show All

  • Windows Forms DataGrid Master Detail update Master column with sum of Detail column

    I'm using typed master detail Datagrid with Dataset as data entry form. All works fine. I want to update automatically one of master column with the sum of detail column, whenever user inputs the value in detail colmn. Can anyone help me on this. ...Show All

  • .NET Development consuming Java MTOM web service using WSE3

    Dear all, I have a developed a java web service to transfer a file using MTOM, and also developed a client using WSE3+VCS 2005 Express edition, but the client could not resolve the returned message. Here are my code snippet: ImageService service=new ImageService();//ImageService is the generated proxy service.RequireMtom=true; String[] list = service.listFiles(); //here the exception occured String[] operators = service.listOperators(); for (int i = 0; i < list.Length; i++) { listBox1.Items.Add(list ); } The error message is: Client found response content type of 'Mult ...Show All

  • Visual C# StackLayout in java -> in C# ????

    Hi, I am a java developer and I want to start a C# application.  I need several windows (Panel) that i store in a stack. I display only the one that i want to view.  It is a MDI application (each windows has its own toolbar for CRUD operations) but it looks like a SDI because i only display one form at a time. So, i really don't know how to do it Could somebody give me a link or sample code or a good book reference Thanks JMi I found these: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=18351 and http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnwinforms/html/ ...Show All

  • Visual Studio Express Editions How to split a CString delimited by a character

    Hi,I am trying to split a CSting object delimited by a character, i.e. I have a CString like "Hello,how are,you" and I want to split it by ",". Could anyone please let me know. ...Show All

  • Visual Studio Using the Plaform SDK with Visual Studio.Net 2003

    I wish to use the "Windows Server 2003 SP1 Platform SDK" with Visual Studio.Net 2003 This is because the DirectShow software has been moved from the DirectX SDK to the Platform SDK (and I wish to use the latest 'august 2005' version of the DirectX SDK and also DirectShow, so I need both SDKs installed) My problem is that having registered the Platform SDK's directories with Visual Studio, a re-compile of my previously working c++ code now generates the following error. c:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\atlmfc\include\atlsocket.inl(26): error C3861: 'FreeAddrInfo': identifier not found, even with argument-dependent look ...Show All

  • SQL Server kick people logged on

    Hi, i have a job that restores a database every night. The job fails if someone is logged onto the database. Its a development database. I was wondering if there is a command that i can use to kick everyone off the database before the restore any help is appreciated. Hi We use the following: USE Master Go ALTER DATABASE <DBName> SET SINGLE_USER WITH ROLLBACK IMMEDIATE GO -- RESTORE DATABASE GO ALTER DATABASE <dbName> SET MULTI_USER WITH ROLLBACK IMMEDIATE Go ...Show All

  • SQL Server help with a scalare function

    i wrote a scalare function- select name,id from tableName where function1(id) / function2(id)>100 but sometimes function2 returns zero so im getting a divide by zero exception. how can i solve this problem thanks in advanced. It depends on what do you want for output if function2 returns 0... Here's one way to handle it (return nothing):     select name,id from tableName where     case function2(id)     when 0 then 0     else function1(id) / function2(id)     end & ...Show All

  • Windows Forms bind DataGrid to 2 dimension array

    i want to bind a DataGrid to a 2 dimension array whose entries are user define class and i want to modify the property of the class through the DataGrid in an easy way. any advice It would be a nice feature to tie a datagridview to a two dimensional array, "header" array, column max, row max. ...Show All

  • Windows Forms Dynamically determine column type for a cell?

    I am using a datagridview to display some data and allow user input. After they input a value, I capture what they typed and then do a retrieval of data for that record (row) in the datagridview. If I return 1 item, I'd like the adjacent cell to be a textbox that is read only for that row, however if there are more than 1 record retrieved, I'd like to have a combobox where the user can pick the value in the adjacent cell. Can this be done I have read some stuff about virtual mode, thought maybe it could help but am unsure. One option would be to make the adjacent cell a combobox column and automatica ...Show All

©2008 Software Development Network