Search the web
Sign In
New User? Sign Up
VisualBasic_Official · Visual Basic . VB.net . VBS . ASP.net
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 8622 - 8651 of 9531   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8622
hi. try using double qoutes ("msg") in place of single qoutes('msg') hope it works.... tell me if m wrong regars, nishant krishnarani sahoo...
nishant kohli
aloving_guy4u
Offline Send Email
Oct 2, 2007
10:13 pm
8623
... some ... Any time you call a sub routine from any code compiler in VB you simply enter the name of the sub routine in the code where you want to sub ...
g2theh
Offline Send Email
Oct 2, 2007
10:13 pm
8624
Hi All, How do I dispose xmlDocument objects in asp.net? -Thanks ... Save all your chat conversations. Find them online. [Non-text portions of this message...
Mukund katpatal
vyahad
Offline Send Email
Oct 2, 2007
10:13 pm
8625
well i'm not an asp guy.. but if the msg is a variable... then you have to write it like this Response.write("<script>alert(" & msg & ";</script>"). if its not...
ohtechie
Offline Send Email
Oct 3, 2007
7:00 pm
8626
Hi Krishna, I have tested the code. Its working fine. Where did you write the code, i mean which event. Praveen Kumar. Ch Hi I am using ASP.NET 2.0. I am...
Praveen Kumar
hyderabadi.p...
Offline Send Email
Oct 3, 2007
7:00 pm
8627
Guys A buddy of mine is working with .Net (poor guy -- hehe, sorry, I'm a VB6 kinda guy). He has populated a datatable.. it was initialized with the...
spooboy54
Offline Send Email
Oct 3, 2007
7:00 pm
8628
DataTable has a propierty called Rows. Imagine you got this: oTable as your table already filled with the data. So you do this: oTable.Rows(0)(0) this will...
Andres Pineda
wicleft2000
Offline Send Email
Oct 3, 2007
10:51 pm
8629
Andres Sounds very promising.. will give my buddy the news and give you a report. Thanks muchly. Spoo ... and the 2nd...
spooboy54
Offline Send Email
Oct 5, 2007
3:58 pm
8630
Ensure that the table has rows: If MyDT.Rows.Count <> 0 Then 'To access the first row and first column item: YourVariable = MyDT.Rows(0).Item(0) 'To access the...
Eze stephen O.
stonypeterz
Offline Send Email
Oct 5, 2007
3:58 pm
8631
does anyone know how to implement structure with bit fields in VB? for example, how to implement this structure in VB: (in C) typdef union { unsigned long...
la_laich2
Offline Send Email
Oct 5, 2007
3:58 pm
8632
This has been driving me crazy for a long time, Can you please tell me what I could be doing wrong? I am trying to create a VB.net Class Lib that is being...
Bryan Garaventa
bgaraventa11@...
Send Email
Oct 5, 2007
4:00 pm
8633
Andres & Eze Andres: It worked.. he likes it. Eze: Thanks. I'll pass this along to him as well. Frankly, I was a little thrown by Andres' syntax (namely,...
spooboy54
Offline Send Email
Oct 9, 2007
4:43 pm
8634
Does anyone know of a way, using VB.net or C#, to capture the entire content of a web page in an image, then to save that image to the hard drive? I'm having a...
Bryan Garaventa
bgaraventa11@...
Send Email
Oct 9, 2007
4:43 pm
8635
Hi Wassup! I Guess this will help VB6: Private Type TPerson Name as String Age as Byte Job as String End Type Dim P1 as TPerson la_laich2 <laich2@...>...
Alaa Masalmah
aladdin86_3
Offline Send Email
Oct 9, 2007
4:43 pm
8636
SnagIt can capture all that and it can be used as a COM Server and referenced into your VB.NET or C# App. Then you can capture entire web pages on the fly...
Nick
nvagni
Offline Send Email
Oct 10, 2007
6:12 pm
8637
Hi Bryan I tried to do this before but I've totally failed I think you'll need to use HDC property of WebBrowser then use Paint DC API Function anyway if you...
Alaa Masalmah
aladdin86_3
Offline Send Email
Oct 10, 2007
6:14 pm
8638
Thanks, I've actually found a way of doing it by using MiniCap from http://www.donationcoder.com/Software/Mouser/MiniCap/index.html The nice thing with...
Bryan Garaventa
bgaraventa11@...
Send Email
Oct 10, 2007
11:07 pm
8639
If I were you, I'd cheat and print the page to PDF printer... I'm sure there's an openSource driver you can use. But that's cheating. Just an idea. ... the...
dizzycoder2000
Offline
Oct 10, 2007
11:07 pm
8640
Hi everyone. Need help in coding the following setup: Form1 as the main form and set to maximize. I need to add another form but it should be within Form1 only...
bikloy
Offline Send Email
Oct 15, 2007
5:55 pm
8641
I wrote a program in VB6 that requires a password and other data that the user can store to personalize the program. I wrote the progam to open files for input...
clutch
clutch776
Offline Send Email
Oct 15, 2007
5:55 pm
8642
If you're only trying to avoid the situation where a user would modify the files, then change the extension of the filename... instead of mydata.txt call the...
dizzycoder2000
Offline
Oct 15, 2007
9:22 pm
8643
what I have done is to have the data such as the password saved in a text file, when the program runs it inputs the data into a textbox that is not visible,...
clinton richardson
clutch776
Offline Send Email
Oct 16, 2007
4:08 pm
8644
I a Visual Basic class and i need to get rid of a comma out of the middle of a string. Does a trim function work for this?...
zbuster81
Offline Send Email
Oct 16, 2007
4:09 pm
8645
"If you MUST have the data untouched then you need to go a different direction. Records and binary files. " could you explain this please? Thanks :) ...
Omkarnath Phatak
intelomkar
Offline Send Email
Oct 16, 2007
4:09 pm
8646
No but Mid(mainstring,",") will give you a integer containing the position of the comma within the string. Try this: 'declare variables dim lcomma as long dim...
Nick
nvagni
Offline Send Email
Oct 17, 2007
11:01 pm
8647
Greetings, zbuster81 [zbuster81@...] wrote: I a Visual Basic class and i need to get rid of a comma out of the middle of a string. Does a trim function...
Tidrick, Thomas (CDC/...
thtidrick2001
Offline Send Email
Oct 17, 2007
11:01 pm
8648
Basically, you have a defined set of info (not unlike an XML schema) that you read/write using special functions. (ignore my nominclature, the syntax is all...
dizzycoder2000
Offline
Oct 17, 2007
11:01 pm
8649
Hi, this has got me totally stuck... I have the following function Private Stream As ComTypes.IPersistFile Public Function SaveSourceCode(ByVal Doc As...
Bryan Garaventa
bgaraventa11@...
Send Email
Oct 17, 2007
11:01 pm
8650
Nop, Trim function will not work for what you want.. but you can use the Replace Method of the String Object. Lets say you have this: Dim t as String = "We,...
Andres Pineda
wicleft2000
Offline Send Email
Oct 17, 2007
11:01 pm
8651
Try stringname=replace(stringname,",","") Amol Kulkarni ... From: zbuster81 <zbuster81@...> To: VisualBasic_Official@yahoogroups.com Sent: Tuesday, 16...
Amol Kulkarni
amolkulkarni...
Offline Send Email
Oct 17, 2007
11:02 pm
Messages 8622 - 8651 of 9531   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help