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

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

chukky

Member List

Anton__
ZaijiaN
mark aoki
MMCompton
Christiana
ClubbieTim
AliciaV
NotTaken
rayfusion
kennethmac2000
igor_22
kshill
Shahar Prish - MSFT
ReLoad
Gaurav Arora
Nachiketa
irvendeep
Pma_1
mcnamaragio
Pockey
Only Title

chukky's Q&A profile

  • Visual Studio Express Editions TabControls

    Simple question. How do I change the name of the tab So that I can name the tab instead of seeing Tab1. Thanks. Me . TabPage1 . Text = "MyTabPageName" or Me . TabControl1 . TabPages (0). Text = "MyTabPageName" ...Show All

  • Visual Studio Tools for Office VSTO 2005 SE Word 2003 addin won't load

    I have been reading through everybody else's questions about why their addin won't load and I've tried everything I've come across but my Word 2003 addin will not load on anyone's computer but mine. These are the things I have done so far: I used the VSTO project template for Word 2003 to create the addin project. I added the SetSecurity project. I included output from both SetSecurity and my addin project to the setup. I installed the interop assemblies for Office 2003 on the target machine. (.Net Framework 2.0 was already installed.) I installed the VSTO SE runtime. In stalled my addin. No addin appears when Word is run. I did some more digging and discovered that the LoadBehavior value in the registry had to b ...Show All

  • SQL Server Can I install both Management Studio and Management Studio Express on same machine?

    I want to install the following on my machine: MSDE 2000 Release A SQL Server 2000 SP4 SQL Server 2005 Developer Edition with SP1 SQL Server 2000 Express with SP1 Management Studio Management Studio Express The only one that I'm concerning is whether Management Studio and Management Studio Express can coexist in one machine. Thanks for any help, Peter ...Show All

  • Visual Studio Express Editions Why Is It So Difficult To Save and Load Form Text Boxes?

    I would appreciate any help someone could give me. I have searched this forum endlessly trying to find a way to save 60 or so text boxes on form1 to a file and then later read the information back into the same text boxes. It seems like I have tried every bit of sample code that I can find and nothing works. I have 5 books on VBE and VB5. I am a complete novice at this so please be gentle. Thanks in advance for any ideas/help. Glenn      Well let's assume I would use another type of GUI then.  What type would you suggest and how can I save and retrieve the user/data inputs to and from a file that is not beyond my abilities to accomplish I am willing to learn and ...Show All

  • .NET Development Creating a "Proxy" for Client-Web connection

    Hi, I have created an application that uses internet connection (think of it as a web browser), but this application is going to run on another computer, by another user, and instead of accessing directly the web, I need that application to access the web, through my computer. So basically I need to create a sort of proxy server for that application, so it accesses the web and receives the data, all done through my computer, that will be using a small application to serve as a 'proxy' for the connection between the client application and the web. ? I need help in creating this kind of server, and I will also need to know what will the client application need to communicate with the 'proxy server', that will be my computer. Here ...Show All

  • SQL Server question about like

    Hello, i'm just wondering if i have for example a table with 2 colummns the first one is some primary key (int) and the other is of the image data type . For example one row would be: key data 232 0x7A5B6789D4E2...(thats just how sql server 2005 express shows me the data when i make a query insede Management Studio Express) now i'm wondering if it is possible to do query for lets say %89D4% with LIKE,(i kinda want to search for a certain pattern of bits or in this case hexadecimal values ) i've tryed but i get an error. I just want to know if it is possible to do this with like and how and if it isn't, what other options do i have (full-text search - ) Well, the problem is that you are lo ...Show All

  • Smart Device Development direct draw error

    When I execute the sample code of Direct Draw Application , i get an error during execution in smartphone 5.0 Emulator,which says " Display Driver does not support a back buffer " and when i execute it on Device then it says " create Surface error ". What can be the probable reason Hi there! I have same problem emulating pocket pc, so maybe anyone solved this problem somehow Does it mean that there is no back buffer support at emulator at all And that there is no way to test programs without real ppc ...Show All

  • Visual Basic VISUAL BASIC 6.0 MSDN ERROR MESSAGE AT HELP MENU, WHAT TO DO?

    I get a message, "The MSDN collection does not exist. Please reinstall MSDN." When I try to access any of the HELP features of Visual Basic 6.0. I do not have an install disc for this. Is there a download or a place I can get this Please note that this forum is not for Visual Basic 6.0 questions, however... The MSDN CD was included as a separate disc with VB 6 when you purchased it. If you have lost it, you are most likely out of luck since VB 6 was released eight years ago. You can, however, access the VB 6 help online at : http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbcon98/html/vbstartpage.asp Steve Hoag Visual Basic User Education ...Show All

  • Visual Studio Express Editions Number of lines in a text file

    Hi I need to determine the number of lines in a file, and then assign the value to an integer. Here's my structure: Do while [the filereader is not at the end of the file] -> filereader should now read line -> for each line add 1 to variable (integer) "testinteger" Loop Does anyone understand my structure Thanks! Johannes easily done my friend Dim theFileToRead as new StreamReader(" file.txt ") Dim testinteger as Integer = 0 Dim theCurrentStringLine as String = String.Empty while theCurrentStringLine is nothing = false 'you could also replace this with: 'while theFileToRead.Peek() > -1    theCurrentStringLine = theFileToRead.ReadLine()    testinteger = testinteger ...Show All

  • SQL Server DateTime Package variable.. only Date no Time?

    I have a package variable that is a datetime... how am I able to set the time of that variable In visual studio on the variables screen if I click on value it brings up a calendar control - I can't seem to edit the time portion of the variable. When I first click open the variables window it will say 9/1/2006 12:00:00 AM - but as soon as I click on the value box the 12:00:00 AM part will disappear and I can't edit it. I've tried on someone elses PC as well to make sure there isn't something wrong with my visual studio Ideas You can edit the time in the Properties window: select the variable in Variables window and then click the Properties window, and type the time in Value property. I'm not sur ...Show All

  • Windows Forms position one form accurately over another resizable form

    My form1 has a button, which when pressed - I need small form 2 to appear exactly under the button. Form1 is resizable, so I guess the button's coordinates will change according to size. Need help on this one please. the following code will be helpful private void button1_Click(object sender, EventArgs e) { Form2 form2 = new Form2(); int form2x = this.Location.X + button1.Left; int form2y = this.Location.Y + button1.Top + button1.Height + 50; form2.Location = new System.Drawing.Point(form2x , form2y); form2.Show(); form2.Location = new System.Drawing.Point(form2x, form2y); } ...Show All

  • Visual Studio Printing msdn2005 topic trees with collapse all option disabled

    I'm grateful to Micro$oft and her great developers for msdn 2005. But there's still alot of work remaining on the print engine. Manuals and comprehensive help stuff like msdn 2005 are better read on paper than on the screen. I've found a way around the 'unfriendly mode of printing a tree of subtopics' (see my recent post on printing msdn tree topics). But how do i print the material without the collapsed '+' buttons closing up all the vital information you need to learn the fantastic .Net technologies. If you disable the collapse button on the documents pane, it has no effect on the contents pane. Maybe there's an internet explorer or jscript script i can write to enable ie to open up all the collapsed material when i choose to print a tre ...Show All

  • Visual Studio Express Editions How can i get parent process Name or Id use .net

    i write a dll for use and want to know how i can get the parent process Name or Id regard Bing This is a dll constructor obtaining the process name: Public Class Class1 Public Sub New () Dim a As String = Process.GetCurrentProcess.ProcessName End Sub End Class ...Show All

  • Windows Forms right click on TreeNode / C#

    Hi! I have a TreeView in one of my frames. What I want to do is the following: when I select a node and make a right click, a pop-up menu should appear so that I am able to delete that node. How can I do that and what would be the steps Thanks! Create a ContextMenuStrip with the Delete command on it, and write the handler to delete the selected node, something like void deleteMenuItem_Click(object sender, EventArgs e) { if(treeView1.SelectedNode != null) { // Root node's Parent property is null, so do check if(treeView1.SelectedNode.Parent != null) { treeView1.SelectedNode.Parent.Nodes.Remove(treeView1.SelectedNode); } else { treeView1.Nodes.Remove(treeView1.SelectedNode): } } } ...Show All

  • Software Development for Windows Vista Strange Exception

    Hi, Waht did I do wrong I have two workflow instances running and want to deliver an Event to on of the Workflow Instances. When I try to raise the event I get the following error. Handling the idEvent 20924, Type [SAPOrderIMEIUpdated] raised the error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Workflow.Activities.EventDeliveryFailedException: Event "SAPOrderIMEIUpdated" on interface type "One.Webshop.OrderHandling.Workflow.DataExchange.IWebshopOrderDataExchange" for instance id "599efbcb-1194-4444-87b1-9551fc9a1a51" cannot be delivered. ---> System.Runtime.Serialization.SerializationException: The object with ID 668 imple ...Show All

©2008 Software Development Network