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

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

markand

Member List

sigol
Andreas Georgsson
windpuffs
js123
Dan Rooney
Computer Guy69146
Michael Miller
jnelsonjr
Aleksey Nagoga.
Uturn
Camillo777
Alexander75
Yoni Raziel
pardgr8
Soumya B
Lisber
ctsand
Rascal123
chandrala
deeps_
Only Title

markand's Q&A profile

  • Visual Basic Events inserted at the cursor

    Hi All, Does anyone know of an option setting that makes the selected event insert at the cursor, when in the code window Presently, when I select "Class Name" and then "Method Name" from the two dropdowns at the top of the code editing window, the event *seems* to insert itself randomly. ("Class Name" and "Method Name" are the tooltips) Thanks, Carl Hi Carl, There is no such option to make the selected event insert at the specified location of the cursor. Generally events are inserted in an alphabatical order with some exceptions like the if the current order of events alreday in the code window is not alphabatically sorted then it try to pick the closer ...Show All

  • Visual C# VS2005 and .Net 1.1

    I've developed a Windows app in VS2005 using C#. It is relatively simple and does not use any 2.0 .NET functionality so why doesn't it work on the 1.1 framework I cannot give this app to any one else unless they are running 2.0. This seems a fundamental flaw. I want it to run on both frameworks without having to have separate builds. With java you don't seem to have this issue. Am I missing the point Thanks Tony Hi Tony This all comes down to the way its compiled - you can force visual studio 2005 to compile to .net 1.1 and it should work fine:) I had hoped that it was simply a change in the project properties... but apparently not - take a peek here http://www.windows-now.com/blogs/robert/archive/2005/06/03/14 ...Show All

  • SQL Server external access

    Hi evebody, I’m making some reports on VS 2003, using RS 2000 and deploying it to a RS 2005 server my problem is: is there any way to make a default user for accessing these reports, cause my reports can be seen by those who I grant permission (user from my domain) I found the "execution account", but I couldn’t understand how I would use it, if this helps on my problem at all..and if I can use it with RS 2000 reports. (I know that some features of RS 2005 cannot be used on RS 2000 reports...) Best Regards. Pedro Hi everybody!! I’ve been reading some stuff, and I believe I can explain much better my problem. I have a system that will be accessed on extranet. Users fr ...Show All

  • SQL Server DTS

    I need to get a list of tables from a tabl, then loop through the table list and execute a stored proc feeding it the table name as a parameter... How could this best be done in DTS Jim JimDi wrote: I need to get a list of tables from a tabl, then loop through the table list and execute a stored proc feeding it the table name as a parameter... How could this best be done in DTS Jim I think this will help: Execute SQL Task into an object variable - Shred it with a Foreach loop ( http://blogs.conchango.com/jamiethomson/archive/2005/07/04/1748.aspx ) -Jamie ...Show All

  • Windows Forms SpellCheck in System.Windows.Controls.RichTextBox - Adding words or custom dictionaries

    Where does this post go I don't know. It could probably go in PWF, .Net, or many other posts. I decided to put it here in hopes that there might be a way to solve the issue in a lower language and use the solution in my C# code. Issue: I need to have medical and/or legal words added to the spellchecker of the RichTextBox. I have read many posts and have not found a solution. I have found ways to get the errors (RichTextBox.getSpellingError()) and then check my words (medical/legal) to see if the word is actually an error. I also know how to add my words to the context menu. What I can’t do is have the correct words show up. When I type ‘ny’ in Word, the spellchecker gives me nay, my, knee, and others as options. I am g ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. What is the best software for game dev with XNA?

    As the title states, what software will be good to have. I am going to download Visual C# Studio Express, but what else is good for stuff like graphics or sound. I have a limited budget so I am looking for something in the free to $100 price range, if possible. Thanks for any help you can give me. Theoretically, once the content pipleline is out there, you can import any type of content (3D or 2D). MS is trying to move away from the export mindset (i.e. find an application that exports .x or .dds files) and allow the community to develop importers for XNA. From what I understand, the retail version of Express will support .X and .dss importing, and in order to import other types (i.e. .obj), you modify the pipeline (or download someon ...Show All

  • .NET Development When is required a system reboot for a .NET application?

    Hello guys, Do you know of a checklist of what circustances may require to restart your system after installing a .NET Framework application This is my case: I have a .NET Framework application that is installed using an InstallShield basic MSI project, together with the application, a .NET windows service is also installed. Yesterday I had a customer claiming that he had found a bug in the application, and I realized that the problem was only reproduced when a previous version was replaced with a newer one (in other words, in the same Windows session the applications is uninstalled and again installed)... the service is supposed to launch an application that requires to display GUI, but even when the process is created and launch ...Show All

  • .NET Development XSLT output incompatible with standard

    Hi Folks, I am trying to convert XML to CSV format output. I was able to convert it by using the following option: output method ="text" But, the output doesn't seem to adhere to the standard. I was referrring to the following link to refer to the CSV format: http://en.wikipedia.org/wiki/Comma-separated_values Please correct me if i am wrong. TIA Sek As Appel correctly noticed, the text output method does not assume the CSV format. Here you can find a sample how to convert XML to CSV using XSLT: http://lists.xml.org/archives/xml-dev/200404/msg00216.html This sample, however, does not quote strings that must be quoted according to CSV format rules. It sho ...Show All

  • Visual Basic Browse for Folder Dialog Box

    I've been looking around the internet and I found a few pieces of sample code that uses SHBrowseForFolder, but I have no idea how to use it, or how to tweak it. I'm looking for something that hopefully VB .NET can provide, and hopefully is a little less verbose. Basically, I just want to browse for a folder in one of those windows dialog boxes, and when the user presses OK, the program will set a textbox's text to the selected path. The last time I did classroom VB programming was 5 years ago, back in HS, and we were using VB6 back then. If anybody can shine a light on this issue, I would greatly appreciate it! Sure. Try this:   Dim theFolderBrowserDialog as new FolderBrowserDialog() the ...Show All

  • Windows Forms How do i bring my application to foreground

    I am facing problem when my application icon is clicked in the taskbar then it does not come into foreground as any other windows application does.Even though i have written code for window activate method.This is on c#. Ya this is the code i am using. private void MainForm_Activated(object sender, EventArgs e) { if (this.WindowState == FormWindowState.Minimized) this.WindowState = FormWindowState.Normal; this.Activate(); this.BringToFront(); } ...Show All

  • .NET Development Webresource.axd not downloading over https in ie

    At least I think that’s the problem…All of a sudden I was getting javascript errors related to functions that should be in the webresource.axd file.   Which, if I’m correct is dynamically generated by the asp.net runtime for each client.     The first error thrown is on page load:    "syntax error at Line 1" However, this error doesn’t open in the debugger.         I know it is something to do with webresource.axd as whenever any validation controls are used (i.e. client side script in webresource.axd is used) I get the following error:       Error: webForm_PostBackOption s' is undefined   &nb ...Show All

  • .NET Development How to establish an SSL sesion

    How can I establish an SSL session ! When I connect to a SSL site using my browser, the SSL session is established. But when i try to do the same using C# I don't seem to be succesfull. Thanks! In C# on line; Stream streamPostData = p_aWebRequest.GetRequestStream(); I get the following message; The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. ...Show All

  • SQL Server Cant Connect to SQL Server

    can sum1 help me with this error >.< i cant connect to my SQL server management http://img376.imageshack.us/img376/8...zzzzzzzfz9.png You can start here: http://msdn2.microsoft.com/en-us/library/ms345332.aspx Buck Woody ...Show All

  • Visual C++ C++ keep variable in memory

    Hi guyz, im new to C++, and i do need your help :) I have created my project a while ago and it is written in Pic Basic, I do not know if you have used it before, but PIC uses COMMONS, it basically some area allocated by PIC Basic in RAM that keps variables until the computer is shut down or these variables are intentially deleted. So what happens is that different functions can access these variables defined in that COMMON, read it and even edit them. then the programs can exit and run again, whereas whatever is kept in COMMON is not getting reset, unless intentionally or computer shutdown. If one function modifyies one of the variables in the COMMON, the next function which will try to access the same variable will get already modifie ...Show All

  • SQL Server Can't get IntegratedSecurity with JDBC driver

    Hi; I used SQLServerDatabaseMetaData (which requires a connection to return this data which seems unnecessary) to get: name: Microsoft SQL Server 2005 JDBC Driver version: 1.1.1501.101 Passing a url of: jdbc:sqlserver://localhost:1433;DatabaseName=Northwind;IntegratedSecurity=true I get the error: Oct 7, 2006 3:46:09 PM com.microsoft.sqlserver.jdbc.AuthenticationJNI <clinit> WARNING: Failed to load the sqljdbc_auth.dll Exception in thread "main" com.microsoft.sqlserver.jdbc.SQLServerException: This driver is not configured for integrated authentication. I copied over x86\sqljdbc_auth.dll and then it worked. I assume this is required with the jar file. This leads to a couple of questions: What are the files ...Show All

©2008 Software Development Network