Get .net Sample Master Froms?
Nov 17, 2009where can I get vb.net sample master froms please?
View 1 Replieswhere can I get vb.net sample master froms please?
View 1 RepliesI have a multiple form project that I have been working off and on for a while now. Recently I started up annother project and realised both programs would work pretty well together. So I combinded both projects into a single solution, but I am still relitively new to VB and I can't figure out how to have the first project launch a form in the other project.
View 4 RepliesI have achieved for the most part what the users want, which is to be able to have multiple MDIChild forms open at once for example the Child form displaying the data and the Child form displaying the user's manual. The child forms can be resized to some extent and can be moved around within the Parent form. When the user clicks on the title bar of one of the Child forms or selects a menu item opening a new Child form the newly opened Child form or the Child form on which the user has clicked the title bar gets focus.
I also have one Child form which will not scroll with the mouse wheel even when it has focus. Actually there is very little of the form that is not ocvered with controls. It has about 8 group boxes with several otehr controls within the group boxes. When I click on a list box within one of the group boxes the list box will scroll through the values, but when some other control gets the focus or the forms itself has focus (via clicking on the form's title bar)the form will not scroll with the mouse wheel. The other Child forms do scroll with the mouse wheel.The AutoScroll and AutoSize properties of the Child form are both set to true. I also have VerticalScroll and HorizontalScroll visible and enabled properties sey to true
I have a nested master page that has its own master page. The parent master page has a property defined in its code behind.
Public ReadOnly Property SelectedPage() As String
Get
Return _selectedPage
End Get
End Property
How can I reference the parent master page's property from within either the child master page's code behind Page_Load or aspx template page?
I created a sample ASP .NET app. I set the location to File System. When I tried to debug it I get an error message: "Internet Explorer cannot display this webpage". I was meant to understand that I can test this app. without Internet Connection. Why is it telling that?Only performance counts!
View 3 RepliesThis is the sample in C#
using System.Web.Script.Serialization;
var jss = new JavaScriptSerializer();
var dict = jss.Deserialize<Dictionary<string,string>>(jsonText);
Console.WriteLine(dict["some_number"]); //outputs 108.541
For I keep getting errors when I try to use an online converter to convert it to vb.net. Does anyone know how to rewrite this in vb.net?
The error I get from [URL] is: line 3 col 1: EOF expected
Is it possible to generate the sample xml(Used as Request xml for web service)from the xsd using vbscript code?
View 4 RepliesAnybody can tell em where can i get a com+ code sample (if it s ntier, better)?
View 5 RepliesI have found this code in the internet and I try it but it has an error. Here is the code that I get from the internet:
[code...]
i just trying to develop Dashboard application in vb.net but can't find any good example[not even in C#.net]..[either VB.NET or C#.NET and Doesn't using any third party control like VisiFire or etc] for dashboard style application.
View 1 RepliesI am a beginner VB.NET programmer, and I was hoping that there is a post that has a application that adds, edits, and deletes records from a Access database. Nothing fancy, just a simple interface to get me started.
View 1 RepliesI was wondering is there any sample programs to load & run within Visual Basic?
I've just installed VB 2010, & now I find no sample programs at all
Convert this solution from C# to vb.net? I'm not familiar to C#; It's a sample project that use DShow.net to capture video from webcam.[url]...
View 5 RepliesI'd like to sample the data from the Arduino @ roughly 200Hz. Is there a more efficient way to do this than using a timer (which is what I am currently using)? Currently I am using[code]....
View 3 RepliesI need to take a colour sample off of a window. So, given a window handle, and a coordinate, return the rgb color.
Can that be done via System.Drawing, or is that a straight API kind of task?
The sample program for the Chart Control is written in C#. It provides VB snippets but there appears to be a key piece of information missing or at least hidden. Can anyone explain to me what is needed to get the Chart Control working in VB.NET VS2008 Pro?Using the Chart Controls sample, I tried to create a RangeBar. The only thing showing is a big red X across the chart. Here's the code almost exactly as taken from the VB sample:
Private Sub ChartSample()
' Populate series data
chrtTCP.Series.Add("Tasks")
[code]....
As I am to VB.NET, I would like someone to help me on SearchButton code. I am using MS Access database. I would like to get the result of search commond into ListView.
View 3 RepliesI can retrieve the contents of a webpage into a variable like:x = objIE.Document.body.outerHTMLBut during development (data parse), Ikeep pulling up a live site and instead just want to store some sample html in a format that can be placed in a variable. The issue is that trying to directly place a raw html sample into a variable creates errors and would require going through and escaping quotes etc.
View 1 RepliesI downloaded some VB 2008 sample project from the net.Initially they seemed to run fine. But then they stopped running. They fall over when an attempt is made to connect to the northwind database. The error messge says something like "the sql or sql express and the northwind database has to be installed ". Which of course they are .
One possible reason that the code stopped working is that I tried to move the SQL on my Pc from one drive to another ( I moved it to another hard drive using cut and paste ). When I realise the Vb code had stopped working I simply reversed the above procedure, i.e cut and pasted back to the original drive.I think I should also add that there any different versions of sql on my PC, and I think the one that I cut and pasted is not the one used by the sample project.
We are moving from VSS to TFS2010 and I need to convert a program that does the checkout and update of items. Does anyone know of a good example of how to use the TFS2010 API to find and item and check it out and then check in the new version?
View 2 RepliesI use VB 2008 and MS Access DB..i have a combobox there that should have the list from the database.I'm having problem with this code.[code]And by the way, can you post a link or a site where can i download sample POS Program.
View 4 Repliesi convert some code from c# sample from internet and i try to convert it to vb.net. I had some difficulties to resolve some error after conversion.
Here's the code ;
CODE:
I have converted this parallel extension c# code sample to VB.NET
[URL]
using the Developerfusion tool here but I am getting multiple errors that I cannot resolve with my limited C# experience.
1) After getting errors I converted System.Runtime.CompilerServices.Extension to Global.System.Runtime.CompilerServices.ExtensionAttribute which is the closest I could come up with, and I get errors on the line (26)
Return SendTaskCore(ping, userToken, Function(tcs) ping.SendAsync(address, tcs))saying that ping.SendAsync(address, timeout, tcs) does not produce a value
2) Around line 196 handler = Function(sender, e) EAPCommon.HandleCompletion(tcs, e, Function() e.Reply, Function() ping.PingCompleted -= handler)
I get an error on 'ping.PingCompleted' saying'Public Event PingCompleted(sender As Object, e As System.Net.NetworkInformation.PingCompletedEventArgs)' is an event, and cannot be called directly. Use a 'RaiseEvent' statement to raise an event.
[code]....
i need to build a small data acquisition terminal in VB express 2008. it would be able to accept data packets on any serial port or USB virtual serial port. and to parse and send the data to excel.
View 2 Repliesfind a DataGridView CRUD Sample.I need to find the events of the DataGridView, because I can't do this, special when I need to change from column 1 to column 2 and from column 2 to column 3.The only that I need is the link.
View 13 RepliesI'm looking for a control like the image bellow, treeview combined with a listview, and with editable cells.does someone have a sample code or some information on how can i do this?
View 7 Repliesi try to build an application that will automatically press a button on a keybroard depending on colour and location in the screen.for example: "Aplication A" active and on location x,y (10,30) there is colour "Red" so that "Aplication A" will press button "Tab" but "Application A" is not a bot program, just another aplication
View 5 RepliesI am trying to develop in my pc this basic 3 tier solution out of these links [URL] and [URL]
I have problems because the dataset in one part is OrdersDataSet.xsd, as said in the link ,but some lines bellow in the code show me this lines:
Imports ta = NorthwindDataSetTableAdapters
Partial Public Class NorthwindDataSet
Private taOrders As New ta.OrdersTableAdapter
[CODE].........
When i put this in the code it tells me an error message simmilar to this the namespace does not exist or do not have a public member.
I recently aqquired VB 2010 Express but have limited programming experience.I am looking for sample code and/or literature which will show me how to plot a Y=f(X) curve - for example code which will plot a straight line, a parabola, etc.I need it as a template from which I can learn about how to build such a graphing program and then tailor one to my needs.
View 3 RepliesI'm looking for an open-source VB.NET app that demonstrates a lot of .NET's power, ideally something that works fully offline. Maybe some of you have encountered an amazing utility app on CodeProject?
View 1 Replies