I have been getting an error in VB.net "object reference not set to an instance of object". Can you tell me what are the causes of this error? thanks..
I have problem in generate report. I use crystal report 8.5 with vb.net 2008,what I want is when I generate report it will appear red value, if the value is more or less than actual value else it will give default value but when I put this code it give me wrong result
If {Intake.wheatType} = {Spec.WheatType} AND
{Intake.HB43} >={Spec.M_Min}…
Hello everyone,
I have a client with a bunch of children using about 30 machines on a regular basis.
All machines that the children user are set with Static IP Addresses.
The machines that the kids use, I would like to be able to run a script that will remove the default gateway so they cant get to the Internet.
Then I need another that will…
Visual Basic
Create a new project with the Empty Project template (Visual Basic - Windows)
Go to the project properties, and change the Application type by choosing something else or reselecting Windows Forms Application.
When reselecting, Visual Studio will automatically add references to System.Deployment, System.Drawing and…
I need a way to automatically change the read/write permissions on a folder, on an Windows XP Embedded machine.
The XPE image I'm using doesn't have all of the standard Windows tools, and apparently cacls is one of those tools that it doesn't have.
If I simply type cacls into my command window, it tells me
'cacls' is not…
I'm very new to this ms access 2007. I have a copy of a charitable contribution template
charitablecontributions.accdb.
I would like to know where I can find the code of it?
I opened it by holding down the shift button and double click on it and it will open to a normal ms access where you can modify the table and so.
But…
Please i need your help.
I need to move every 3 rows into a new colomn.
--Let's suppose i have this:
Ambassade de France
S.E. M. Patrice PAOLI
01-420000-420150
Ambassade de France
Mme. Jamilé Anan
01-420000-420150
Ambassade de France
Mme . Marie Maamari
01-420000-420150
--I need them to be Like this:
Ambassade de France …
Hi
I'm very new to this ms access 2007. I have a copy of a charitable contribution template
charitablecontributions.accdb.
I would like to know where I can find the code of it?
I opened it by holding down the shift button and double click on it and it will open to a normal ms access where you can modify the table and so.…
Working on an ASP.NET MVC application and needed the ability to resolve a URL from a partial view. For example, I have an image I want to display, but I need to resolve the virtual path (say, ~/Content/Images/New.png) into a relative path that the browser can use, such as ../../Content/Images/New.png or…
Working on an ASP.NET MVC application and needed the ability to resolve a URL from a partial view. For example, I have an image I want to display, but I need to resolve the virtual path (say, ~/Content/Images/New.png) into a relative path that the browser can use, such as ../../Content/Images/New.png or…
Over the past two weeks I've showed how to build a store locator application using ASP.NET and the free Google Maps API and
Google's geocoding service. Part 1 looked at creating the database to record the store locations. This
database contains a table named Stores with columns capturing each store's…
Making Sense of ASP.NET Paths
ASP.Net includes quite a plethora of properties to retrieve path information about the current request, control and application. There's a ton of information available about paths on the Request object, some of it appearing to overlap and some of it buried several…
I just released an open source project at codeplex, which includes a set of T-4 templates to enable you to build logical layers (i.e. DAL/BLL) with just few clicks! The logical layers implemented here are based on Entity Framework 4.0, ASP.NET Web Form Data Bound control friendly and fully…
Just a quick one this, but useful for mature BizTalk solutions, where over time the configuration settings can get confused, meaning Debug configurations building in Release mode, or Deployment configurations building in Development mode. That can cause issues in the build which aren't obvious,…
We just released the first service pack for the Q1 2010 release of Telerik Extensions for ASP.NET MVC. As you may have guessed this is mostly a maintenance release addressing all reported bugfixes. It is important to note that the service pack will be available only to licensed users. We will…
Hi,
I have a little problem. I use the Html.DropDownListFor helper to render a dropdown list to the client.
But I can't set the selected value in dropdown list.
<%= Html.DropDownListFor(model = Model.CalculationClassCollection, new SelectList(Model.CalculationClassCollection, "ID",…
I have a view model that looks like this:
namespace AutoForm.Models
{
public class ProductViewModel
{
[UIHint("DropDownList")]
public String Category { get; set; }
[ScaffoldColumn(false)]
public IEnumerable<SelectListItem> CategoryList {…
Can someone provide a simple example of how to properly use Html.RadioButtonFor? Let's say it's a simple scenario where my model has a string property named Gender. I want to display two radio buttons: "Male" and "Female".
What is the most clean way to implement this while…
Very new to C# and JSON. I have been struggling with this problem for about a day and can't figure it out.
JSONLint states both JSON strings are valid.
Trying to deserialize the following
{"items":[{"id":"1122267","quantity":"1","bundle":"1"}],"seconds_ago":"1"}
throws…
I am just looking a bunch of codes that I am trying to learn from an open source project and sometimes I see a square brackets above a function such as:
[EdmFunction("NerdDinnerModel.Store", "DistanceBetween")]
public static double DistanceBetween(double lat1,…
I am writing a small application that does a lot of feed processing. I want to use LINQ EF for this as speed is not an issue, it is a single user app and, in the end, will only be used once a month.
My questions revolves around the best way to do bulk inserts using…
When i serialize the following:
[Serializable]
public class Error
{
public string Status { get; set; }
public string Message { get; set; }
public string ErrorReferenceCode { get; set; }
public List<FriendlyError> Errors { get; set; }
}
I get…