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

Software Development Network >> Bjorn Johansson's Q&A profile

Bjorn Johansson

Member List

Rob Ainscough
Beuhla
sjb31988
Squirre1
Noah Phense
thelonesoldier
Yoann
manjunath cv
LibertySt
Jarod.Net
scottburr
Dudets
PeteJM01
Soheil Amjadi
Andrew DeVaughn
SHutch
fspilot2006
JR-J
Montana Jones
entrance80
Only Title

Bjorn Johansson's Q&A profile

  • SQL Server Replication over WAN setup

    Hello, I'm newbie in replication field. At the moment, I am able to setup replication on LAN (1 distributor to few subcribers). However, I found some difficulties on setting-up the replication on WAN. Is there any guidelines, setup documents or examples (like print screen) for me to refer to Hope able to get any assistance at here. Best Regards, Hans First define if the problem is the network connection (routing, firewall, e.t.c.) Then if it is a security problem (different domains without trust, accounts with improper rights, wrong passwords, e.t.c.) Lastly if it is a SQL config problem (e.g. are you running the SQL service with the SA account ) Can you give more details ...Show All

  • Visual Studio Express Editions .ToString

    Hi everyone, I used the following code and got a problem: double Q = 38.5367; label19.Text = Q.ToString("0.00 x 10^-6 m^3/s"); the zero at the "x 1 0 ^-6 m^3/s" will display the third decimal place of Q. It is possible to let it display zero Thanks. Hi, Do you want output 38.54 x 10^-6 m^3/s format of Q Try this way: label19.Text = Q.ToString("0.00")+" x 10^-6 m^3/s"; Cause every zero in the ToString method is regarded as valid digit of the number. ...Show All

  • Visual Studio Super slow installation for VS2005 SP1 beta

    Well, it’s not something new, there are people at Microsoft that work hard to make our life easier, like the Microsoft Windows Vista installer for example, an entire OS in 20 min; and there are some less experienced developers (my assumption only) who are given for some reason the task of creating the VS2005 SP1 installer. Whoever wrote that thing, he, she or they, can say whatever they want, but to take 2 hours to get the SP1 beta installed is just damn stupid, here are 2 hours by a million people in the world, a total of 2 million hours lost, thanks to a group of developers at Microsoft, maybe they could have spend 100 more hours to learn math, or to profile the installer, and could have saved the world a million hours ...Show All

  • SQL Server Can the data tables in SQL Express database be printed out?

    Hi, is it possible to print out the data tables If, yes how to go about doing it how to print 1 table per page I have got reporting services installed. Could you provide some website that are good for beginner like me on how to configure the reporting services to creating the actually report in windows form If I use reporting services to generate a report, is it necessary that I install it on the computer that I deploy my program ...Show All

  • SQL Server sql 2000 database restored sql server 2005

    I have a SQL 2k database backup and I restore it in sql server 2005. Is this now a SQL Server 2005 database or a 2K database in a 2005 server. Means do I need to convert databases somehow when I migrated from 2000 to 2005. Is the above mentioned way a way to migrate... or are ther some conversation tools. Any help / links / ressources would be Great... Felix Felix, The compat level does not change file format of your database. As Jeff said that was converted when you restored. Compat level sets how SQL Server processes certain syntax in your database that has changed over the versions, in case a sproc in your database depends on a quirk in a prior version it will leave your ...Show All

  • .NET Development MDAC and Web page

    Hi there It happens sometimes that some web page wants to install Microsoft Data Access Components (MDAC) and I don’t allow it to do that. So, why the page need DAO component in the first place It seems to me, that it is not used for anything after all (any page information loss). Can someone explain the truth Peca Thank Miha for answering Looking at page sources, there is in many situations incorporated Java byte code array as a subprogram. How I can interpret that code to be assured that it does nothing bad to my system and why it need that particular ActiveX component – for cookies or something else like phishing Peca ...Show All

  • Visual Studio 2008 (Pre-release) The certificate 'CN=localhost' must have a private key that is capable of key exchange.The process must have access rights for

    Hi, My WCF service has following security settings:- at server side(web.config) :- < behaviors > < serviceBehaviors > < behavior name = " myBehaviour " > < serviceDebug includeExceptionDetailInFaults = " true " /> < serviceMetadata httpGetEnabled = " true " /> < serviceCredentials > < serviceCertificate findValue = " localhost " storeLocation = " LocalMachine " storeName = " My " x509FindType = " FindBySubjectName " /> </ serviceCredentials > </ behavior > </ serviceBehaviors > </ behaviors > < bindings > < wsHttpBinding > < ...Show All

  • Visual C++ Every time while relocate : Add Files to Project

    Hi, In our project there are many files I have to add from different directories. And that is working fine. But if I relocate that project folder then path of all the added files is changed. And I have to delete those files and add the same files again every time. Is there any way to give relative path to this files so if I change the location then I need not add all the files again. Thanks - add an environment variable called let's say SRC_ROOT. Make it point to whatever location where your sources are. - unload your project from Visual Studio - edit the vcproj file using Wordpad - replace any path pointing to your files with something like $(SRC_ROOT)\myfile.cpp - save and loa ...Show All

  • Windows Forms list box and datasets

    hey, how do you make it so that a list box shows the items on a dataset     Thanks :) Hey, ok after tying to figure it out, I took a break on doing that part of the program, I came back to it, but, I still can get it to do it from the form to the dataset, but I just realized that I should not do it thrue a dataset... becuase then how are you supposed to backup your bookmarks if you are going to do somthing that involves uninstalling the browser or doing somthing to your computer And that I need to make it a .html file like Netscape and Internet explorer do. I learned how to add column inside of a datesaet thoe :) So that helped a bit on somthing... But now the new problem: How do I make it so it stores it ...Show All

  • Windows Live Developer Forums Question about Bot SDK's

    I want to write simple natural language processing chat bot, and I spent almost entire day trying to find the proper SDK for the job. Here are some of my experiences: - Colloquis was acquired by Microsoft and their BuddyScript SDK is currently unavailable for download, and nobody knows when MS will issue a new version. - Incesoft SDK seems like a nice option, but administrative panel is incredibly slow (most of the users are complaining about their servers and leaving the entire platform), and i couldnt get the echo bot working. Probably had something to do with their servers... - Akonix L7 - At first glance, this project looked really promising, but as soon as i started making something, bunch of problems appeared. It just seems like it' ...Show All

  • Windows Forms Application Deployment (Setup)

    Hello, I know it's possible to perform certain actions in a setup to deploy my application. For example only install one assembly by checking user input (option buttons). This is also documented on MSDN. http://msdn.microsoft.com/library/default.asp url=/library/en-us/msi/setup/conditional_statement_syntax.asp I wonder if anyone knows if it's possible to make for instance an extra dialog having 2 checkboxes, and when neither of them are checked, setup must be stopped. Steven Gilissen You can, but not really in an elegant way without actually modifying the built MSI. You can create a managed custom action and pass the data of the two checkboxes to the custom action. If they are both empty, t ...Show All

  • Visual Basic received System.NullReferenceException in hitting Edit button in FormView

    The datasource of the formView is a sqldatasource object. But when I hit the "Edit" button in ItemTemplate view to access EditItemTemplate view, I received this error message: System.NullReferenceException: Object reference not set to an instance of an object. Here are my codes: Protected Sub formProf_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles formProf.Load Dim rowView As DataRowView = CType (sender.DataItem, DataRowView) ' Retrieve the state value for the current row. Dim PR_DO As String = rowView( "PR_DO" ).ToString() -- got error at this line ....... end sub I found out that rowView object is nothing. This means that the formview doesn't have ...Show All

  • Windows Search Technologies Windows desktop search stopped working after Office 2007

    After I installed office 2007 into XP Pro 64bit, I can no longer use windows desktop search. When I open the search function I get a blank window. If I use the smal Icon on the task bar a dialog says "This app...because MAPI32.dll was not found. Re-installing..." Re-installing what app Office 2007 No Eudora - PC is a fairly recent/clean build with basic Microsoft stuff, including Admin, Support and Exchange tools, Office 2007. I uninstalled Search 3.00, booted and installed the 3.01. It said it had ~3000 mail items to index for awhile - then now says there are 0 items to index and it's monitoring for new items. Searches for any Outlook content turns up nothing. Very odd. ...Show All

  • Windows Forms Visual Studio 2005 Windows Installer Custom Actions

    I am in the process of deploying a project using Visual Studio's Windows Installer but would like to check software activation keys before doing the install. I've looked at custom actions but they are executed after the installation. Is there a way to to this Regards Not sure what you mean by a "Launcher Process" Regards ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problem with DirectX and Visual Studio 2k5

    Hey,    I've noticed something very wierd. I am using Visual Studio 2k5 for sometime but I've never tried to complile my previous Direct3D relelated projects on this release of Visual Studio, maybe because it never occured because the machine that I was developing them had 2k3. Now for the Problem if you create a Win32 default application with MFC support (or not) that you try to write the following stuff you get linker errors and sometimes complier errors. I've never had them before and I don't know why they are occur. I checked for the Project Properties, altered some stuff (such the use of precompiled headers etc with no luck :S). The DirectX samples compile fine but I don't know the cause of the pr ...Show All

©2008 Software Development Network