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

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

nikos_22

Member List

MON205
a.d.m
Maharjan
Graham-BLUR-Turner
BilalShouman
guilhermecvm94558
programmer01
ronks
Mystagogue
SQLBOY36
Sam Barnes
RPW
HighTower
Rastogi
Spuddo
Mark Benningfield
Blast
PedroCGD
d holdsworth
XNA Rockstar
Only Title

nikos_22's Q&A profile

  • SQL Server Web Synchronisation Using RMO

    hi every body please help me out on this issue , since i am at final stage in finishing up the module. Previously i had done web synchronisation using RMO it is working fine at my office where i have an 2003 server which is an domain controller , publisher i have configured on the 2003 server , and i had subscribers on xp Machines where it was well working fine, clients were not on the domain , it is an independent Machine. we had an security error which was resolve by this same forum, ie the client windows login id should exists on the server too. only then synchronisation is happening at our office, Now the problem is i have an same setup , but the server 2003 is hosted at a remote place , which is not an domain controller, n ...Show All

  • Visual Studio Express Editions Numeric Only Values

    If in a Key_down event I want to ensure that the data that goes into the listbox is only numeric do I use a If then statement   I would like it so that if the user input alphanumerica data my program will show a message box say it must be numeric and then reset the textbox to empty and put my focus back on the text box   I tried the following code but I get the error message "must be numeric" even when the key pressed is numeric Private Sub TextBox1_KeyDown( ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown a = TextBox1.Text If Not IsNumeric(TextBox1.Text) Then MessageBox.Show( "Must be numeric value Text Box 1" ) TextBox1.Text = "" Te ...Show All

  • Visual C# Compiling Java code from C#.net

    Hi, How can i compile java source code from C#.I should not use any .java file for compilation. Just i am writing java code in text area and whenever i click compile button, it need to compile from c# and if any errors it need show.Here i should not use VJ# compiler also. Please let me know the solution ASAP. Regards, Hanumanth Reddy.k Hanumanth Reddy wrote: Hey.. Thanks for your response. But my concept is diffirent in this case.Here i should not use VJ# compiler to compile the java code. I need to use javac to compile the java code.But this should be done in-memory compilation like C# and vb.net.Here i am not going to mention any .java file name. The java code ...Show All

  • .NET Development Logging Data Truncation While Using SQLBulkCopy

    Hi, I am using SQLBulkCopy class of .Net 2.0 to copy data from excel to SQL 2000 database. My problem is that I want to log records whose data was been truncated as the field length in the database was not sufficient enough to hold data present in the excel file. For example suppose there is a column called 'Employee Name' in the database as varchar (30) now if I try to insert data using SQLBulkCopy class from excel file having data of more than 30 characters for some rows then somewhere I want a log which helps me to identify that row number 10 & column number 20's data was truncated due to field length. Thanks & Regards, Pritesh Shah I believe you are correct on th ...Show All

  • Visual C# ** Problem with calling unmanaged C++ DLL from C# on a network drive. **

    Hello, I write a C# program which calls a C++ unmanaged DLL. Actually, I write both of them. I put both of C# exe and C++ DLL to a Network folder. When I run the C# exe. The Program gives me an exception. "An exception 'System.Security.SecurityException' has occurred in <my program>." But if I put both the exe and DLL to my local hard disk, the program runs with no problem. Anyone have any idea how to solve this exception Look forward s to hear from you. Thank you, Hello, No, it just say "Exception cannot be handled" But I find that this error only occurrs in some machine, but not in the others. This must be some kind of machine setting or user setting thing problem. Many many ...Show All

  • Windows Forms Splitter resize doesn't work [RESOLVED]

    Hi, I have a control that contains a treeview, a listview and a control of my own (the layout can be seen here: http://i115.photobucket.com/albums/n311/ro88o/layout.gif ). I insert my own control (number 1 in the picture) first and dock it to the bottom of the main control. I then insert a splitter above this. Next I place a panel above this and use a Fill dock. Inside this panel I place my treeview (no.2) and dock it left. I place a splitter next to this treeview and dock this left also. I then place my listview (no.3) next to this and dock it to fill. When I load my control the bottom splitter above my own control works fine, however the second splitter between the tree and listview does not work, the mouse cursor doesn't eve ...Show All

  • Windows Forms I need a .NET 1.1 Windows Form app, but I don't have the tools...

    I am in need to create a small, simple Windows Form Application in .NET 1.1. The problem here is I do not have access to any tools except for the Visual Studio 2005 Express Editions. Can anyone redirect me to some place that I can download a tool to develop my Windows Form Application in .NET 1.1 Basically what I need it to do is this: if (System.IO.Directory.Exists("C:\\WINDOWS\\Microsoft.NET\\2.0\\") { //... } Any advice is greatly appreciated.. the only way to create a .NET 1.1 app is to purchase the Visual Studio 2003 product, or use notepad and manually type out and compile code using the installed .NET 1.1 framework compiler for C#/VB.NET ...Show All

  • Visual C++ warning C4996: 'std::locale::_Addfac' was declared deprecated

    Hello I am trying to store unicode files. I use the way suggested in Upgrading an STL-based application to use Unicode. By Taka Muraoka . at address : http://www.codeproject.com/vcpp/stl/upgradingstlappstounicode.asp df=100&forumid=16224&exp=0&select=788194 while i'm trying to compile the soloution I've got the warning warning C4996: 'std::locale::_Addfac' was declared deprecated My question is how can I remove this warning, or, use any other function instead of _Addfac . I'm looking forwared for any suggestion. Thank you. It doesn't work because loc._Addfac gets three parameters. What is the rational of your response. Thank you for answering me. ...Show All

  • Visual Studio Express Editions Remove Checkboxes?

    How do I remove Checkboxes from my form below is the code I use to create them (How many depends on what the user types in the two textboxes, one for cols and one for rows) but how do I remove them Should the code be placed inside a button event to clear the form or would it be better to place it in it's own sub ie Private Sub ClearBoxes() and have it called when the user enters a number in one of the text boxes Private Sub MakeBoxes() RSize = CInt(RowSize.Text) CSize = CInt(ColSize.Text) MatrixSize = RSize * CSize ReDim CheckBoxMatrix(MatrixSize - 1) ReDim CheckBoxSequence(MatrixSize - 1) i = 0 For RowCount = 1 To RSize For ColCount = 1 To CSize CheckBoxMatrix(i) = i.ToString Dim ChkBox A ...Show All

  • .NET Development CompilerResults contains Type in VS, but not in Excel

    Hello all   I'm writing come classes where code is generated and compiled at runtime (i cut the exception handling and so to keep only the relevant code) Dim lsCode As String Dim loCompiler As ICodeCompiler = Nothing Dim loCodeProvider As New Microsoft.VisualBasic.VBCodeProvider loCompiler = loCodeProvider.CreateCompiler() Dim loParameters As CompilerParameters = New CompilerParameters loParameters.GenerateInMemory = True Environment.CurrentDirectory = IO.Path.GetDirectoryName(System.Reflection. Assembly .GetCallingAssembly().Location) Dim lsaReferencedAssemblies() As String = New String () { _ "System.dll" , _ "mscorlib.dll" , _ "System.Management.dll" , _ "Microsoft.Vis ...Show All

  • Windows Live Developer Forums Trying to get address from a map

    Hello to all, I have used in the past MapPoint web service and I must say testing VE is more than great! I would like to ask this: I am creating a new map with specific Lat Long info that I have. The map is generated fine, and I have managed to create custom pushpins. The issues is that I want right next to the map to have a small area that will show there some basic information for the Lat Long point, like Country name, City name and Address. I am reading the reference but can't find something specific yet. Can you help me on this Thanks! Ok the right hand side that displays the address, is this for: a) the centre of the map b) the cursor position c) the current selected pus ...Show All

  • .NET Development Cannot find configuration tool for .netframework 2.0

    Hi, I just install .netframework 2.0 redistribution package on a Windows 2000 server. The installation went successfully but I could not find any configuration tool. It is not under control panel--administration tools and I could not find any SDK Command Prompt. Did I miss another step..Please help as we need to configure its security. Thanks. It is no longer included as part of the .NET Framework 2.0 installation. You need to install the SDK. See this similar thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1052492&SiteID=1 ...Show All

  • Visual Studio Crystal Report Toolbar

    While running my crystal report on web. I am not getting the Crystal report toolbar in a proper format. regards In Internet Explorer its like A Red Cross(i.e Image not availbel Symbol) Om clicking thaty symbol Like for printing Report It says Object does not support this. In Firefox Text appears Submit query for each tool. And onClick nothing happens regards ...Show All

  • Smart Device Development timeGetTime() on WM5

    Met some link errors of timeGetTime() on WM5. I can not find the winmm.lib on WM5 SDK, which lib should I link with I tried to build a directshow filter on WM5, which has the "strmbase.lib" avaiable. But there are some link errors related to "CTransformFilter". I guess this is because the lib does not include all the classes defined in the baseclasses sample codes. Then I tried to recompile the baseclasses. This link error occured when I tried to build my filter linked with the "strmbase.lib", which is compiled by me previously. ================ ERROR MSG ================ lib(amfilter.obj) : error LNK2019: unresolved external symbol IID_IPinFlowControl referenced in function "public: virtual long ...Show All

  • Visual Studio Team System What machine is more practice to generate the builds?

    Hi What machine is the best candidate to generate the night builds A specifically machine dedicated to builds or a developer machine Which is the best practice Thanks in advance Javier Hi Javier, I would recommend that you have a dedicated machine for nightly builds. You could probably get by for a while using a developers machine, but if someone else needed to investigate a compilation error or test failure on the build machine, the developer would lose some of his resources. There's also the problem of time. Once compilation and tests start taking hours instead of minutes, the build might be pushed into the normal working schedule. There's also the problem of space. Currently, team bui ...Show All

©2008 Software Development Network