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...
Use a CAST or CONVERT with the SUM, to make it an int, or a better way is to use the datediff function:
SUM(DATEDIFF(minute, startdate, enddate))
This will give you the breakdown in minutes, which is good because if you use datediff with hours, it might round down .25 hours, so some employees...
I think that you may have some firewall or VPN issues. have you check all the ports that SQL server uses, and that you can actually communicate through them from office to office?
Kevin
I'm not sure if you can rename a column using ALTER, but couldn't you create an updatable view using an Alias?
Example:
SELECT F_Name AS First, L_Name AS Last FROM Names
Kevin
aaaaarrrgh! I always forget to do something simple, such as: WaitForInputIdle pi.hProcess, INFINITE
Once I did that, I was able to get the handles with GetGUIThreadInfo! Thanks, LazyMe.
Kevin
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...
Well, you have to keep in mind that your users will probably need to have at least one .dll included with your package: msvbvm60.dll, the VB runtimes. Then any other references in your project will also get added with the wizard, and any other .OCX's (ActiveX controls, or Components) will be...
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...
update projectcustid set timerecstatus='c'
from ((timerec
left join task on taskid=timerectaskid)
left join story on task.storyid=story.storyid)
left join project on project.projectid=story.projectid
where timerecstatus='n' and projectcustid='wgs'
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...
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.