1
vote
1answer
81 views
C# Lambda Conversion to VB [closed]
Hi I have been looking at certain tutorials on sharparchitecture and trying to no avail (the online convertors don't seem to be able to do this):
private Action<AutoMappingExpressions> …
0
votes
3answers
40 views
Unexpected reinitialization of variables declared in VB6 DLL module
I have a VB6 DLL embedded in some ASP pages. The DLL hits a Codebase database, an obsure and obsolete database engine (a dialect/variation on dBase) that virtually no-one has even heard of. It takes …
1
vote
2answers
40 views
Does RTLCopyMemory work in Vista?
I've noticed that RTL*Move*Memory seems to work just fine. But when I try to use RTL*Copy*Memory I get: "Can't find DLL entry point RtlCopyMemory in kernel32". Here is my declare:
Private Declare Sub …
0
votes
3answers
45 views
Password Recovery using Asp.net
Hi,
In my application, the password is encrypted and if the user forgets the password , there is no way to recover the password.Now we are cancelling that user account and creating a new one.Now i …
0
votes
1answer
13 views
detecting/preventing error/deadlock when opening/reading text file
I am reading file with text contents on it.
sample dictionary.txt contents:
aa
abaca
abroad
apple
Snippet A:
Dim path as String = Server.MapPath("dictionary.txt");
Dim dictionary() …
3
votes
1answer
89 views
A GINA replacement in a .NET language?
I have searched quite a lot of places and I only found one GINA replacement called pGINA but it is in C++ which I don't know at all.
Does anybody know one in either C# or VB.NET?
(I'm writing …
0
votes
3answers
41 views
Role Management in asp.net
Hi,
In my project i have a side menu from which i am redirecting to different pages. I have used the .NET ADMINISTRATION TOOL for the login purpose. All the pages are displayed in my sidemenu so that …
1
vote
2answers
35 views
determining which DLLs are in memory
I have a problem with a VB6 DLL and some of the behaviour leads me to wonder whether Windows is unloading it from memory after a period of inactivity. Are there any good applications/techniques for …
0
votes
1answer
37 views
WPF/Silverlight: Instantly render large amounts of multi-colored text
I need to constantly display large amounts of colored text in WPF or Silverlight, and I need the user to percieve it as showing up instantly.
Currently I'm doing this using a canvas and textblocks, …
-2
votes
1answer
90 views
C++ moving labels, and pictures
Whats the code to move pictures left to right using x and y axis instead of hide and show.
0
votes
2answers
57 views
how to check if a string contains an alphanum chars appears at least n times consecutively
I am testing for a string if it contains at least n chars in consecutive order:
I have this regex but it doesn't seems to work
(\w\1){3,}
Can someone please help!!!
Thanks
0
votes
0answers
32 views
Gateway Page Between ASP and an ASP .NET Page
I'll admit, I am pretty new with ASP .NET programming and I have been asked to take all our gateway pages (written in classic ASP) and make one universal gateway page to the few C# .NET applications …
1
vote
3answers
23 views
retrieve all possible substring matches with n characters from a string
Basically I want to retrieve all possible substring matches with n characters from a string, Here's my initial code but it only returns 2 matches.
String input = "abc12345abcd";
Regex regex = new …
0
votes
0answers
50 views
Outlook MailItem Save/SaveAs
Hi,
I have an outlook add-in that allows the user to save an email into a database. When the user does save the email i modify the email subject so it can be identified as being saved.
Saving the …
0
votes
6answers
115 views
Number of occurences in a string
I'm a total noob as far as visual basic goes.
In class I need to do the following: "Write a program that requests a sentence from the user and then records the number of times each letter of the …
