BilalShouman's Q&A profile
Visual Studio Express Editions how to build a web browser in build flash player like opera
hi pls respond me quickly i also like how can we add tab at run time that is allowing the user to view more pages in web browser "hi pls respond me quickly i also like how can we add tab at run time that is allowing the user to view more pages in web browser " http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1264835&SiteID=1 ...Show All
Visual Studio Team System MS Project file in Sharepoint marked as read-only
Hi, We are experiencing the same problem as this person (http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=8011&SiteID=1). Even though no one has the project file open, MS Project says that the file is in use and is locked for editing (but no specific person is named, like when someone really has the file open). This happens even when I am the only one editing a MS Project file. After X number of minutes, the file can be opened in read-write mode again. This bug makes it practically impossible for us to use Sharepoint as it makes us re-saving documents in other filenames to be able to save the files, which means we could as well use a file system to save our documents in. Now, my colleague has dug up a KB article (http://support.mi ...Show All
Visual Studio Express Editions HELP!!
I need help with my program I'm making a program with a textbox(txtCommand) and a richtextbox(txtCode) and the user must type there tekst into the textbox, then they must press enter and the text must go to the rich text box and clear the textbox. That can i make but how can i get my program to put each line of text on a new rule in the rich text box. This is my code now: Private Sub txtCommand_KeyDown( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtCommand.KeyDown If e.KeyCode = Keys.Enter = True Then txtCommand.SelectAll() txtCommand.Cut() txtCode.Text = txtCode.Text & vbCrLf txtCode.Paste() End If End Sub The reason you are not getting the ...Show All
Software Development for Windows Vista drag one file in command (cmd32.exe)
Hi, I'm instaled windows vista beta 2 ultimate version(build 5384) yesterday. When i test .net application version 2.0, the application throw one exception. I try drag ".exe" file to command(cmd32.exe) to see the error but vista doesn't accept this. What's happen This doesn't work more This is very important to microsoft developer platform . Luiz Gonzaga Mendonca Sadly, this functionality was a victim of Vista's stricter security policies. Csrss is a high-privilege process and you can't drag/drop to a process with higher security. ...Show All
Software Development for Windows Vista Communication with external applications
Hello, I've been trying the hands-on labs and now I'm developing a simple workflow myself, but I don't really know how to communicate between an external application and the local workflow. I know that lab05 deals with a similar topic but I've found that the communication was only between a LOCAL application and the workflow but not with an external application. Now I'm trying to follow the expense reporting application in lab01 (resources folder) and I try to see how it communicates with the workflow. I've seen it uses .NET Remoting to create an instance of the remote class, but I don't get to understand well what it does because the same project has together the remoteservices class and the localservices class. Please can someon ...Show All
SQL Server Cannot see server name in the pick list
I have installed the MS SQL Server (Developer Edition) that comes with Visual Studuo 2005 Professional Edition into my computer. Seems like install is OK and I can see both SQLEXPRESS and MSSQLSERVER in configuration manager. I can start/stop both of the servers OK. However, when I try to make a connection from Visual Studuo 2005, I can only see SQLEXPRESS in the pick list in "Add Connection" window. SQLSERVER is not in the list. The very first task I wanted to do is to convert and Access database to SQL. For that reason, I also installed "Microsoft SQL Server Migration Assistant for Access". In that application I cannot even see any server name when the wizard asks which server to choose. I also tried to start/stop ...Show All
SQL Server How can one user view other users that belong to a database role?
After upgrading my database from SQL2000 to SQL2005 I have noticed a change in behavior of sp_helprolemember. In SQL2000 I could connect as 'user1' and use sp_helprolemember to find all users that belong to a certain role. In SQL2005 sp_helprolemember seems to only show me the roles that connected user belongs to. For example, if I connect as 'user1' I only see the roles that 'user1' belongs to. Any advice on how to duplicate the behavior from SQL2000 So how do you resolve it Sorry Jens but I dont understand what you are getting at. Are you saying that you must be db_owner for sp_helprolemember to work as it did in SQL 2000 Are there any MVP's reading this We need a resolution, I dont have time ...Show All
.NET Development SP not working in vb.net (no parameters just execute the sp)
I have a stored procedure EXEC master..xp_cmdshell 'C:\progra~1\suntron\sendopenorders_setu p\sendopen podata_win .exe', no_output this sp calls my exe which sends emails, it also writes a text file so I can see who was emailed to. if i set the sp up as a scheduled task it works, if I run it from query analizer it works but when I try to call it from my vb.net program on a button click it does not run and gives no errors. here is my code Dim oconn As New SqlConnection(connstring) Dim ocomm As New SqlCommand ocomm.Connection = oconn ocomm.CommandType = CommandType.Text ocomm.CommandText = "Exec sp_Send_Open_Order_Data" oconn.Open() ocomm.ExecuteNonQuery() oconn.Close() i have tried it as command type.st ...Show All
Visual Basic Nudge a form.....
Hi All, I am trying to have a form load, then x seconds after it must be moved (nudged) and replaced, code is as follows but no luck. Private LastUpdate As DateTime Private CurInt As Integer = 2000 Sub nudgeForm() ' after X seconds nudge form LastUpdate = Now Me .Nudger.Start() End Sub Sub RestoreForm( ByVal x, ByVal y) Me .Left = x Me .Top = y End Sub Private Sub Nudger_Tick( ByVal sender As Object , ByVal e As System.EventArgs) Handles Nudger.Tick If Now.Subtract( Me .LastUpdate).TotalSeconds >= CurInt Then Dim xCoord As Integer = Me .Left Dim yCoord As Integer = Me .Top ...Show All
Visual Studio Express Editions problem with SQL
Dim totaltext As String totaltext = "SELECT SUM(Contributor) FROM GENERAL" Total.Visible = True Total.Text = "Total no of contributions is <b> " & totaltext & "</b>" Im trying to return a value here ie, a number. Its supposed to count the total no of contributors from my database and return me the sum. However, with my code above the label Total always returns me a String instead. Based on the current code,the result is: Total no of contributions is SELECT SUM(Contributor) FROM GENERAL This is wrong. How do I edit the code if I want the output to be: Total no of contributions is 20 How do I make it return an interger instead of just the whole string.. Pls hel ...Show All
Visual Studio A walk through for Project Sub type sample
Hi - I am currently using the August 06 - Visual Studio SDK. I am trying to understand the Project Sub Type sample and was wondering if there is some walk through that can help me me understand as to how the project was built. Thanks, Kushal. Hi Dmitry, Actually I am trying to create a flavor on top of the already flavored project. As of now I was successfully able to change some GUIDs and templates within the project sub type and have a flavor on top of our flavor. However I want to create something from scratch - see exactly what steps need to be followed in coming about the final flavor. Hope this answers your question. Thanks, Kushal. ...Show All
Visual Basic What's the difference
Ok folks, so I've got a program that runs code that has a FOTRAN dll that (thank god) I finally have working, for the most part. At least it does when I pass it the path/name of a file that I've created using notepad. Buuuut, that's not gonna cut it when it comes down to it. What I've done is created a GUI that creates an input file for FORTRAN and all it does is write a line of text for each input in FORTRAN. But when this VB written file,written using streamwriter or FileSystem.AppendText (I wondered if there might be a problem with the streamwriter making hidden characters but no), is passed to my FORTRAN dll and the methods native to the FORTRAN code attempt to consume the data, I run into an interesting problem ...Show All
.NET Development Anyone has a solution about it?
I have question here.I can access paradox database using c# with oldeconnection which has connectstring as "this.connect.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+Application.StartupPath +@"\table;Extended Properties=Paradox 5.x;";",but I couldn't 't access a paradox database with password protection.Anyone has idea to solve it thanks in advance! " Below is an example that uses the ODBC driver. Give it try: Dim ConnectionString As String ConnectionString = "Driver={Microsoft Paradox Driver (*.db )};DriverID=538;Fil=Paradox 5.X;DefaultDir=C:\Documents and Settings\...\My Documents\My Database\Paradox;Dbq=C:\Documents and Settings\...\My Documents\My Database ...Show All
Visual Basic Suppress Printing message box ?
Hi, I have a VS2005 application in which I print out graphics. I would like to be able to suppress the "Printing Document1 etc " message when the job is printing. Can this be done in code, and if so, how. Thanks Tailor Hi Stephen, Thank you so much for your reply. The StandardPrintController works just the way I needed. Cheers John ...Show All
Windows Live Developer Forums Is there any way to fill a polyline?
Does anybody have any ideas I'm looking at two approaches. Firstly, overlaying a png file over the map, and retrieving the graphic from a server. The advantage of this is that it's easier to write the drawing code on the server. A disadvantage is that it increases server load. Secondly, I'm looking to draw the polygons using SVG/VML depending on the browser. There's an open source library that will do this ( http://sourceforge.net/projects/excanvas ). This means writing code in Javascript which isn't as easy. ...Show All
