I have written a small program for Windows CE and Pocket PC devices, using embedded Visual Tools. I want to upgrade this app to .NET CF. What I want to know is: Can you purchase C# .NET Standard and then add in the compact framework, or is the ONLY way to develop with the compact framework by...
Is there some control that corresponds to the FileDialog control, except with folder listings only? Or do I have to create my own, using say, a tree view? If that's the case, how do I get things like My Documents and My Computer and My Network Places?
Kevin
Is there anyway to pause a stored procedure while waiting for user input? For example, I have a business rule that prohibits finalizing transactions that don't match the bill amount. But we have a new client company where they will accept $1 under or $500 over. Sometimes. We have to ask...
I have a flat file that has several non-relational fields, such city_due_1, city_due_2, city_due_3, city_due_4.
There is also garbage 1-4, sewer 1-4, and water 1-4.
I would like to normalize this a little by bringing these fields into their own seperate tables, for example:
bill_num int...
Okay, here is the hack, but I'm really not happy with it written this way:
Clipboard.SetText Text1
Shell "Notepad.exe", vbNormalFocus
SendKeys Clipboard.GetText
What I would like to do is use the SetWindowText function to put certain text directly into notepad, instead of sendkeys...
I'm baffled. On Form1, I have the following lines of code:
Private Sub Form_Activate()
Dim fso As New FileSystemObject
Dim fld As Folder
Dim fil As File
Set fld = fso.GetFolder("C:\Temp")
For Each fil In fld.Files
Me.Caption = fil.Name
DoEvents...
Has anyone ever replicated the form that shows the neat animations when you run a dts package from the Enterprise manager for use with VB packages? I want to show the status of the imports (several are done every day), and that is just a really neat form...
If anyone has any information on...
I am using MSDE right now for a new database, that eventually will need to use the full blown sql server. One limit of the MSDE is it doesn't support linked servers... I am having trouble using OPENROWSET and OPENDATASOURCE, does anyone know if it is because I am using MSDE and not SQL Server?
I have my users logging into a secured section of my website. When they hit the logout button, I send them to a page that has basically one line of asp code: session.abandon. If they hit the back button after logging out however, they can see the pages that they viewed while they were logged...
On my windows 2000 developement machine, the line
Private Function GetSummary() as ADODB.Recordset
works fine, but when I compile the program and run it on an NT4 box, I get an automation error. Has anyone seen this before, and is there some sort of service pack or something I should run, or a...
I am running a query on an Access table through VB with ADO. Basically I am looking for an occurance of an exclamation point (!) anywhere in a text field. So I use the SQL:
WHERE fieldname LIKE '%[!]%'
I have also tried:
WHERE fieldname LIKE '%!%'
Every other time I run the query, it pulls up...
I am running a query on an Access table through VB with ADO. Basically I am looking for an occurance of an exclamation point (!) anywhere in a text field. So I use the SQL:
WHERE fieldname LIKE '%[!]%'
I have also tried:
WHERE fieldname LIKE '%!%'
Every other time I run the query, it pulls up...
I didn't explicitly DROP #temp at the end of a procedure, and the next time I ran it, it gave me an error message that the table was still there. I added the DROP #temp now, but I thought a temp table was automatically destroyed when the process it was created by terminated... I guess I'm...
My boss just came to me with a question: We will be purchasing a product (Electronic Time Clock software) that will come with the Advantage database server (and only five CAL's, apparently). This will be a low-load database/application. He wants to install the Advantage db server on the same...
I want to monitor windows messages pertaining to a certain subdirectory (or all directories and ignore inpertinant ones), the only problem is I'm not sure where to start... Can anyone give me a heads up on this?
Basically I want to wait until a file has been closed, read certain summary...
I have the web server, and a file server on two different machines... I want to include a .tif from the file server, but I'm unsure how to do it in ASP... I know this can be done in PHP, so I might end up writing a wrapper, but I'd prefer not to.
Thanks in advance.
Kevin
I am having a funny array problem:
I build a multi-dimensional array: a(250,10) Most of the elements don't really use any index in the send dimension(10) past 0. this leaves null values in 1-10. When I try to loop through the array, and stop looping when I come to a null value, it still...
I'm building a php/javascript page and I wanted to write some comments about my client side javascript code that I wanted "hidden" from browsers. Solution: Enclose the comments in php tags:
<? /*
These are comments
*/ ?>
I know its not the most useful tip in the world, but a lot...
I have two tables tDocumentsCommon and tDocumentExceptions. This is my query:
mysql> select * from tDocumentsCommon Where DocumentID NOT IN (SELECT DocumentID FROM tDocumentExceptions WHERE CompanyID=6);
Yet when I run this I get the following error:
ERROR 1064: You have an error in your SQL...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.