Software Development Network Logo
  • Smart Device
  • Visual J#
  • Game Technologies
  • .NET Development
  • Windows Live
  • Visual Studio
  • Windows Vista
  • VS Express Editions
  • Microsoft ISV
  • VS Team System
  • Architecture
  • Visual Basic
  • SQL Server
  • Visual C++
  • Visual C#

Software Development Network >> Ron Snoke's Q&A profile

Ron Snoke

Member List

Gustyn
NL_Sander
Ralphxyz
Bill MacKenzie
odul
MHoess
GavinG
Priyanga
TheKingKev
Daniel Moth
LoreHistory
CPlusPlus
army
Ahmed-Mahdy
SandyZ
awoomer
JUNKMAN
TheBlasphemer
Neetan
e-u-l-o-g-y
Only Title

Ron Snoke's Q&A profile

  • Visual Basic Arrays Visual Basic and fortran via DLL

     Hi! I have an application that was originally written in VB6. This application uses some routines written in Fortran. These routines are available via dll to the VB application. I am now trying to convert the same application to vb 2005 express edition and it seems that the arrays are passed to Fortran in a different way. My guess is that in Fortran and VB6 the arrays are passed by columns and in VB2005 by rows. Is this possible Is there any way to change this Here you have something that doesn't work Help please! FORTRAN subroutine teste(a) real a(0:4,0:2) c=0 do i=0, 4 do j=0,2 c=c+1 a(i,j ...Show All

  • Windows Forms Localized resources for Controls

    I am trying to create a control derived from MonthCalendar so that I can implement culture-aware resource loading.   The MonthCalendar control in VB.NET does not seem to be culture-aware, so I was wondering if it is possible to derive a class from it to implement culture-awareness.  Has anyone tried doing this   I tried overiding the Wndproc method and ...Show All

  • Visual C# check this error please!!!

    check this errok this little program should be the server side and i get on error on: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.Net; using System.Net.Sockets; using System.IO; namespace brood_war { public partial class Form1 : Form { public AsyncCallback pfnWorkerCallBack; public Socket m_socListener; public Socket m_socWorker; public string s = ""; public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { try { //crea ...Show All

  • Windows Forms AppUpdater Not Working

    Anybody else had any troubles getting it working   I've got the folder in IIS set to allow directory browsing, but after AppUpdater.DownloadUpdate() is called, I get this error... 5/10/2004 6:02:47 PM:  UPDATE FAILED with the following error message: System.Net.WebException: The remote server returned an error: (501) Not Implemented.    at Microsoft.Samples.AppUpdater.AppDownloader.Download() &n ...Show All

  • .NET Development Sending signed chars instead of bytes using TCP

    Dear all: Thanks for taking a look at this question, I'm new to c++.net and frustrated in my managed c++ implementation of Async TCP/IP server client communication. Basically I'm using ascii encoding and trying to direct the signed characters from a com port through the net to another com port device, however my working code is using byte array for the tcp/ip send/receive, which turns out to produce different char code(or byte code in integer), Which I believe is caused by I converted signed char to byte array during the net transmission. I googled but found nothing yet how to send signed char array through TCP/IP. ...Show All

  • Visual Studio Team System Rule Interface

    HI...I'm trying to check that an interface name begins with the letter "i" using the following code: public override ProblemCollection Check(TypeNode type) { Interface interfaz = type as Interface; if (!(type is Interface)) return null; if (!(type.Name.Name.StartsWith("I"))) { Problems.Add(new Problem(new Resolution("Interfaces deben empezar con 'I'"), type.FullName)); } return Problems; } could you tell me please what I'm doing wrong. thanks, Cinthia, I just had a look at the binary and the reason your code is not working because you have overridden TargetV ...Show All

  • .NET Development Recursive searches with Regex Class.

    Hi! How can I do recursive searches with the Regex class. I know the Sample with the matching Parantheses ()*, but I need it with BEGIN/END blocks e.g. some text begin    more text    begin       even more text    end end second part begin    text end So the expression should match the outermost begin/end blocks. How can this be done *) \(     ( >         [^()]+         |    \( ( <number>)         |& ...Show All

  • SQL Server problem in Installing SQl Server Management studio express _ (ctp)

    I'm very new to MS SQl Server, i Downloaded MS SQl Server express edition, the problem is i can't deal with it, when i downloaded ( Microsoft SQL Server Management Studio Express - Community Technical Preview (CTP) November 2005 ) every time i try to install it , it give me error message says "The system administrator has set policies To Prevent this installation" How can i over come this problem and install this interface to be able to deal with sql server is there any other software can do this job "making interface for the sql server express edition" Thx Sorry for the messege, i downloaded the SQl Server Management Studio Express A ...Show All

  • Visual C# SQL lookup

    I am a new user to Visual Studio and SQL Server. This is probably a question that has been asked before but I can't seem to find it anywhere. I have an SQL database with two tables. One has a primary key and the second has a primary key with a foreign key referring back to the first table. I display the fields that are of interest in about 9 text boxes. My question is how do I use the text box containing the key for the second table and derive the rest of the information to display in the other text boxes I type in the number and should be able to get the rest of the information but I'm just plain stuck. I know that I can use the views and ...Show All

  • .NET Development active directory update with application.

    I want to be able to update attributes of active directory users. I am using this code to get the user's information. Specifically if the user is active or disabled. ------------------------------------------------------------------------ Dim search As DirectorySearcher = New DirectorySearcher search.Filter = String .Format("(SAMAccountName={0})", userName) search.PropertiesToLoad.Add("givenName") search.PropertiesToLoad.Add("sn") search.PropertiesToLoad.Add("userAccountControl") Dim groupsList As StringBuilder = New StringBuilder Dim result As SearchResult = search.FindOne On Error GoTo ErrorHandler sFirstName = resu ...Show All

  • Visual Studio Team System VSTS Unit Testing For Win CE

    I have built a Win CE app in VSTS. When I attempt to create a test project on that app, it provides the System.dll associated with normal Windows instead of the one compatible with Compact Framework library. I tried re-referencing the Win CE System.dll in the test project and corrected the resulting compilation errors as best I could. However, when I attempted to build the test project, VSTS reported that there were build errors which were not present in the Error List pane. As a result, I could not run any tests. Does anyone have a similar situation and know of the solution TIA. dlausch Can you ...Show All

  • SQL Server selecting colunm with a space ''

    When I submit a sql : select * from view from column='' the table is a view point to oracle table with ole db provider for oracle In mssql2000, the result return rows which containing a space ' ' However, in mssql2005, the result return no rows . Any advise on it The issue is as described below. From the statistics profile output, you can see that in SQL Server 2005 the filter CCY<>'' is being sent to Oracle whereas in SQL Server 2000 the filter was evaluated locally in SQL Server after the data from the remote table was pulled over. In essence, the query optimizer in SQL Server 2005 is doi ...Show All

  • Visual FoxPro How to open the table exclusive for ZAPping?

    Hi Sir, To be able to PACK/ZAP a table it must be open exclusive, such as USE myTable EXCLUSIVE .... My question is, Why there isn't a place in data enviroment (TAB DATA) to stated that myTable should always open EXCLUSIVE so I can pack/zap anytime Please tell me where is the proper place (the way) to open a table exclusively SELECT myTable USE USE myTable EXCLUSIVE thanks Joe If the table is open and you want to use it exclusively temporarily so that you can zap it, you can do this: SELECT mytable USE DBF() EXCLUSIVE ZAP USE DBF() BUT, as others have pointed out, using tables exclusively is not good when you have multiple u ...Show All

  • Visual C++ Debug Assertion Failed

    Hi I have just got our main C appilcation which was developed under Visual Studio .Net 2003 ported/compiled/run successfuly as a release build under Visual Studio 2005. However when I try to run the debug build I get the following: Debug Assertion Failed Program : myapp.exe File : f:\rtm\vctools\crt_bld\self_x86\crt\fstat64.c Line 64 Expression (_osfile(fildes)&FOPEN) I have degugged it to the following function and the fstat call within it: int get_file_size( char *filename) { int fh; struct stat info; fh=open(filename,_O_RDONLY); if (fh==-1) { error_handler(10,TXTOPE, "" ); re ...Show All

  • Visual FoxPro Starting EXE fails, asks for missing FXP

    Hey, I have an app, usually works fine, and it works at many other client sites. But at one it will occasionally hose, and starting the EXE goes to the VFP window (even in my top level form app) and brings up a find file dialog, looking for an FXP. Anyone know why this happens Is the fxp in the EXE file    Could be a path problem, or corrupted file. First, delete the foxuser.dbf and foxuser.fpt files if you have them.   ...Show All

©2008 Software Development Network