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

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

SillyMS

Member List

Noorul Ahmed
Residual Logic Games
Manmeet Panigrahi
George Homorozeanu
Andrew Beery
aaks
graab
MBM_Mimo
Ademaure
braz
Kifaro
uzs1
Dan H UW
David Turner
Michael Hansen
MaggieChan
David Sutherland
mmmmBeeeer
Shrek.NET
VSB
Only Title

SillyMS's Q&A profile

  • Visual Basic Show Forms inside a SplitContainer

    Hi, I think this might sound weird, but I’m working with new VS2005 Pro controls. I have a SplitContainer and I would like to know if there is a way that allows me to show different forms (one at the time) inside my SplitContainer right panel. My SplitContainer is on a MDI form and instead of showing the form above the SplitContainer, it would be nicer to have it inside the SplitContainer panel. is it possible any hint Thanks in advance George George, Try Panel1.Controls.Add(New frmClients) Here's what I do: ' MFBaseForm is a common form others derive from for functionality to talk to the status bar, etc. Dim f As MFBaseForm f = New MFForm1 ' MFForm1 inherits f ...Show All

  • Visual Studio Tools for Office tabbing thru a form in word doc, need to store info thats highlighted

     Problem solved   used the rtb after converting word docs to rtf. ...Show All

  • SQL Server SSIS - Teradata connectivity

    Hi, How do I connect from SSIS to TeraData database. Is there any OLEDB providers available for evaluation. If any of the experiences can be shared on this, it would be greatly helpful. Thanks, S Suresh Re: Integration Services and Teradata as source - MSDN Forums ( http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=935826&SiteID=1 ) This forum has search capability ( http://forums.microsoft.com/MSDN/Search/Search.aspx words=Teradata&searchKey=&lcid=1033&searchscope=forumscope&siteid=1&ForumID=80&ForumGroupID=-1 ) ...Show All

  • Windows Forms Bug / Misunderstanding ColumnChanging Event

    I have a dataset, with an auto number column for the ID. This number starts at -1 and is decremented for new rows (ie so new rows in dataset don't interfere with real rows in the database/dataset). I use the "columnchanging" event to catch when these new rows get their real ID from the dbase. (I have to split up the updates from changed, added and deleted due to referential integrity constraints.) I do the update on the datatable containing only the added rows, this is the only way it can be done. My issue is that when we add a new row to the dataset, and then save it the following sequence occurs. Add new row to ds. Fill from information in gui. Enter data access layer and request save of info. get added rows fro ...Show All

  • Visual Basic regsvr dialog confirmation

    This might be a imple solution to someone but I can't figure it out. I need to know how to register a dll without getting that annoying confirmation message. My code is below. Thanks! Shell( "regsvr32 operate.dll /i" ) 'to install Shell( "regsvr32 operate.dll /u ") 'to uninstall How are you deploying you application. If your using clickonce which is the default publish functionality on VB and rather neat. The you can do generate a bootstrapper package to include as a requirement on the installation - just like you would have the .net 2.0 framework as a requirement. Some other tools / resources which are extemely useful in generating the bootstrapper files · ...Show All

  • Windows Forms can't remove or stretch background image in visual basic 6 (sp6)

    i know this is prolly a big newbie question but... i can't seem to remove or stretch a background image on one of my forms in my visual basic 6 project. i added it via picture property in the form's properties and now it says (bitmap) and i can't make it say (none) to clear the picture. thanks in advance Hi, The simplest way to achieve what you require is the following: Create an 'image' control from the toolbox. The image control allows you to select a picture and then specify "Stretch" to true or false using the properties panel. Lets assume that the 'image' control were named Image1 (by default). It is important to note that the 'image' control is different from the 'picture' c ...Show All

  • Windows Forms Group policy

    Wrong Section i know, but could not find the right one! Can any one help me in telling me how i use group policy to stop the right mouse button working on the start button. I have stopped it working on the desktop, but it will still work on the start tab, and then allow you to explore. Cheers When you right click the Start button, you can select Open, Explore or Find options. To lock down this option, rename the key [HKEY_CLASSES_ROOT\Directory\shell] to [HKEY_CLASSES_ROOT\Directory\shell.lockdown] and rename the key [HKEY_CLASSES_ROOT\Folder\shell] to [HKEY_CLASSES_ROOT\Folder\shell.lockdown] . There is nothing magical about the lockdown extension. Don't delete these keys, just rename them. If you ...Show All

  • Visual C# IDbConnection and get data in a dataset

    Hello Everyone, I'm using IDbConnection to connect to database and that works perfectly fine.... I can do something like this as well...and this is good too.... IDbCommand command = conn.CreateCommand(); command.CommandText = "Select id, description from lot"; IDataReader dr = command.ExecuteReader(); while (dr.Read()) { string some = dr[1].ToString(); } The problem I'm facing is how to return it in dataset, as I directly want to bind my controls....or somebody can suggest a better way to do it... Thanks, Harsimrat Awesome, Thanks a lot...It works really well..... There is one more thing.... /// <summary> /// The ConnectionManage ...Show All

  • SQL Server Disable Event Logging to Windows Application Log?

    Hi, We are starting to work with SSIS in our production environment & due to support issues; we are trying to get rid of the "Package xxx started" log entries inside of the Windows Application Event Log... So far, I have tried many different things, including setting the LoggingMode to "Disabled", as well as adding a new logging reference with a different destination... All of which still do not get rid of the extra log entries... Is this possible & does anyone know how to get this done Thanks! Hi, Unfortunately I still haven't found a way to get this accomplished... At least I'm not the only one with the same problem.. . :) Thanks Bobette.. For now, we are ...Show All

  • Smart Device Development Can I use System.TransactionScope in windows mobile 5.0 ?

    Can I use System.TransactionScope in windows mobile 5.0 When I put these line and compile My application I get the following error The type or namespace name 'TransactionScope' could not be found (are you missing a using directive or an assembly reference ) using(TransactionScope scope = new TransactionScope()) { scope.Complete(); } Thanks Ilya Tumanov . It clears my doubt ...Show All

  • Visual C# Why is there a PDB file in my projects Release folder?

    This is probably a deployment question, but there doesn't seem to be a deployment section in .NET Development Forum. I thought the PDB file was only for debugging purposes, so why is there a PDB file in my bin\Release folder What are the (dis)advantages of including this file in deployment Would it not work to use the debug build (with .pdbs) to analyze the crash dump in your example I am still not convinced that there is a good reason to build .pdbs with a release build. Thanks for the very descriptive post, though ...Show All

  • .NET Development how to set page in its initial form after save button

    Dear All, i am bit new to the dotnet world. i am making web application using asp.net ,C# (Visual studio 2005). i want to how can i make page to reappear as page was loaded very first time after saving all the record(controls content) on save button. i have page with seven controls (some of them autopostback). and there is save button. so i basically trying for as soon as save button complete its command, i clear all controls values. so as page reappear in its initial stag. HOw can i do it . please help me thanks You can redirect the user back to the same form...Response.Redirect(). This would be like a first request to the page.. or try Page.ViewState.Clear() ...Show All

  • Windows Live Developer Forums DEP blockin Live Messenger 8.1

    Why does DEP keep block my Live Messenger how do i overcome this problem I'm having the same problem with all versions of msn. I upgraded to Flash 9,0,28,0 - no change. I tried the 'run as administrator' workaround mentioned above and the box is grayed out, so I cannot use this solution. I tried going into system>advanced>performance>settings>DEP and manually adding the msn executable to the allow list but vista tells me that this program must be run with DEP enabled.  Running vista home premium. I'm sorry, but this is just funny. Why would microsoft release vista when its own programs don't work on it. This is a clean install too - straight out of the box.  ...Show All

  • Visual Studio Express Editions Building a command line application

    Hi, finally looking at VB2005 as I'd like to build a .exe that can be run from a command line. The code I have is this: Module Module1 Sub Main() FileSystem.FileOpen(1, "H:\Research\GetWebFile\x.x" , OpenMode.Output) FileSystem.Write(1, "Hello World" ) FileSystem.FileClose(1) End Sub End Module I built it without any errors, but when I run it I get the error : The assembly or AppDomain that failed was HelloWorld, Version 1.0.0.0, Culture=neutral, PublicKeyToken=null Can anyone help explain what is wrong. Do I need to create a form, I have set the startup object as Sub Main, There is nothing else to choose from Do I need to add a reference to something TIA, Chip ...Show All

  • SQL Server Alerts and Jobs for transaction log processing

    Scenario: I have an alert defined which monitors the transaction log. It should start a job which should backup the transaction log once the log is 75 percent full. So far so good. The challenge is to give the database name to the command for backing up (in our case it is a external tool) the appropriate transaction log I know, that you can use tokens (A-DBN) to do this. I know, that there is a bug in this area, so tokens are not set correctly in SP1 Question: Is there any trick/alternative to create a workaround Regards Norbert ...Show All

©2008 Software Development Network