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

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

BobishKindaGuy

Member List

Keith Hill
Greenstrike
Fahad349
llkoolj
NoEgo
AlfonsAberg
Narayan Kulkarni
George Waters
Beetle54
itsdzs
AlucardHellSing
bw12117
DotNetSavvy
Jason.J.Huang
careyr
FranzCarl
Mitch Wardrop
DBLearner
barkingdog
logtorahul
Only Title

BobishKindaGuy's Q&A profile

  • Visual Studio Express Editions Options page with TreeView control

    I don't mean to rant, but for the past nine hours I have tried everything I can think of to create an Options page with a TreeView control, and I still can't figure it out. My goal is create an Options dialog with a layout very similar to the one is VB 2005 Express Edition. I've searched through IntelliSense an insane number of times to see if I can find something useful. And with no luck, I'm afraid. I can create the TreeView control, but the "dynamic" controls are what's giving me trouble. Simply put, how can I display X number of options on the right side of dialog when a certain node is selected, and then display a totally different set of options when selecting another node I was thinking of creating a load of User Controls, ...Show All

  • Visual Studio Express Editions Connecting VB Express 2005 to ODBC 3.51

    Hi Im a new guy at VB but im loving it :) im having some trouble in connecting an MYSQL DB in the Visual Basic Express 2005. I use the wizard for adding new connection but the pre configured connection doesn’t apear, only the connection driver to Access Database and SQL Server driver. But the driver (and connection) to Mysql server isn’t there.Can some one help me Best regardsFrederico Pereira your connection string should look like this: www.connectionstrings.com MyODBC 3.51 Local database: "DRIVER={MySQL ODBC 3.51 Driver};SERVER=localhost;DATABASE=myDatabase;USER=myUsername;PASSWORD=myPassword;OPTION=3;" and you will need to have the MySQL ODBC 3.51 driver installed on your machine ...Show All

  • SQL Server Merge synchronization does not synchronize the data

    Hi! I've the following replication topology: SrvA (Publisher/Distributor) -> (Transactional Publication/Push Synchronization) -> SrvB (Subscriber, Publisher/Distributor) -> (Merge Publication/Pull Synchronization via HTTPS for remote clients) -> Client (Anonymous Subscriber) To test synchronization with this tier I do the following: 1. Update data on SrvA 2. Push changes to SrvB (there are transactions that replicated) 3. Run RMO Merge Agent (.NET application) on Client and get messsage "No data needed to be merged", although there were changes made on publisher SrvA and SrvB I saw the thread where similar problem have been discussed ( http://forums.microsoft.com/TechNet/ShowPost.aspx PostID=664153&a ...Show All

  • Visual Studio Tools for Office Filling a ListObject is really slow.

    Hi there, I've a listobject that I've bound to an array of objects, each class of the object has about 7 members. When this array has about 1000 elements (1000 rows in the listobject) it takes over 10 seconds to fill it and display it. This array is created from a webservice call so it'll take about 5+ seconds to retrieve the data so another 10 to get it on the screen is far too long a time. I used this technique below to see if manual 'painting' of the cells would be any quicker, for ( int i = 0; i < ds.Length; i++) { (Application.get_Range((Excel. Range ) this .Cells[i + 1, 1], (Excel. Range ) this .Cells[i + 1, 7])).Value2 = new object [7] {ds[ i].company, ds[ i].station, ds[ i].unit, ds[ i].fuel, ds[ ...Show All

  • Windows Forms Mouse wheel on focused WebBrowser control doesn't always work

    I have a WebControl on a form showing some content. The scroll bars are enabled and visible. When the mouse is over the control I activate it with the Focus() method, however the mouse wheel doesn't always work. Any suggestions ...Show All

  • SQL Server suggestions

    I want to transform textfiles to sql server set based and not row based.what would be the best way to transfer. let me know. sureshv wrote: yep i did try data flow task.And in dataflow i used conditional split,lookups etc...but do they transform data using set based or row based..how do i transform data set based Maybe its just me being stupid but I still don't understand. What do you mean you want to transform data "set-based" Can you give an example -Jamie ...Show All

  • Smart Device Development Application installation error

    Hello, I am using VB.Net 2005 to build applications for a Dell Axim X51v (Windows Mobile 5.0). This is not my first program written for this PPC and all have built and installed fine, until now. I last built a CAB file for this app about 2 months ago to supply to a customer for pre-view. I have now made all requested changes and am attempting to build the CAB for the final version, but it will not install. When running the CAB on the PPC, it asks to choose the location to install the app, Then I see the progress bar and it progresses all the way to the end. It errors at the end with "Installation of MyApp was unsuccessful." and removes everything. There is no indication as to what the error was. If I watch the explorer wind ...Show All

  • Visual C# keep in memory

    Hi, I need to keep in memory a value that the user would have enterred. i don't even know if it is possible Can you help me First of all keep in mind, When applicaiton is closed all memory it used is gone. So you cannot keep a reference of that (Atleast not in the modern Languages). The best thing you can do is ofcourse would be the use of Client Settings of .Net. Simply create a new key put a value in it and go... You can also add your own Custom types in Client Setting. To do it, Double Click Settings.setting under Properties in Solution Explorer I hope you will get what to do next. When a Key is created simply from your code you can access that in read/write mode using: glob ...Show All

  • Visual Studio Team System Can I record memory usage with my load tests?

    Hi, This may be a silly beginner's question, but I am just starting to deal with load tests and can't find this information. I need to measure memory usage using my load tests. I can't find how to do that. The only things that seem to be recorded in the load test results are request and response times. Is there any way to measure memory usage using the VS2005 load tests And if yes, what am I missing How do I configure my load tests to record memory usage Thank you in advance. It may mean you don't have access to measure the perf counters on the server. If you're running the tests locally (not on a controller), make sure your account has access to the server. Once you're sure you have acces ...Show All

  • Visual Studio Is it possible to use PrintPreviewControl to see preview of ReportViewer?

    Hi, I want to use print preview control to see the preview of the report rendered by RevportViewer control. Is it possible to do so Thanks in advance. Vijay You can generate EMF files from the control and use them in the PrintPreviewControl class. MSDN has a quick sample on using the PrintPreviewControl at http://windowssdk.msdn.microsoft.com/en-us/library/system.windows.forms.printpreviewcontrol.aspx . Instead of calling e.Graphics.DrawString() as that sample does, you would render out each EMF file (for each page of the report). There are some samples the demonstrate how to programmatically get EMF files from the ReportViewer control at www.gotreportviewer.com . Take a look at the "Print fro ...Show All

  • .NET Development TcpListener getting 10042 error code

    When creating a TcpListener object I am getting error code 10042. Below is the code I am using. IPHostEntry localMachineInfo = Dns .GetHostEntry( Dns .GetHostName()); IPEndPoint localEP = new IPEndPoint(localMachineInfo.AddressList[0], System.Convert.ToInt32(tbPort.Text)); TcpListener listener = new TcpListener(localEP); listener.Start(); When debugging this code I notice that right after listener object is created I see error code 10042 (An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call). am I missing a configuration setup It did not make a difference. Actually I've just noticed that before creating the TcpListener object, I am getting error code 10045 ( ...Show All

  • Software Development for Windows Vista when exactly the WorkflowPersistenceService.SaveWorkflowInstanceState method invoked?

    in msdn, it says it invoked after Unload Event. And if the UnloadOnIdle set to true, it did! but if the UnloadOnIdel set to false, the WorkflowPersistenceService.SaveWorkflowInstanceState still called sometime i'm not sure before WorkflowRuntime.Completed. But the WorkflowRuntime.WorkflowUnloaded Event DID NOT triggered that time. Why Have a transaction scope activity in your workflow or a custom activity with the PersistOnCloseAttribute on it will cause your workflow to explicitly persist after their execution but they will be kept in memory. ...Show All

  • .NET Development Invoking A webservice dynamically without adding a webreference!

    I have an issue with ‘Dynamic Webservice Invokation’. I have posted this on may sites including http://forums.asp.net/ & http://www.4guysfromrolla.com but it seems that no body is able to answer. So I m emailing you my issue mentioned below hoping to get some help from you. I have a webservice ‘A’ having a method ‘Update’ which accepts an array of complex type ‘ComplexType’. Now we need a way to call the service ‘A’ dynamically from another web service say ‘B’ by providing URL of service ‘A’, method name & the ‘Complex’ type (shared type) parameter. I tried to make this working using Reflection by creating a dynamic proxy using CodeDom in C#, but getting errors with message as: {"The ...Show All

  • Software Development for Windows Vista Unpleasant surprise after installing Visual Studio SP1

    Dear all, Beware of installing Visual Studio SP1 if you have Workflow Foundation Extensions for Visual Studio installed. Everything looks ok until you try to create a new workflow. At this point, the binding of activity properties to dependency properties refuses to work. None of the dependency properties appear as valid choices for binding to. Also, the workflow snippets no longer work. There is a simple solution to these woes: Run the Visual Studio 2005 Extensions for Windows Workflow Foundation setup program and Repair your installation. This is not mentioned anywhere in the VS2005 SP1 release notes. Dear Kushal, I'm glad you can reproduce the issue with the workflow snippets. Having created a new Sequentia ...Show All

  • Visual Basic ListBox.Items.Add() doesn't work for me

    Hey everyone, I'm trying to add data to a listbox, but I get a object reference error. Here is a exmaple of my code: The listbox is already on the form: listbox1.Items.Add("Test") listbox1.Items.add("test1") When I run this code, I get a object reference is set to null(System.NullReferenceException) Can anyone help thanks, Brandon M. Hunter I Finally got it. Here is my solution: lstBXSC = new ListBox lstBXSC.Items.ADD("Test") This worked. Buy why i understand the previous error message that I recieve, but I already had control dragged onto the form. Once the control is on the form, a new instance is created right ...Show All

©2008 Software Development Network